diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index 659ce8e8b..d66a6dc43 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -9,16 +9,16 @@ #include "lv_app.h" #if LV_APP_ENABLE != 0 -#include "lv_app_util/lv_app_kb.h" -#include "lv_app_util/lv_app_notice.h" -#include "lv_app_util/lv_app_fsel.h" - -#include "lvgl/lv_misc/anim.h" +#include +#include "misc/gfx/anim.h" +#include "lvgl/lv_obj/lv_refr.h" #include "../lv_appx/lv_app_example.h" +#include "../lv_appx/lv_app_phantom.h" #include "../lv_appx/lv_app_sysmon.h" #include "../lv_appx/lv_app_terminal.h" #include "../lv_appx/lv_app_files.h" +#include "../lv_appx/lv_app_visual.h" /********************* * DEFINES @@ -36,25 +36,30 @@ typedef struct { * STATIC PROTOTYPES **********************/ +#if LV_APP_DESKTOP != 0 static void lv_app_init_desktop(void); +#endif /*Actions*/ +#if LV_APP_DESKTOP != 0 static lv_action_res_t lv_app_menu_rel_action(lv_obj_t * app_btn, lv_dispi_t * dispi); static lv_action_res_t lv_app_menu_elem_rel_action(lv_obj_t * app_elem_btn, lv_dispi_t * dispi); static lv_action_res_t lv_app_sc_page_rel_action(lv_obj_t * sc, lv_dispi_t * dispi); +#endif static lv_action_res_t lv_app_sc_rel_action(lv_obj_t * sc, lv_dispi_t * dispi); static lv_action_res_t lv_app_sc_lpr_action(lv_obj_t * sc, lv_dispi_t * dispi); static lv_action_res_t lv_app_win_close_action(lv_obj_t * close_btn, lv_dispi_t * dispi); -static lv_action_res_t lv_app_win_minim_action(lv_obj_t * close_minim, lv_dispi_t * dispi); +static lv_action_res_t lv_app_win_minim_action(lv_obj_t * minim_btn, lv_dispi_t * dispi); +static lv_action_res_t lv_app_win_conf_action(lv_obj_t * set_btn, lv_dispi_t * dispi); static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app); static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app); -#if LV_APP_EFFECT_ANIM != 0 && LV_APP_ANIM_WIN != 0 +#if LV_APP_ANIM_WIN != 0 +static void lv_app_win_open_anim_cb(lv_obj_t * app_win); static void lv_app_win_close_anim_cb(lv_obj_t * app_win); static void lv_app_win_minim_anim_cb(lv_obj_t * app_win); #endif -static void lv_app_init_icons(void); static void lv_app_init_style(void); /********************** @@ -64,52 +69,17 @@ static ll_dsc_t app_dsc_ll; /*Store a pointer to the app. descriptors*/ static ll_dsc_t app_inst_ll; /*Store the running apps*/ static ll_dsc_t app_con_ll; /*Store the communication connection between the apps*/ static lv_obj_t * app_scr; /*Screen of the applications*/ -static lv_obj_t * menuh; /*Holder of timg_bubbleshe menu on the top*/ + +#if LV_APP_DESKTOP != 0 +static lv_obj_t * menuh; /*Holder of timg_bubbleshe menu on the top*/ static lv_obj_t * app_btn; /*The "Apps" button on the menu*/ -static lv_obj_t * sys_apph; /*Holder of the system app. buttons*/ -static lv_obj_t * app_list; /*A list which is opened on 'app_btn' release*/ static lv_obj_t * sc_page; /*A page for the shortcuts */ +#endif + +static lv_obj_t * app_list; /*A list which is opened on 'app_btn' release*/ static lv_app_inst_t * con_send; /*The sender application in connection mode. Not NLL means connection mode is active*/ static lv_app_style_t app_style; /*Styles for application related things*/ -/*Declare icons*/ -#if USE_IMG_CLOSE != 0 -LV_IMG_DECLARE(img_close); -#endif - -#if USE_IMG_DOWN != 0 -LV_IMG_DECLARE(img_down); -#endif - -#if USE_IMG_DRIVER != 0 -LV_IMG_DECLARE(img_driver); -#endif - -#if USE_IMG_FILE != 0 -LV_IMG_DECLARE(img_file); -#endif - -#if USE_IMG_FOLDER != 0 -LV_IMG_DECLARE(img_folder); -#endif - -#if USE_IMG_LEFT != 0 -LV_IMG_DECLARE(img_left); -#endif - -#if USE_IMG_OK != 0 -LV_IMG_DECLARE(img_ok); -#endif - -#if USE_IMG_RIGHT != 0 -LV_IMG_DECLARE(img_right); -#endif - -#if USE_IMG_UP != 0 -LV_IMG_DECLARE(img_up); -#endif - - /********************** * MACROS **********************/ @@ -129,11 +99,12 @@ void lv_app_init(void) ll_init(&app_con_ll, sizeof(lv_app_con_t)); app_scr = lv_scr_act(); - lv_app_init_icons(); lv_app_init_style(); +#if LV_APP_DESKTOP != 0 /*Create the desktop elements*/ lv_app_init_desktop(); +#endif /*Init. the utilities*/ lv_app_kb_init(); @@ -148,6 +119,12 @@ void lv_app_init(void) *dsc = lv_app_example_init(); #endif +#if USE_LV_APP_PHANTOM != 0 + dsc = ll_ins_head(&app_dsc_ll); + *dsc = lv_app_phantom_init(); +#endif + + #if USE_LV_APP_SYSMON != 0 dsc = ll_ins_head(&app_dsc_ll); *dsc = lv_app_sysmon_init(); @@ -162,6 +139,11 @@ void lv_app_init(void) dsc = ll_ins_head(&app_dsc_ll); *dsc = lv_app_files_init(); #endif + +#if USE_LV_APP_VISUAL != 0 + dsc = ll_ins_head(&app_dsc_ll); + *dsc = lv_app_visual_init(); +#endif } /** @@ -204,7 +186,7 @@ void lv_app_close(lv_app_inst_t * app) lv_app_con_del(app, NULL); lv_app_con_del(NULL, app); - app->dsc->app_close(app); + if(app->dsc->app_close != NULL) app->dsc->app_close(app); memset(app->app_data, 0, app->dsc->app_data_size); dm_free(app->app_data); @@ -221,31 +203,31 @@ void lv_app_close(lv_app_inst_t * app) */ lv_obj_t * lv_app_sc_open(lv_app_inst_t * app) { - /*Save the current position of the scrollable part of the page*/ - cord_t scrl_y = lv_obj_get_y(lv_page_get_scrl(sc_page)); + + if(app->dsc->sc_open == NULL) return NULL; /*Create a basic shortcut*/ +#if LV_APP_DESKTOP != 0 app->sc = lv_btn_create(sc_page, NULL); + lv_page_glue_obj(app->sc, true); +#else + app->sc = lv_btn_create(app_scr, NULL); +#endif lv_obj_set_free_p(app->sc, app); - lv_obj_set_style(app->sc, &app_style.sc_style); - lv_obj_set_opa(app->sc, app_style.sc_opa); + lv_btn_set_styles(app->sc, &app_style.sc_rel, &app_style.sc_pr, NULL, NULL, NULL); lv_obj_set_size(app->sc, LV_APP_SC_WIDTH, LV_APP_SC_HEIGHT); - lv_rect_set_layout(app->sc, LV_RECT_LAYOUT_OFF); + lv_cont_set_layout(app->sc, LV_CONT_LAYOUT_OFF); lv_btn_set_rel_action(app->sc, lv_app_sc_rel_action); lv_btn_set_lpr_action(app->sc, lv_app_sc_lpr_action); - lv_page_glue_obj(app->sc, true); + if((app->dsc->mode & LV_APP_MODE_NO_SC_TITLE) == 0) { /*Create a title on top of the shortcut*/ app->sc_title = lv_label_create(app->sc, NULL); - lv_obj_set_style(app->sc_title, &app_style.sc_title_style); - #if LV_APP_EFFECT_ANIM != 0 - lv_label_set_long_mode(app->sc_title, LV_LABEL_LONG_SCROLL); - #else - lv_obj_set_size(app->sc_title, LV_APP_SC_WIDTH, font_get_height(font_get(app_style.sc_title_style.font))); + lv_obj_set_style(app->sc_title, &app_style.sc_title); + lv_obj_set_size(app->sc_title, LV_APP_SC_WIDTH, font_get_height(app_style.sc_title.font) >> FONT_ANTIALIAS); lv_label_set_long_mode(app->sc_title, LV_LABEL_LONG_DOTS); - #endif lv_label_set_text(app->sc_title, app->name); - lv_obj_align_us(app->sc_title, NULL, LV_ALIGN_IN_TOP_MID, 0, app_style.sc_title_margin); + lv_obj_align_us(app->sc_title, NULL, LV_ALIGN_IN_TOP_MID, 0, LV_DPI / 20); } else { app->sc_title = NULL; } @@ -253,13 +235,8 @@ lv_obj_t * lv_app_sc_open(lv_app_inst_t * app) app->sc_data = dm_alloc(app->dsc->sc_data_size); app->dsc->sc_open(app, app->sc); - /* Restore position of the scrollable part of the page because - * it moved when the shortcut is created*/ - lv_obj_set_y(lv_page_get_scrl(sc_page), scrl_y); -#if LV_APP_EFFECT_ANIM == 0 - lv_page_focus(sc_page, app->sc, false); -#else - lv_page_focus(sc_page, app->sc, true); +#if LV_APP_DESKTOP != 0 + lv_page_focus(sc_page, app->sc, LV_APP_ANIM_DESKTOP); #endif return app->sc; @@ -272,6 +249,7 @@ lv_obj_t * lv_app_sc_open(lv_app_inst_t * app) void lv_app_sc_close(lv_app_inst_t * app) { if(app->sc == NULL) return; + if(app->dsc->sc_close != NULL) app->dsc->sc_close(app); lv_obj_del(app->sc); app->sc = NULL; app->sc_title = NULL; @@ -293,19 +271,24 @@ lv_obj_t * lv_app_win_open(lv_app_inst_t * app) app_list = NULL; } + if(app->dsc->win_open == NULL) return NULL; + app->win = lv_win_create(lv_scr_act(), NULL); lv_obj_set_free_p(app->win, app); - lv_obj_set_style(app->win, &app_style.win_style); + lv_obj_set_style(lv_win_get_header(app->win), &app_style.win_header); lv_win_set_title(app->win, app->dsc->name); - lv_obj_t * win_content = lv_page_get_scrl(app->win); - lv_rect_set_fit(win_content, false, true); - lv_obj_set_width(win_content, LV_HOR_RES - 2 * app_style.win_style.pages.bg_rects.hpad); + lv_page_set_sb_mode(lv_win_get_page(app->win), LV_PAGE_SB_MODE_AUTO); + lv_win_set_styles_cbtn(app->win, &app_style.win_cbtn_rel, &app_style.win_cbtn_pr); - lv_win_add_ctrl_btn(app->win, "U:/icon_down" ,lv_app_win_minim_action); - lv_win_add_ctrl_btn(app->win, "U:/icon_close" ,lv_app_win_close_action); + if(app->dsc->conf_open != NULL) { + lv_win_add_cbtn(app->win, SYMBOL_SETUP, lv_app_win_conf_action); + } + lv_win_add_cbtn(app->win, SYMBOL_DOWN, lv_app_win_minim_action); + lv_win_add_cbtn(app->win, SYMBOL_CLOSE,lv_app_win_close_action); app->win_data = dm_alloc(app->dsc->win_data_size); - app->dsc->win_open(app, app->win); + + app->dsc->win_open(app, app->win); return app->win; } @@ -318,7 +301,9 @@ void lv_app_win_close(lv_app_inst_t * app) { if(app->win == NULL) return; - lv_app_kb_close(false); + lv_app_kb_close(false); + + if(app->dsc->win_close != NULL) app->dsc->win_close(app); lv_obj_del(app->win); app->win = NULL; @@ -327,6 +312,7 @@ void lv_app_win_close(lv_app_inst_t * app) dm_free(app->win_data); app->win_data = NULL; } + /** * Send data to other applications * @param app_send pointer to the application which is sending the message @@ -475,8 +461,7 @@ lv_app_inst_t * lv_app_get_next(lv_app_inst_t * prev, lv_app_dsc_t * dsc) if(next->dsc == dsc || dsc == NULL) return next; prev = next; - - }; + } return NULL; } @@ -497,26 +482,6 @@ lv_app_dsc_t ** lv_app_dsc_get_next(lv_app_dsc_t ** prev) return next; } -/** - * Refresh the style of the applications - * */ -void lv_app_style_refr(void) -{ - lv_style_refr_all(NULL); - - lv_obj_set_opa(menuh, app_style.menu_opa); - lv_obj_set_opa(app_btn, app_style.menu_btn_opa); - - lv_obj_set_width(lv_page_get_scrl(sc_page), - LV_HOR_RES - 2 * (app_style.sc_page_style.bg_rects.hpad)); - - app_style.win_useful_w = LV_HOR_RES - 2 * (app_style.win_style.pages.bg_rects.hpad + - app_style.win_style.pages.scrl_rects.hpad); - - app_style.win_useful_h = LV_VER_RES - 2 * (app_style.win_style.pages.bg_rects.vpad + - app_style.win_style.pages.scrl_rects.vpad); -} - /** * Get a pointer to the application style structure. If modified then 'lv_app_refr_style' should be called @@ -531,56 +496,49 @@ lv_app_style_t * lv_app_style_get(void) * STATIC FUNCTIONS **********************/ +#if LV_APP_DESKTOP != 0 /** - * Create the object on the desktop + * Create a desktop-like environment */ static void lv_app_init_desktop(void) { - /*Shortcut area*/ - sc_page = lv_page_create(lv_scr_act(), NULL); - lv_obj_set_style(sc_page, &app_style.sc_page_style); - lv_obj_set_size(sc_page, LV_HOR_RES, LV_VER_RES); - lv_obj_set_pos(sc_page, 0, 0); - lv_rect_set_fit(lv_page_get_scrl(sc_page), false, true); - lv_rect_set_layout(lv_page_get_scrl(sc_page), LV_RECT_LAYOUT_GRID); - lv_page_set_rel_action(sc_page, lv_app_sc_page_rel_action); - /*Menu on the top*/ - menuh = lv_rect_create(lv_scr_act(), NULL); - lv_obj_set_size(menuh, LV_HOR_RES, app_style.menu_h); - lv_obj_set_pos(menuh, 0, 0); - lv_obj_set_style(menuh, &app_style.menu_style); + menuh = lv_cont_create(lv_scr_act(), NULL); + lv_obj_set_width(menuh, LV_HOR_RES); + lv_cont_set_fit(menuh, false, true); + lv_obj_set_style(menuh, &app_style.menu); app_btn = lv_btn_create(menuh, NULL); - lv_obj_set_style(app_btn, &app_style.menu_btn_style); - lv_obj_set_height(app_btn, app_style.menu_h); - lv_rect_set_fit(app_btn, true, false); + lv_btn_set_styles(app_btn, &app_style.menu_btn_rel, &app_style.menu_btn_pr, NULL, NULL, NULL); + lv_cont_set_fit(app_btn, true, true); lv_btn_set_rel_action(app_btn, lv_app_menu_rel_action); lv_obj_t * app_label = lv_label_create(app_btn, NULL); - lv_obj_set_style(app_label, &app_style.menu_btn_label_style); lv_label_set_text(app_label, "Apps"); lv_obj_set_pos(app_btn, 0, 0); + lv_obj_set_pos(menuh, 0, 0); - sys_apph = lv_rect_create(menuh, NULL); - lv_rect_set_layout(sys_apph, LV_RECT_LAYOUT_ROW_M); - lv_rect_set_fit(sys_apph, true, false); - lv_obj_set_height(sys_apph, app_style.menu_h); - lv_obj_set_style(sys_apph, lv_rects_get(LV_RECTS_TRANSP, NULL)); - /* clock = lv_label_create(sys_apph, NULL); - lv_obj_set_style(clock, &app_style.menu_btn_label_style); - lv_label_set_text(clock, "20:17"); -*/ - lv_obj_align(sys_apph, NULL, LV_ALIGN_IN_RIGHT_MID, 0, 0); - - lv_app_style_refr(); + /*Shortcut area*/ + sc_page = lv_page_create(lv_scr_act(), NULL); + lv_obj_set_style(sc_page, lv_style_get(LV_STYLE_TRANSP_TIGHT, NULL)); + lv_obj_set_style(lv_page_get_scrl(sc_page), lv_style_get(LV_STYLE_TRANSP, NULL)); + lv_obj_set_size(sc_page, LV_HOR_RES, LV_VER_RES - lv_obj_get_height(menuh)); + lv_obj_set_pos(sc_page, 0, lv_obj_get_height(menuh)); + lv_obj_set_width(lv_page_get_scrl(sc_page), LV_HOR_RES - 20); + lv_cont_set_fit(lv_page_get_scrl(sc_page), false, true); + lv_cont_set_layout(lv_page_get_scrl(sc_page), LV_CONT_LAYOUT_GRID); + lv_page_set_rel_action(sc_page, lv_app_sc_page_rel_action); + lv_page_set_sb_mode(sc_page, LV_PAGE_SB_MODE_AUTO); } +#endif + /*----------------------- APP. MENU ACTIONS ------------------------*/ +#if LV_APP_DESKTOP != 0 /** - * CAlled when the "Apps" button is released to open or close the app. list + * Called when the "Apps" button is released to open or close the app. list * @param app_btn pointer to the "Apps" button * @param dispi pointer to the caller display input * @return LV_ACTION_RES_OK because the "Apps" button is never deleted @@ -595,10 +553,11 @@ static lv_action_res_t lv_app_menu_rel_action(lv_obj_t * app_btn, lv_dispi_t * d /*Create the app. list*/ else { app_list = lv_list_create(lv_scr_act(), NULL); - lv_obj_set_style(app_list, &app_style.app_list_style); - lv_obj_set_opar(app_list, app_style.menu_opa); - lv_obj_set_size(app_list, app_style.app_list_w, app_style.app_list_h); - lv_obj_set_y(app_list, app_style.menu_h); + lv_obj_t * scrl = lv_page_get_scrl(app_list); + lv_obj_set_style(scrl, &app_style.menu); + lv_obj_set_size(app_list, LV_HOR_RES / 2, (LV_VER_RES * 3) / 4); + lv_obj_align(app_list, menuh, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 0); + lv_list_set_styles_btn(app_list, &app_style.menu_btn_rel, &app_style.menu_btn_pr, NULL, NULL, NULL); lv_app_dsc_t ** dsc; lv_obj_t * elem; @@ -606,7 +565,6 @@ static lv_action_res_t lv_app_menu_rel_action(lv_obj_t * app_btn, lv_dispi_t * d if(((*dsc)->mode & LV_APP_MODE_NOT_LIST) == 0) { elem = lv_list_add(app_list, NULL, (*dsc)->name, lv_app_menu_elem_rel_action); lv_obj_set_free_p(elem, *dsc); - lv_obj_set_opa(elem, app_style.menu_btn_opa); } } } @@ -630,28 +588,15 @@ static lv_action_res_t lv_app_menu_elem_rel_action(lv_obj_t * app_elem_btn, lv_d lv_app_inst_t * app = lv_app_run(dsc, NULL); lv_app_sc_open(app); -#if LV_APP_EFFECT_ANIM != 0 && LV_APP_EFFECT_OPA_ANIM != 0 && LV_APP_ANIM_SC != 0 - anim_t a; - a.act_time = 0; - a.time = LV_APP_ANIM_SC; - a.end_cb = NULL; - a.playback = 0; - a.repeat = 0; - a.var = app->sc; - a.path = anim_get_path(ANIM_PATH_LIN); - a.end = app_style.sc_opa; - a.start = OPA_TRANSP; - a.fp = (anim_fp_t) lv_obj_set_opa; - anim_create(&a); -#endif - return LV_ACTION_RES_INV; } +#endif /*----------------------- SHORTCUT ACTIONS ------------------------*/ +#if LV_APP_DESKTOP != 0 /** * Called when the shortcut page is released to hide the app list and/or * go back from connection mode @@ -670,13 +615,14 @@ static lv_action_res_t lv_app_sc_page_rel_action(lv_obj_t * page, lv_dispi_t * d if(con_send != NULL) { lv_app_inst_t * i; LL_READ(app_inst_ll, i) { - if(i->sc != NULL) lv_obj_set_style(i->sc, &app_style.sc_style); + if(i->sc != NULL) lv_btn_set_styles(i->sc, &app_style.sc_rel, &app_style.sc_pr, NULL, NULL, NULL); } con_send = NULL; } return LV_ACTION_RES_OK; } +#endif /** * Called when a shortcut is released to open its window (or close app list if opened) (in normal mode) or @@ -690,10 +636,12 @@ static lv_action_res_t lv_app_sc_rel_action(lv_obj_t * sc, lv_dispi_t * dispi) /*Normal mode*/ if(con_send == NULL) { -#if LV_APP_EFFECT_ANIM == 0 +#if LV_APP_DESKTOP != 0 +#if LV_APP_ANIM_DESKTOP == 0 lv_page_focus(sc_page, sc, false); #else lv_page_focus(sc_page, sc, true); +#endif #endif /*Close the list if opened*/ if(app_list != NULL) { @@ -712,13 +660,13 @@ static lv_action_res_t lv_app_sc_rel_action(lv_obj_t * sc, lv_dispi_t * dispi) else { lv_app_inst_t * app = lv_obj_get_free_p(sc); if(app != con_send) { /*Do nothing with the sender*/ - lv_btns_t * style = lv_obj_get_style(sc); + lv_style_t * style = lv_obj_get_style(sc); /*Add connection to this application*/ - if(style == &app_style.sc_style) { - lv_obj_set_style(sc, &app_style.sc_rec_style); + if(style == &app_style.sc_rel) { + lv_btn_set_styles(sc, &app_style.sc_rec_rel, &app_style.sc_rec_pr, NULL, NULL, NULL); lv_app_con_set(con_send, app); } else { /*Remove the applications connection*/ - lv_obj_set_style(sc, &app_style.sc_style); + lv_btn_set_styles(sc, &app_style.sc_rel, &app_style.sc_pr, NULL, NULL, NULL); lv_app_con_del(con_send, app); } } @@ -740,23 +688,23 @@ static lv_action_res_t lv_app_sc_lpr_action(lv_obj_t * sc, lv_dispi_t * dispi) if(con_send == app_send) { lv_app_inst_t * i; LL_READ(app_inst_ll, i) { - if(i->sc != NULL) lv_obj_set_style(i->sc, &app_style.sc_style); + if(i->sc != NULL) lv_btn_set_styles(i->sc, &app_style.sc_rel, &app_style.sc_pr, NULL, NULL, NULL); } con_send = NULL; } else { if(con_send != NULL) { lv_app_inst_t * i; LL_READ(app_inst_ll, i) { - if(i->sc != NULL) lv_obj_set_style(i->sc, &app_style.sc_style); + if(i->sc != NULL) lv_btn_set_styles(i->sc, &app_style.sc_rel, &app_style.sc_pr, NULL, NULL, NULL); } } con_send = app_send; - lv_obj_set_style(sc, &app_style.sc_send_style); + lv_btn_set_styles(sc, &app_style.sc_send_rel, &app_style.sc_send_pr, NULL, NULL, NULL); lv_app_inst_t * i; LL_READ(app_inst_ll, i) { if(i->sc != NULL && lv_app_con_check(con_send, i) != false) { - lv_obj_set_style(i->sc, &app_style.sc_rec_style); + lv_btn_set_styles(i->sc, &app_style.sc_rec_rel, &app_style.sc_rec_pr, NULL, NULL, NULL); } } } @@ -776,14 +724,24 @@ static lv_action_res_t lv_app_sc_lpr_action(lv_obj_t * sc, lv_dispi_t * dispi) */ static lv_action_res_t lv_app_win_close_action(lv_obj_t * close_btn, lv_dispi_t * dispi) { - lv_obj_t * win = lv_win_get_from_ctrl_btn(close_btn); + lv_obj_t * win = lv_win_get_from_cbtn(close_btn); lv_app_inst_t * app = lv_obj_get_free_p(win); lv_app_kb_close(false); -#if LV_APP_EFFECT_ANIM != 0 && LV_APP_EFFECT_OPA != 0 && LV_APP_ANIM_WIN != 0 +#if LV_APP_ANIM_WIN != 0 + /*Temporally set a simpler style for the window during the animation*/ + lv_obj_t * win_page = lv_win_get_page(win); + lv_page_set_sb_mode(win_page, LV_PAGE_SB_MODE_OFF); + + /*Hide some elements to speed up the animation*/ + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->btnh, true); + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); + lv_obj_set_hidden(lv_page_get_scrl(win_page), true); + lv_obj_anim(app->win, LV_ANIM_FLOAT_BOTTOM | ANIM_OUT, LV_APP_ANIM_WIN, 0, NULL); lv_obj_anim(app->win, LV_ANIM_FLOAT_LEFT | ANIM_OUT, LV_APP_ANIM_WIN, 0, lv_app_win_close_anim_cb); + lv_app_sc_close(app); /*The animation will close the window*/ return LV_ACTION_RES_OK; @@ -795,13 +753,13 @@ static lv_action_res_t lv_app_win_close_action(lv_obj_t * close_btn, lv_dispi_t /** * Called when the minimization button of window is released - * @param close_minimointer to the minim. button + * @param minim_btn pointer to the minim. button * @param dispi pointer to the caller display input * @return LV_ACTION_RES_OK or LV_ACTION_RES_INC depending on LV_APP_EFFECT_... settings type */ -static lv_action_res_t lv_app_win_minim_action(lv_obj_t * close_minim, lv_dispi_t * dispi) +static lv_action_res_t lv_app_win_minim_action(lv_obj_t * minim_btn, lv_dispi_t * dispi) { - lv_obj_t * win = lv_win_get_from_ctrl_btn(close_minim); + lv_obj_t * win = lv_win_get_from_cbtn(minim_btn); lv_app_inst_t * app = lv_obj_get_free_p(win); lv_app_kb_close(false); @@ -813,6 +771,40 @@ static lv_action_res_t lv_app_win_minim_action(lv_obj_t * close_minim, lv_dispi_ return res; } +/** + * Open the settings of an application in a window (use the set_open function of the application) + * @param set_btn pointer to the settings button + * @param dispi pointer to the caller display input + * @return always LV_ACTION_RES_OK because the button is not deleted here + */ +static lv_action_res_t lv_app_win_conf_action(lv_obj_t * set_btn, lv_dispi_t * dispi) +{ + /*Close the app list if opened*/ + if(app_list != NULL) { + lv_obj_del(app_list); + app_list = NULL; + } + + lv_obj_t * win = lv_win_get_from_cbtn(set_btn); + lv_app_inst_t * app = lv_obj_get_free_p(win); + + app->conf_win = lv_win_create(lv_scr_act(), NULL); + lv_obj_set_free_p(app->conf_win, app); + + char buf[256]; + sprintf(buf, "%s settings", app->dsc->name); + lv_win_add_cbtn(app->conf_win, SYMBOL_CLOSE ,lv_win_close_action); + lv_obj_set_style(lv_win_get_header(app->conf_win), &app_style.win_header); + lv_win_set_title(app->conf_win, buf); + lv_win_set_styles_cbtn(app->conf_win, &app_style.win_cbtn_rel, &app_style.win_cbtn_pr); + lv_obj_t * scrl = lv_page_get_scrl(lv_win_get_page(app->conf_win)); + lv_cont_set_layout(scrl, LV_CONT_LAYOUT_COL_L); + + + app->dsc->conf_open(app, app->conf_win); + + return LV_ACTION_RES_OK; +} /*----------------------- ANIMATIONS ------------------------*/ @@ -825,9 +817,9 @@ static lv_action_res_t lv_app_win_minim_action(lv_obj_t * close_minim, lv_dispi_ static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) { /*Make an animation on window open*/ -#if LV_APP_EFFECT_ANIM != 0 && LV_APP_ANIM_WIN != 0 +#if USE_ANIM != 0 && LV_APP_ANIM_WIN != 0 - area_t cords; /*If no shortcut simulate one or load the its coordinates*/ + area_t cords; /*If no shortcut simulate one and load the its coordinates*/ if(app->sc == NULL) { cords.x1 = LV_HOR_RES / 2 - LV_APP_SC_WIDTH / 2; cords.y1 = LV_VER_RES / 2 - LV_APP_SC_HEIGHT / 2; @@ -837,6 +829,16 @@ static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) lv_obj_get_cords(app->sc, &cords); } + /*Temporally set a simpler style for the window during the animation*/ + lv_obj_t * win_page = lv_win_get_page(app->win); + lv_page_set_sb_mode(win_page, LV_PAGE_SB_MODE_OFF); + + /*Hide some elements to speed up the animation*/ + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->btnh, true); + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); + lv_obj_set_hidden(lv_page_get_scrl(win_page), true); + + anim_t a; a.act_time = 0; a.time = LV_APP_ANIM_WIN; @@ -846,12 +848,12 @@ static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) a.var = app->win; a.path = anim_get_path(ANIM_PATH_LIN); - a.start = lv_obj_get_width(app->sc); + a.start = area_get_width(&cords); a.end = LV_HOR_RES; a.fp = (anim_fp_t) lv_obj_set_width; anim_create(&a); - a.start = lv_obj_get_height(app->sc); + a.start = area_get_height(&cords); a.end = LV_VER_RES; a.fp = (anim_fp_t) lv_obj_set_height; anim_create(&a); @@ -864,9 +866,19 @@ static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) a.start = cords.y1; a.end = 0; a.fp = (anim_fp_t) lv_obj_set_y; + a.end_cb = (anim_cb_t)lv_app_win_open_anim_cb; anim_create(&a); -#endif /*LV_APP_EFFECT_ANIM != 0 && LV_APP_ANIM_WIN != 0*/ + /* Now a screen sized window is created but is is resized by the animations. + * Therefore the whole screen invalidated but only a small part is changed. + * So clear the invalidate buffer an refresh only the real area. + * Independently other parts on the screen might be changed + * but they will be soon covered by the window after the animations*/ + lv_inv_area(NULL); + lv_inv_area(&cords); + +#endif /* LV_APP_ANIM_WIN != 0*/ + return LV_ACTION_RES_OK; } @@ -878,7 +890,7 @@ static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) */ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) { -#if LV_APP_EFFECT_ANIM != 0 && LV_APP_ANIM_WIN != 0 +#if LV_APP_ANIM_WIN != 0 area_t cords; if(app->sc == NULL) { cords.x1 = LV_HOR_RES / 2 - LV_APP_SC_WIDTH / 2; @@ -889,6 +901,15 @@ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) lv_obj_get_cords(app->sc, &cords); } + /*Temporally set a simpler style for the window during the animation*/ + lv_obj_t * win_page = lv_win_get_page(app->win); + lv_page_set_sb_mode(win_page, LV_PAGE_SB_MODE_OFF); + + /*Hide some elements to speed up the animation*/ + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->btnh, true); + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); + lv_obj_set_hidden(lv_page_get_scrl(win_page), true); + anim_t a; a.act_time = 0; a.time = LV_APP_ANIM_WIN; @@ -900,12 +921,12 @@ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) a.start = LV_HOR_RES; - a.end = lv_obj_get_width(app->sc); + a.end = area_get_width(&cords); a.fp = (anim_fp_t) lv_obj_set_width; anim_create(&a); a.start = LV_VER_RES; - a.end = lv_obj_get_height(app->sc); + a.end = area_get_height(&cords); a.fp = (anim_fp_t) lv_obj_set_height; anim_create(&a); @@ -927,7 +948,24 @@ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) #endif } -#if LV_APP_EFFECT_ANIM != 0 +#if LV_APP_ANIM_WIN != 0 + +/** + * Called when the window open animation is ready to close the application + * @param app_win pointer to a window + */ +static void lv_app_win_open_anim_cb(lv_obj_t * app_win) +{ + lv_obj_t * win_page = lv_win_get_page(app_win); + + /*Unhide the the elements*/ + lv_obj_set_hidden(((lv_win_ext_t *)app_win->ext)->btnh, false); + lv_obj_set_hidden(((lv_win_ext_t *)app_win->ext)->title, false); + lv_obj_set_hidden(lv_page_get_scrl(win_page), false); + + lv_page_set_sb_mode(win_page, LV_PAGE_SB_MODE_AUTO); +} + /** * Called when the window close animation is ready to close the application * @param app_win pointer to a window @@ -937,6 +975,8 @@ static void lv_app_win_close_anim_cb(lv_obj_t * app_win) lv_app_inst_t * app = lv_obj_get_free_p(app_win); lv_app_close(app); } + + /** * Called when the window minimization animation is ready to close the window * @param app_win pointer to a window @@ -953,190 +993,115 @@ static void lv_app_win_minim_anim_cb(lv_obj_t * app_win) */ static void lv_app_init_style(void) { - /*Coordinates*/ - app_style.menu_h = 40 * LV_DOWNSCALE; - app_style.app_list_w = LV_HOR_RES / 3; - app_style.app_list_h = (3 * LV_VER_RES) / 4; - app_style.sc_title_margin = 2 * LV_DOWNSCALE; - - /*Opacity*/ -#if LV_APP_EFFECT_OPA == 0 - app_style.menu_opa = OPA_COVER; - app_style.menu_btn_opa = OPA_COVER; - app_style.sc_opa = OPA_COVER; -#else - app_style.menu_opa = OPA_80; - app_style.menu_btn_opa = OPA_50; - app_style.sc_opa = OPA_80; -#endif - /*Menu style*/ - lv_rects_get(LV_RECTS_DEF,&app_style.menu_style); - app_style.menu_style.objs.color = COLOR_BLACK; - app_style.menu_style.gcolor = COLOR_BLACK; - app_style.menu_style.round = 0; - app_style.menu_style.bwidth = 0; - app_style.menu_style.light = 0; + lv_style_get(LV_STYLE_PLAIN,&app_style.menu); + app_style.menu.ccolor = COLOR_WHITE; + app_style.menu.mcolor = COLOR_MAKE(0x30, 0x30, 0x30); + app_style.menu.gcolor = COLOR_MAKE(0x30, 0x30, 0x30); + app_style.menu.bcolor = COLOR_MAKE(0x80, 0x80, 0x80); + app_style.menu.opa = OPA_COVER; + app_style.menu.radius = 0; + app_style.menu.bwidth = 0; + app_style.menu.swidth = 0; + app_style.menu.vpad = LV_DPI / 12; + app_style.menu.hpad = LV_DPI / 12; + app_style.menu.opad = LV_DPI / 12; - lv_btns_get(LV_BTNS_DEF,&app_style.menu_btn_style); - memcpy(&app_style.menu_btn_style.rects, &app_style.menu_style, sizeof(lv_rects_t)); - app_style.menu_btn_style.flags[LV_BTN_STATE_REL].light_en = 0; - app_style.menu_btn_style.flags[LV_BTN_STATE_PR].light_en = 0; + lv_style_get(LV_STYLE_BTN_REL,&app_style.menu_btn_rel); + app_style.menu_btn_rel.ccolor = COLOR_WHITE; + app_style.menu_btn_rel.mcolor = COLOR_MAKE(0x30, 0x30, 0x30); + app_style.menu_btn_rel.gcolor = COLOR_MAKE(0x30, 0x30, 0x30); + app_style.menu_btn_rel.bcolor = COLOR_MAKE(0xa0, 0xa0, 0xa0); + app_style.menu_btn_rel.bopa = OPA_20; + app_style.menu_btn_rel.bwidth = 0; - app_style.menu_btn_style.flags[LV_BTN_STATE_REL].empty = 1; - app_style.menu_btn_style.flags[LV_BTN_STATE_PR].empty = 0; + app_style.menu_btn_rel.radius = 0; + app_style.menu_btn_rel.swidth = 0; + app_style.menu_btn_rel.empty = 1; + app_style.menu_btn_rel.font = font_get(LV_APP_FONT_LARGE); + app_style.menu_btn_rel.img_recolor = OPA_90; + app_style.menu_btn_rel.vpad = LV_DPI / 10; + app_style.menu_btn_rel.hpad = LV_DPI / 10; + app_style.menu_btn_rel.opad = LV_DPI / 10; - app_style.menu_btn_style.mcolor[LV_BTN_STATE_REL] = COLOR_BLACK; - app_style.menu_btn_style.gcolor[LV_BTN_STATE_REL] = COLOR_BLACK; - app_style.menu_btn_style.mcolor[LV_BTN_STATE_PR] = COLOR_GRAY; - app_style.menu_btn_style.gcolor[LV_BTN_STATE_PR] = COLOR_GRAY; - - lv_labels_get(LV_LABELS_BTN,&app_style.menu_btn_label_style); - app_style.menu_btn_label_style.font = LV_APP_FONT_LARGE; - app_style.menu_btn_label_style.objs.color = COLOR_MAKE(0xd0, 0xe0, 0xf0); - - lv_imgs_get(LV_IMGS_DEF,&app_style.menu_btn_img_style); - app_style.menu_btn_img_style.objs.color = COLOR_WHITE; - app_style.menu_btn_img_style.recolor_opa = OPA_90; - - /*App list styles*/ - lv_lists_get(LV_LISTS_SCRL,&app_style.app_list_style); - app_style.app_list_style.widthe_sb = 0; - memcpy(&app_style.app_list_style.bg_pages.scrl_rects, &app_style.menu_style, sizeof(lv_rects_t)); - app_style.app_list_style.bg_pages.scrl_rects.hpad = 0 * LV_DOWNSCALE; - app_style.app_list_style.bg_pages.scrl_rects.vpad = 0 * LV_DOWNSCALE; - app_style.app_list_style.bg_pages.scrl_rects.opad = 0 * LV_DOWNSCALE; - memcpy(&app_style.app_list_style.liste_labels, &app_style.menu_btn_label_style, sizeof(lv_labels_t)); - memcpy(&app_style.app_list_style.liste_btns, &app_style.menu_btn_style, sizeof(lv_btns_t)); - app_style.app_list_style.bg_pages.sb_rects.objs.color = COLOR_GRAY; - app_style.app_list_style.bg_pages.sb_rects.gcolor = COLOR_GRAY; - app_style.app_list_style.bg_pages.sb_width = 8 * LV_DOWNSCALE; - - /*Shortcut page styles*/ - lv_pages_get(LV_PAGES_DEF,&app_style.sc_page_style); - app_style.sc_page_style.bg_rects.empty = 1; - app_style.sc_page_style.bg_rects.round = 0; - app_style.sc_page_style.bg_rects.bwidth = 0; - app_style.sc_page_style.bg_rects.vpad = app_style.menu_h; - app_style.sc_page_style.bg_rects.hpad = 0; - app_style.sc_page_style.bg_rects.opad = 0; - app_style.sc_page_style.scrl_rects.objs.transp = 1; - app_style.sc_page_style.scrl_rects.hpad = 10 * LV_DOWNSCALE; - app_style.sc_page_style.scrl_rects.vpad = 10 * LV_DOWNSCALE; - app_style.sc_page_style.scrl_rects.opad = 15 * LV_DOWNSCALE; + memcpy(&app_style.menu_btn_pr, &app_style.menu_btn_rel, sizeof(lv_style_t)); + app_style.menu_btn_pr.mcolor = COLOR_GRAY; + app_style.menu_btn_pr.gcolor = COLOR_GRAY; + app_style.menu_btn_pr.bcolor = COLOR_GRAY; + app_style.menu_btn_pr.bwidth = 0; + app_style.menu_btn_pr.radius = 0; + app_style.menu_btn_pr.empty = 0; + app_style.menu_btn_pr.swidth = 0; /*Shortcut styles*/ - lv_btns_get(LV_BTNS_DEF,&app_style.sc_style); - app_style.sc_style.mcolor[LV_BTN_STATE_REL] = COLOR_WHITE; - app_style.sc_style.gcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x20, 0x30, 0x40); - app_style.sc_style.bcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x40, 0x60, 0x80); - app_style.sc_style.mcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0xB0, 0xD0, 0xF0); - app_style.sc_style.gcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x00, 0x00, 0x00); - app_style.sc_style.bcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0xB0, 0xD0, 0xF0); - app_style.sc_style.rects.bopa = 70; - app_style.sc_style.rects.bwidth = 1 * LV_DOWNSCALE; + lv_style_get(LV_STYLE_BTN_REL,&app_style.sc_rel); + app_style.sc_rel.ccolor = COLOR_MAKE(0x10, 0x18, 0x20); + app_style.sc_rel.opa = OPA_COVER; + app_style.sc_rel.mcolor = COLOR_WHITE; + app_style.sc_rel.gcolor = COLOR_MAKE(0x20, 0x30, 0x40); + app_style.sc_rel.bcolor = COLOR_MAKE(0x40, 0x60, 0x80); + app_style.sc_rel.bopa = OPA_70; + app_style.sc_rel.bwidth = 1 * LV_DOWNSCALE; + app_style.sc_rel.swidth = 0 * LV_DOWNSCALE; + app_style.sc_rel.font = font_get(LV_APP_FONT_MEDIUM); + app_style.sc_rel.txt_align = 1; - memcpy(&app_style.sc_send_style, &app_style.sc_style, sizeof(lv_btns_t)); - app_style.sc_send_style.mcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0xFF, 0xE0, 0xE0); - app_style.sc_send_style.gcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x50, 0x20, 0x00); - app_style.sc_send_style.bcolor[LV_BTN_STATE_REL] = COLOR_BLACK; - app_style.sc_send_style.flags[LV_BTN_STATE_REL].light_en = 1; - app_style.sc_send_style.mcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0xFF, 0xB0, 0xB0); - app_style.sc_send_style.gcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x20, 0x10, 0x00); - app_style.sc_send_style.bcolor[LV_BTN_STATE_PR] = COLOR_BLACK; - app_style.sc_send_style.flags[LV_BTN_STATE_PR].light_en = 1; - app_style.sc_send_style.rects.light = 10 * LV_DOWNSCALE; - app_style.sc_send_style.rects.bopa = 30; - app_style.sc_send_style.rects.bwidth = 3 * LV_DOWNSCALE; + memcpy(&app_style.sc_pr, &app_style.sc_rel, sizeof(lv_style_t)); + app_style.sc_pr.opa = OPA_COVER; + app_style.sc_pr.mcolor = COLOR_MAKE(0xB0, 0xD0, 0xF0); + app_style.sc_pr.gcolor = COLOR_MAKE(0x00, 0x00, 0x00); + app_style.sc_pr.bcolor = COLOR_MAKE(0xB0, 0xD0, 0xF0); + app_style.sc_pr.bopa = OPA_70; + app_style.sc_pr.bwidth = 1 * LV_DOWNSCALE; + app_style.sc_pr.swidth = 0 * LV_DOWNSCALE; - memcpy(&app_style.sc_rec_style, &app_style.sc_style, sizeof(lv_btns_t)); - app_style.sc_rec_style.mcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0xE0, 0xFF, 0xE0); - app_style.sc_rec_style.gcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x20, 0x50, 0x20); - app_style.sc_rec_style.bcolor[LV_BTN_STATE_REL] = COLOR_BLACK; - app_style.sc_rec_style.flags[LV_BTN_STATE_REL].light_en = 1; - app_style.sc_rec_style.mcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0xB0, 0xFF, 0xB0); - app_style.sc_rec_style.gcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x20, 0x20, 0x10); - app_style.sc_rec_style.bcolor[LV_BTN_STATE_PR] = COLOR_BLACK; - app_style.sc_rec_style.flags[LV_BTN_STATE_PR].light_en = 1; - app_style.sc_rec_style.rects.light = 10 * LV_DOWNSCALE; - app_style.sc_rec_style.rects.bopa = 30; - app_style.sc_rec_style.rects.bwidth = 3 * LV_DOWNSCALE; + memcpy(&app_style.sc_send_rel, &app_style.sc_rel, sizeof(lv_style_t)); + app_style.sc_send_rel.mcolor = COLOR_MAKE(0xFF, 0xE0, 0xE0); + app_style.sc_send_rel.gcolor = COLOR_MAKE(0x50, 0x20, 0x00); + app_style.sc_send_rel.bcolor = COLOR_BLACK; + app_style.sc_send_rel.bopa = OPA_30; + app_style.sc_send_rel.bwidth = 3 * LV_DOWNSCALE; - lv_labels_get(LV_LABELS_DEF,&app_style.sc_title_style); - app_style.sc_title_style.font = LV_APP_FONT_SMALL; - app_style.sc_title_style.objs.color = COLOR_MAKE(0x10, 0x18, 0x20); - app_style.sc_title_style.mid = 1; + memcpy(&app_style.sc_send_pr, &app_style.sc_pr, sizeof(lv_style_t)); + app_style.sc_send_pr.mcolor = COLOR_MAKE(0xFF, 0xB0, 0xB0); + app_style.sc_send_pr.gcolor = COLOR_MAKE(0x20, 0x10, 0x00); + app_style.sc_send_pr.gcolor = COLOR_BLACK; + app_style.sc_send_pr.bopa = OPA_30; + app_style.sc_send_pr.bwidth = 2 * LV_DOWNSCALE; - lv_labels_get(LV_LABELS_DEF,&app_style.sc_txt_style); - app_style.sc_txt_style.font = LV_APP_FONT_MEDIUM; - app_style.sc_txt_style.objs.color = COLOR_MAKE(0x10, 0x18, 0x20); - app_style.sc_txt_style.mid = 1; + memcpy(&app_style.sc_rec_rel, &app_style.sc_send_rel, sizeof(lv_style_t)); + app_style.sc_rec_rel.mcolor = COLOR_MAKE(0xE0, 0xFF, 0xE0); + app_style.sc_rec_rel.gcolor = COLOR_MAKE(0x20, 0x50, 0x20); + app_style.sc_rec_rel.bcolor = COLOR_BLACK; + app_style.sc_rec_rel.bopa = OPA_30; + app_style.sc_rec_rel.bwidth = 2 * LV_DOWNSCALE; - /*Window styles*/ - lv_wins_get(LV_WINS_DEF,&app_style.win_style); - memcpy(&app_style.win_style.header, &app_style.menu_style, sizeof(lv_rects_t)); - memcpy(&app_style.win_style.title, &app_style.menu_btn_label_style, sizeof(lv_labels_t)); - memcpy(&app_style.win_style.ctrl_btn, &app_style.menu_btn_style, sizeof(lv_btns_t)); - memcpy(&app_style.win_style.ctrl_img, &app_style.menu_btn_img_style, sizeof(lv_imgs_t)); - app_style.win_style.header_opa = app_style.menu_opa; - app_style.win_style.ctrl_btn_opa = app_style.menu_btn_opa; - app_style.win_style.header.vpad = 5 * LV_DOWNSCALE; - app_style.win_style.header.hpad = 5 * LV_DOWNSCALE; - app_style.win_style.header.opad = 5 * LV_DOWNSCALE; - app_style.win_style.pages.bg_rects.vpad = app_style.win_style.ctrl_btn_h + - 2 * app_style.win_style.header.vpad; - app_style.win_style.pages.bg_rects.hpad = 5 * LV_DOWNSCALE; - app_style.win_style.pages.scrl_rects.objs.transp = 1; - app_style.win_style.pages.sb_mode = LV_PAGE_SB_MODE_AUTO; + memcpy(&app_style.sc_rec_pr, &app_style.sc_send_pr, sizeof(lv_style_t)); + app_style.sc_rec_pr.mcolor = COLOR_MAKE(0xB0, 0xFF, 0xB0); + app_style.sc_rec_pr.gcolor = COLOR_MAKE(0x20, 0x20, 0x10); + app_style.sc_rec_pr.bcolor = COLOR_BLACK; + app_style.sc_rec_pr.bopa = OPA_30; + app_style.sc_rec_pr.bwidth = 2 * LV_DOWNSCALE; - lv_labels_get(LV_LABELS_DEF,&app_style.win_txt_style); - app_style.win_txt_style.font = LV_APP_FONT_MEDIUM; - app_style.win_txt_style.objs.color = COLOR_MAKE(0x20, 0x20, 0x20); - app_style.win_txt_style.mid = 0; - app_style.win_txt_style.letter_space = 1 * LV_DOWNSCALE; + memcpy(&app_style.sc_title, &app_style.sc_rel, sizeof(lv_style_t)); + app_style.sc_title.font = font_get(LV_APP_FONT_SMALL); + + /*Window*/ + lv_style_get(LV_STYLE_PLAIN_COLOR, &app_style.win_header); + memcpy(&app_style.win_header, &app_style.menu, sizeof(lv_style_t)); + app_style.win_header.font = font_get(LV_APP_FONT_LARGE); + + lv_style_get(LV_STYLE_TRANSP, &app_style.win_scrl); + + lv_style_get(LV_STYLE_BTN_REL, &app_style.win_cbtn_rel); + memcpy(&app_style.win_cbtn_rel, &app_style.menu_btn_rel, sizeof(lv_style_t)); + app_style.win_cbtn_rel.font = font_get(LV_IMG_DEF_SYMBOL_FONT); + + lv_style_get(LV_STYLE_BTN_PR, &app_style.win_cbtn_pr); + memcpy(&app_style.win_cbtn_pr, &app_style.menu_btn_pr, sizeof(lv_style_t)); + app_style.win_cbtn_pr.font = font_get(LV_IMG_DEF_SYMBOL_FONT); } -/** - * Create files for the icons - */ -static void lv_app_init_icons(void) -{ -#if USE_IMG_CLOSE != 0 - lv_img_create_file("icon_close", img_close); -#endif - -#if USE_IMG_DOWN != 0 - lv_img_create_file("icon_down", img_down); -#endif - -#if USE_IMG_DRIVER != 0 - lv_img_create_file("icon_driver", img_driver); -#endif - -#if USE_IMG_FILE != 0 - lv_img_create_file("icon_file", img_file); -#endif - -#if USE_IMG_FOLDER != 0 - lv_img_create_file("icon_folder", img_folder); -#endif - -#if USE_IMG_LEFT != 0 - lv_img_create_file("icon_left", img_left); -#endif - -#if USE_IMG_OK != 0 - lv_img_create_file("icon_ok", img_ok); -#endif - -#if USE_IMG_RIGHT != 0 - lv_img_create_file("icon_right", img_right); -#endif - -#if USE_IMG_UP != 0 - lv_img_create_file("icon_up", img_up); -#endif -} #endif /*LV_APP_ENABLE != 0*/ diff --git a/lv_app/lv_app.h b/lv_app/lv_app.h index 01b8e3adf..6edfa24e7 100644 --- a/lv_app/lv_app.h +++ b/lv_app/lv_app.h @@ -13,10 +13,26 @@ #include "lvgl/lvgl.h" #if LV_APP_ENABLE != 0 +#include "lvgl/lv_app/lv_app_util/lv_app_kb.h" +#include "lvgl/lv_app/lv_app_util/lv_app_fsel.h" +#include "lvgl/lv_app/lv_app_util/lv_app_notice.h" + /********************* * DEFINES *********************/ +/*Check dependencies*/ +#if LV_OBJ_FREE_P == 0 +#error "lv_app: Free pointer is required for application. Enable it lv_conf.h: LV_OBJ_FREE_P 1" +#endif + +#if LV_OBJ_FREE_NUM == 0 +#error "lv_app: Free number is required for application. Enable it lv_conf.h: LV_OBJ_FREE_NUM 1" +#endif + +#if DM_CUSTOM == 0 && DM_MEM_SIZE < (2 * 1024) +#error "lv_app: not enough dynamic memory. Increase it in misc_conf.h: DM_MEM_SIZE" +#endif /********************** * TYPEDEFS @@ -30,7 +46,7 @@ typedef enum typedef enum { - LV_APP_COM_TYPE_CHAR, /*Stream of characters. Always '\0' terminated*/ + LV_APP_COM_TYPE_CHAR, /*Stream of characters. Not '\0' terminated*/ LV_APP_COM_TYPE_INT, /*Stream of 'int32_t' numbers*/ LV_APP_COM_TYPE_LOG, /*String about an event to log*/ LV_APP_COM_TYPE_TRIG, /*A trigger to do some specific action (data is ignored)*/ @@ -47,6 +63,7 @@ typedef struct lv_obj_t * sc; lv_obj_t * sc_title; lv_obj_t * win; + lv_obj_t * conf_win; void * app_data; void * sc_data; void * win_data; @@ -63,38 +80,27 @@ typedef struct __LV_APP_DSC_T void (*sc_close) (lv_app_inst_t *); void (*win_open) (lv_app_inst_t *, lv_obj_t *); void (*win_close) (lv_app_inst_t *); + void (*conf_open) (lv_app_inst_t *, lv_obj_t * ); uint16_t app_data_size; uint16_t sc_data_size; uint16_t win_data_size; }lv_app_dsc_t; typedef struct { - lv_rects_t menu_style; - lv_btns_t menu_btn_style; - lv_labels_t menu_btn_label_style; - lv_imgs_t menu_btn_img_style; - lv_lists_t app_list_style; - lv_pages_t sc_page_style; - lv_labels_t win_txt_style; - lv_wins_t win_style; - lv_btns_t sc_style; - lv_btns_t sc_send_style; - lv_btns_t sc_rec_style; - lv_labels_t sc_title_style; - lv_labels_t sc_txt_style; - - opa_t menu_opa; - opa_t menu_btn_opa; - opa_t sc_opa; - - cord_t menu_h; - cord_t app_list_w; - cord_t app_list_h; - cord_t sc_title_margin; - - /*Calculated values, do not set them!*/ - cord_t win_useful_w; - cord_t win_useful_h; + lv_style_t menu; + lv_style_t menu_btn_rel; + lv_style_t menu_btn_pr; + lv_style_t sc_rel; + lv_style_t sc_pr; + lv_style_t sc_send_rel; + lv_style_t sc_send_pr; + lv_style_t sc_rec_rel; + lv_style_t sc_rec_pr; + lv_style_t sc_title; + lv_style_t win_header; + lv_style_t win_scrl; + lv_style_t win_cbtn_rel; + lv_style_t win_cbtn_pr; }lv_app_style_t; @@ -215,10 +221,6 @@ lv_app_inst_t * lv_app_get_next(lv_app_inst_t * prev, lv_app_dsc_t * dsc); */ lv_app_dsc_t ** lv_app_dsc_get_next(lv_app_dsc_t ** prev); -/** - * Refresh the style of the applications - * */ -void lv_app_style_refr(void); /** * Get a pointer to the application style structure. If modified then 'lv_app_refr_style' should be called diff --git a/lv_app/lv_app_util/lv_app_fsel.c b/lv_app/lv_app_util/lv_app_fsel.c index c4ae5e091..1a41bbea9 100644 --- a/lv_app/lv_app_util/lv_app_fsel.c +++ b/lv_app/lv_app_util/lv_app_fsel.c @@ -7,7 +7,7 @@ * INCLUDES *********************/ #include "lv_app_fsel.h" -#if LV_APP_ENABLE != 0 +#if USE_LV_APP_FSEL != 0 #include #include "lv_app_notice.h" @@ -15,9 +15,6 @@ /********************* * DEFINES *********************/ -#define LV_APP_FSEL_FN_MAX_LEN 128 -#define LV_APP_FSEL_PATH_MAX_LEN 256 -#define LV_APP_FSEL_PAGE_SIZE 8 /********************** * TYPEDEFS @@ -45,9 +42,9 @@ static char fsel_path[LV_APP_FSEL_PATH_MAX_LEN]; static uint16_t fsel_file_cnt; static lv_obj_t * fsel_win; static lv_obj_t * fsel_list; -static lv_lists_t fsel_lists; static void * fsel_param; static void (*fsel_ok_action)(void *, const char *); +static lv_style_t style_btn_symbol; /********************** * MACROS @@ -62,7 +59,8 @@ static void (*fsel_ok_action)(void *, const char *); */ void lv_app_fsel_init(void) { - lv_lists_get(LV_LISTS_TRANSP, &fsel_lists); + lv_style_get(LV_STYLE_BTN_REL, &style_btn_symbol); + style_btn_symbol.font = font_get(LV_IMG_DEF_SYMBOL_FONT); } /** @@ -91,13 +89,14 @@ void lv_app_fsel_open(const char * path, const char * filter, void * param, void /*Check filter: NULL and "" mean no filtering*/ if(fsel_filter == NULL) fsel_filter = ""; - /*Create a window for the File selector*/ lv_app_style_t * app_style = lv_app_style_get(); + + /*Create a window for the File selector*/ fsel_win = lv_win_create(lv_scr_act(), NULL); lv_obj_set_size(fsel_win, LV_HOR_RES, LV_VER_RES); - lv_obj_set_style(fsel_win, &app_style->win_style); + lv_win_set_styles_cbtn(fsel_win, &app_style->win_cbtn_rel, &app_style->win_cbtn_pr); - lv_win_add_ctrl_btn(fsel_win, "U:/icon_close", fsel_close_action); + lv_win_add_cbtn(fsel_win, SYMBOL_CLOSE, fsel_close_action); fsel_refr(); /*Refresh the list*/ @@ -139,34 +138,34 @@ static void fsel_refr(void) lv_win_set_title(fsel_win, fsel_path); /*Create a new list*/ - lv_app_style_t * app_style = lv_app_style_get(); fsel_list = lv_list_create(fsel_win, NULL); - lv_obj_set_width(fsel_list, app_style->win_useful_w); - lv_obj_set_style(fsel_list, lv_lists_get(LV_LISTS_TRANSP, NULL)); + lv_obj_set_width(fsel_list, lv_win_get_width(fsel_win)); + lv_list_set_style_img(fsel_list, &style_btn_symbol); + lv_obj_set_style(lv_page_get_scrl(fsel_list), lv_style_get(LV_STYLE_TRANSP_TIGHT, NULL)); lv_obj_set_drag_parent(fsel_list, true); lv_obj_set_drag_parent(lv_page_get_scrl(fsel_list), true); - lv_rect_set_fit(fsel_list, false, true); + lv_cont_set_fit(fsel_list, false, true); fs_res_t res = FS_RES_OK; + lv_obj_t * liste; /*At empty path show the drivers */ if(fsel_path[0] == '\0') { char drv[16]; char buf[2]; - lv_obj_t * liste; fs_get_letters(drv); uint8_t i; for(i = 0; drv[i] != '\0'; i++) { buf[0] = drv[i]; buf[1] = '\0'; - liste = lv_list_add(fsel_list, "U:/icon_driver", buf, fsel_drv_action); + liste = lv_list_add(fsel_list, SYMBOL_DRIVE, buf, fsel_drv_action); /*Add long press action to choose the driver as a folder*/ if(fsel_filter[0] == '/') lv_btn_set_lpr_action(liste, fsel_drv_lpr_action); } } /*List the files/folders with fs interface*/ else { - lv_list_add(fsel_list, "U:/icon_up", "Up", fsel_up_action); + liste = lv_list_add(fsel_list, SYMBOL_UP, "Up", fsel_up_action); fs_readdir_t rd; res = fs_readdir_init(&rd, fsel_path); @@ -177,7 +176,7 @@ static void fsel_refr(void) /*At not first page add prev. page button */ if(fsel_file_cnt != 0) { - lv_list_add(fsel_list, "U:/icon_left", "Previous page", fsel_prev_action); + liste = lv_list_add(fsel_list, SYMBOL_LEFT, "Previous page", fsel_prev_action); } char fn[LV_APP_FSEL_FN_MAX_LEN]; @@ -186,7 +185,7 @@ static void fsel_refr(void) uint16_t file_cnt = 0; while(file_cnt <= fsel_file_cnt) { res = fs_readdir(&rd, fn); - if(res != FS_RES_OK || fn[0] == '\0'){ + if(res != FS_RES_OK){ lv_app_notice_add("Can not read the path\nin File selector"); return; } @@ -197,7 +196,7 @@ static void fsel_refr(void) while(res == FS_RES_OK && fn[0] != '\0') { if(fn[0] == '/') { /*Add a folder*/ lv_obj_t * liste; - liste = lv_list_add(fsel_list, "U:/icon_folder", &fn[1], fsel_folder_action); + liste = lv_list_add(fsel_list, SYMBOL_FOLDER, &fn[1], fsel_folder_action); /*Add long press action to choose a folder*/ if(fsel_filter[0] == '/') lv_btn_set_lpr_action(liste, fsel_folder_lpr_action); @@ -208,7 +207,7 @@ static void fsel_refr(void) else if(fsel_filter[0] == '\0' || /*No filtering or ...*/ (strcmp(fs_get_ext(fn), fsel_filter) == 0 && /*.. the filter matches*/ fsel_filter[0] != '/')) { - lv_list_add(fsel_list, "U:/icon_file", fn, fsel_file_action); + liste = lv_list_add(fsel_list, SYMBOL_FILE, fn, fsel_file_action); fsel_file_cnt ++; file_cnt ++; } @@ -218,7 +217,7 @@ static void fsel_refr(void) /*Show only LV_APP_FSEL_MAX_FILE elements and add a Next page button*/ if(fsel_file_cnt != 0 && fsel_file_cnt % LV_APP_FSEL_PAGE_SIZE == 0) { - lv_list_add(fsel_list, "U:/icon_right", "Next page", fsel_next_action); + liste = lv_list_add(fsel_list, SYMBOL_RIGHT, "Next page", fsel_next_action); break; } } @@ -301,7 +300,7 @@ static lv_action_res_t fsel_prev_action(lv_obj_t * prev, lv_dispi_t * dispi) */ static lv_action_res_t fsel_drv_action(lv_obj_t * drv, lv_dispi_t * dispi) { - sprintf(fsel_path, "%s:", lv_list_element_get_txt(drv)); + sprintf(fsel_path, "%s:", lv_list_get_element_text(drv)); fsel_file_cnt = 0; fsel_refr(); return LV_ACTION_RES_INV; @@ -315,7 +314,7 @@ static lv_action_res_t fsel_drv_action(lv_obj_t * drv, lv_dispi_t * dispi) */ static lv_action_res_t fsel_drv_lpr_action(lv_obj_t * drv, lv_dispi_t * dispi) { - sprintf(fsel_path, "%s:", lv_list_element_get_txt(drv)); + sprintf(fsel_path, "%s:", lv_list_get_element_text(drv)); if(fsel_ok_action != NULL) { fsel_ok_action(fsel_param, fsel_path); @@ -334,7 +333,7 @@ static lv_action_res_t fsel_drv_lpr_action(lv_obj_t * drv, lv_dispi_t * dispi) */ static lv_action_res_t fsel_folder_action(lv_obj_t * folder, lv_dispi_t * dispi) { - sprintf(fsel_path, "%s/%s", fsel_path, lv_list_element_get_txt(folder)); + sprintf(fsel_path, "%s/%s", fsel_path, lv_list_get_element_text(folder)); fsel_file_cnt = 0; fsel_refr(); return LV_ACTION_RES_INV; @@ -348,7 +347,7 @@ static lv_action_res_t fsel_folder_action(lv_obj_t * folder, lv_dispi_t * dispi) */ static lv_action_res_t fsel_folder_lpr_action(lv_obj_t * folder, lv_dispi_t * dispi) { - sprintf(fsel_path, "%s/%s", fsel_path, lv_list_element_get_txt(folder)); + sprintf(fsel_path, "%s/%s", fsel_path, lv_list_get_element_text(folder)); if(fsel_ok_action != NULL) { fsel_ok_action(fsel_param, fsel_path); @@ -367,7 +366,7 @@ static lv_action_res_t fsel_folder_lpr_action(lv_obj_t * folder, lv_dispi_t * di */ static lv_action_res_t fsel_file_action(lv_obj_t * file, lv_dispi_t * dispi) { - sprintf(fsel_path, "%s/%s", fsel_path, lv_list_element_get_txt(file)); + sprintf(fsel_path, "%s/%s", fsel_path, lv_list_get_element_text(file)); if(fsel_ok_action != NULL) { fsel_ok_action(fsel_param, fsel_path); diff --git a/lv_app/lv_app_util/lv_app_fsel.h b/lv_app/lv_app_util/lv_app_fsel.h index 684afc10b..efba70b88 100644 --- a/lv_app/lv_app_util/lv_app_fsel.h +++ b/lv_app/lv_app_util/lv_app_fsel.h @@ -10,11 +10,24 @@ * INCLUDES *********************/ #include "../lv_app.h" -#if LV_APP_ENABLE != 0 +#if USE_LV_APP_FSEL != 0 /********************* * DEFINES *********************/ +/*Add the required configurations*/ +#ifndef LV_APP_FSEL_FN_MAX_LEN +#define LV_APP_FSEL_FN_MAX_LEN 128 +#endif + +#ifndef LV_APP_FSEL_PATH_MAX_LEN +#define LV_APP_FSEL_PATH_MAX_LEN 256 +#endif + +#ifndef LV_APP_FSEL_PAGE_SIZE +#define LV_APP_FSEL_PAGE_SIZE 8 +#endif + /********************** * TYPEDEFS @@ -35,7 +48,7 @@ void lv_app_fsel_init(void); * @param filter show only files with a specific extension, e.g. "wav". * "/" means filter to folders. * @param param a free parameter which will be added to 'ok_action' - * @param ok_action an action to call when a file or folder is chosen + * @param ok_action an action to call when a file or folder is chosen (give 'param' and the path as parameters) */ void lv_app_fsel_open(const char * path, const char * filter, void * param, void (*ok_action)(void *, const char *)); diff --git a/lv_app/lv_app_util/lv_app_kb.c b/lv_app/lv_app_util/lv_app_kb.c index f2d74d8f2..0eb843b8f 100644 --- a/lv_app/lv_app_util/lv_app_kb.c +++ b/lv_app/lv_app_util/lv_app_kb.c @@ -7,7 +7,7 @@ * INCLUDES *********************/ #include "lv_app_kb.h" -#if LV_APP_ENABLE != 0 +#if USE_LV_APP_KB != 0 #include "lvgl/lv_objx/lv_btnm.h" #include "lvgl/lv_objx/lv_ta.h" @@ -33,23 +33,23 @@ static lv_obj_t * kb_win; static lv_obj_t * kb_ta; static const char * kb_map_lc[] = { "\0051#", "\004q", "\004w", "\004e", "\004r", "\004t", "\004y", "\004u", "\004i", "\004o", "\004p", "\007Del", "\n", -"\007ABC", "\004a", "\004s", "\004d", "\004f", "\004g", "\004h", "\004j", "\004k", "\004l", "\010Enter", "\n", +"\006ABC", "\003a", "\003s", "\003d", "\003f", "\003g", "\003h", "\003j", "\003k", "\003l", "\010Enter", "\n", "_", "-", "z", "x", "c", "v", "b", "n", "m", ".", ",", ":", "\n", -"\002Hide", "\002Left", "\006 ", "\002Right", "\002Ok", "" +"\003Hide", "\003Left", "\006 ", "\003Right", "\003Ok", "" }; static const char * kb_map_uc[] = { "\0051#", "\004Q", "\004W", "\004E", "\004R", "\004T", "\004Y", "\004U", "\004I", "\004O", "\004P", "\007Del", "\n", -"\007abc", "\004A", "\004S", "\004D", "\004F", "\004G", "\004H", "\004J", "\004K", "\004L", "\010Enter", "\n", +"\006abc", "\003A", "\003S", "\003D", "\003F", "\003G", "\003H", "\003J", "\003K", "\003L", "\010Enter", "\n", "_", "-", "Z", "X", "C", "V", "B", "N", "M", ".", ",", ":", "\n", -"\002Hide", "\002Left", "\006 ", "\002Right", "\002Ok", "" +"\003Hide", "\003Left", "\006 ", "\003Right", "\003Ok", "" }; static const char * kb_map_spec[] = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "\002Del", "\n", "\002abc", "+", "-", "/", "*", "=", "%", "!", "?", "#", "<", ">", "\n", "\\", "@", "$", "(", ")", "{", "}", "[", "]", ";", "\"", "'", "\n", -"\002Hide", "\002Left", "\006 ", "\002Right", "\002Ok", "" +"\003Hide", "\003Left", "\006 ", "\003Right", "\003Ok", "" }; static const char * kb_map_num[] = { @@ -63,8 +63,9 @@ static cord_t kb_ta_ori_size; static uint8_t kb_mode; static void (*kb_close_action)(lv_obj_t *); static void (*kb_ok_action)(lv_obj_t *); -static lv_btnms_t kb_btnms; - +static lv_style_t style_bg; +static lv_style_t style_btn_rel; +static lv_style_t style_btn_pr; /********************** * MACROS **********************/ @@ -78,17 +79,21 @@ static lv_btnms_t kb_btnms; */ void lv_app_kb_init(void) { - lv_btnms_get(LV_BTNMS_DEF, &kb_btnms); - kb_btnms.rects.gcolor = COLOR_WHITE; - kb_btnms.rects.objs.color = COLOR_WHITE; - kb_btnms.rects.opad = 4 + LV_DOWNSCALE; - kb_btnms.rects.vpad = 3 + LV_DOWNSCALE; - kb_btnms.rects.hpad = 3 + LV_DOWNSCALE; - kb_btnms.rects.round = 0; - kb_btnms.rects.bwidth = 0; + lv_app_style_t * app_style = lv_app_style_get(); - kb_btnms.btns.rects.bwidth = 0; - kb_btnms.btns.rects.round = 0; + memcpy(&style_bg, &app_style->menu, sizeof(lv_style_t)); + style_bg.opa = OPA_COVER; + style_bg.hpad = 0; + style_bg.vpad = 0; + style_bg.opad = 0; + + memcpy(&style_btn_rel, &app_style->menu_btn_rel, sizeof(lv_style_t)); + style_btn_rel.radius = 0; + style_btn_rel.bwidth = 1; + + memcpy(&style_btn_pr, &app_style->menu_btn_pr, sizeof(lv_style_t)); + style_btn_pr.radius = 0; + style_btn_pr.bwidth = 1; } /** @@ -97,8 +102,9 @@ void lv_app_kb_init(void) * @param mode 'OR'd values of 'lv_app_kb_mode_t' enum * @param close a function to call when the keyboard is closed * @param ok a function to called when the "Ok" button is pressed + * @return the created button matrix objects */ -void lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t *), void (*ok)(lv_obj_t *)) +lv_obj_t * lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t *), void (*ok)(lv_obj_t *)) { /*Close the previous keyboard*/ if(kb_btnm != NULL) { @@ -113,39 +119,47 @@ void lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t /*Create a button matrix for the keyboard */ kb_btnm = lv_btnm_create(lv_scr_act(), NULL); + lv_obj_set_style(kb_btnm, &style_bg); lv_obj_set_size(kb_btnm, LV_HOR_RES, LV_VER_RES / 2); lv_obj_align(kb_btnm, NULL, LV_ALIGN_IN_BOTTOM_MID, 0, 0); - lv_btnm_set_cb(kb_btnm, lv_app_kb_action); + lv_btnm_set_action(kb_btnm, lv_app_kb_action); if(mode & LV_APP_KB_MODE_TXT) { - kb_btnms.labels.font = LV_APP_FONT_MEDIUM; + style_btn_rel.font = font_get(LV_APP_FONT_MEDIUM); + style_btn_pr.font = font_get(LV_APP_FONT_MEDIUM); lv_btnm_set_map(kb_btnm, kb_map_lc); } else if(mode & LV_APP_KB_MODE_NUM) { - kb_btnms.labels.font = LV_APP_FONT_LARGE; + style_btn_rel.font = font_get(LV_APP_FONT_LARGE); + style_btn_pr.font = font_get(LV_APP_FONT_LARGE); lv_btnm_set_map(kb_btnm, kb_map_num); } - lv_obj_set_style(kb_btnm, &kb_btnms); + lv_btnm_set_styles_btn(kb_btnm, &style_btn_rel, &style_btn_pr); - /*Reduce teh size of the window and align it to the top*/ - kb_win = lv_app_win_get_from_obj(kb_ta); - lv_obj_set_height(kb_win, LV_VER_RES / 2); - lv_obj_set_y(kb_win, 0); + kb_win = NULL; + kb_ta_ori_size = 0; + if(mode & LV_APP_KB_MODE_WIN_RESIZE) { + /*Reduce the size of the window and align it to the top*/ + kb_win = lv_app_win_get_from_obj(kb_ta); + lv_obj_set_height(kb_win, LV_VER_RES / 2); + lv_obj_set_y(kb_win, 0); - /*If the text area is higher then the new size of the window redus its size too*/ - lv_app_style_t * app_style = lv_app_style_get(); - cord_t win_h = lv_obj_get_height(kb_win) - 2 * app_style->win_style.pages.scrl_rects.vpad; - kb_ta_ori_size = lv_obj_get_height(kb_ta); - if(lv_obj_get_height(kb_ta) > win_h) { - lv_obj_set_height(kb_ta, win_h); + /*If the text area is higher then the new size of the window reduce its size too*/ + cord_t cont_h = lv_obj_get_height(kb_win) - lv_obj_get_height(lv_win_get_header(kb_win)); + kb_ta_ori_size = lv_obj_get_height(kb_ta); + if(lv_obj_get_height(kb_ta) > cont_h - LV_DPI / 10) { + lv_obj_set_height(kb_ta, cont_h - LV_DPI / 10); + } +#if LV_APP_ANIM_LEVEL != 0 + lv_page_focus(lv_win_get_content(kb_win), kb_ta, true); +#else + lv_page_focus(lv_win_get_page(kb_win), kb_ta, 0); +#endif } lv_ta_set_cursor_pos(kb_ta, LV_TA_CUR_LAST); -#if LV_APP_ANIM_LEVEL != 0 - lv_page_focus(lv_win_get_content(kb_win), kb_ta, true); -#else - lv_page_focus(kb_win, kb_ta, false); -#endif + return kb_btnm; + } /** @@ -163,11 +177,11 @@ void lv_app_kb_close(bool ok) } /*Reset the modified sizes*/ - - lv_obj_set_height(kb_ta, kb_ta_ori_size); - - lv_obj_set_size(kb_win, LV_HOR_RES, LV_VER_RES); - kb_win = NULL; + if((kb_mode & LV_APP_KB_MODE_WIN_RESIZE) && kb_win != NULL) { + lv_obj_set_height(kb_ta, kb_ta_ori_size); + lv_obj_set_size(kb_win, LV_HOR_RES, LV_VER_RES); + kb_win = NULL; + } lv_obj_del(kb_btnm); kb_btnm = NULL; @@ -237,11 +251,13 @@ static lv_action_res_t lv_app_kb_action(lv_obj_t * btnm, uint16_t i) lv_ta_add_text(kb_ta, txt); } + if(kb_mode & LV_APP_KB_MODE_WIN_RESIZE) { #if LV_APP_ANIM_LEVEL != 0 - lv_page_focus(lv_win_get_content(kb_win), kb_ta, true); + lv_page_focus(lv_win_get_content(kb_win), kb_ta, true); #else - lv_page_focus(kb_win, kb_ta, false); + lv_page_focus(lv_win_get_page(kb_win), kb_ta, 0); #endif + } return LV_ACTION_RES_OK; } diff --git a/lv_app/lv_app_util/lv_app_kb.h b/lv_app/lv_app_util/lv_app_kb.h index 75afb7f92..bf0d48031 100644 --- a/lv_app/lv_app_util/lv_app_kb.h +++ b/lv_app/lv_app_util/lv_app_kb.h @@ -10,7 +10,7 @@ * INCLUDES *********************/ #include "../lv_app.h" -#if LV_APP_ENABLE != 0 +#if USE_LV_APP_KB != 0 /********************* * DEFINES @@ -23,6 +23,7 @@ typedef enum { LV_APP_KB_MODE_TXT = 0x01, LV_APP_KB_MODE_NUM = 0x02, + LV_APP_KB_MODE_WIN_RESIZE = 0x04, }lv_app_kb_mode_t; /********************** @@ -40,8 +41,9 @@ void lv_app_kb_init(void); * @param mode 'OR'd values of 'lv_app_kb_mode_t' enum * @param close a function to call when the keyboard is closed * @param ok a function to called when the "Ok" button is pressed + * @return the created button matrix objects */ -void lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t *), void (*ok)(lv_obj_t *)); +lv_obj_t * lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t *), void (*ok)(lv_obj_t *)); /** * Close the keyboard diff --git a/lv_app/lv_app_util/lv_app_notice.c b/lv_app/lv_app_util/lv_app_notice.c index bb9d1d57a..12326e670 100644 --- a/lv_app/lv_app_util/lv_app_notice.c +++ b/lv_app/lv_app_util/lv_app_notice.c @@ -7,12 +7,12 @@ * INCLUDES *********************/ #include "lv_app_notice.h" -#if LV_APP_ENABLE != 0 +#if USE_LV_APP_NOTICE != 0 -#include "lvgl/lv_objx/lv_rect.h" +#include #include "lvgl/lv_objx/lv_label.h" -#include "lvgl/lv_misc/anim.h" +#include "misc/gfx/anim.h" #include /********************* @@ -44,14 +44,12 @@ static lv_obj_t * notice_h; */ void lv_app_notice_init(void) { - lv_app_style_t * app_style = lv_app_style_get(); - - notice_h = lv_rect_create(lv_scr_act(), NULL); - lv_obj_set_size(notice_h, LV_HOR_RES, LV_VER_RES - app_style->menu_h); - lv_obj_set_y(notice_h, app_style->menu_h); + notice_h = lv_cont_create(lv_scr_act(), NULL); + lv_obj_set_size(notice_h, LV_HOR_RES, LV_VER_RES - LV_DPI / 8); + lv_obj_set_y(notice_h, LV_DPI / 8); lv_obj_set_click(notice_h, false); - lv_obj_set_style(notice_h, lv_rects_get(LV_RECTS_TRANSP, NULL)); - lv_rect_set_layout(notice_h, LV_RECT_LAYOUT_COL_R); + lv_obj_set_style(notice_h, lv_style_get(LV_STYLE_TRANSP, NULL)); + lv_cont_set_layout(notice_h, LV_CONT_LAYOUT_COL_R); } /** @@ -68,19 +66,23 @@ lv_obj_t * lv_app_notice_add(const char * format, ...) vsprintf(txt,format, va); va_end(va); - lv_app_style_t * app_style = lv_app_style_get(); - lv_obj_t * mbox; mbox = lv_mbox_create(notice_h, NULL); - lv_obj_set_style(mbox, lv_mboxs_get(LV_MBOXS_INFO, NULL)); - lv_mbox_set_title(mbox, ""); lv_mbox_set_text(mbox, txt); - lv_obj_set_opa(mbox, app_style->menu_opa); + lv_mbox_set_anim_close_time(mbox, LV_APP_NOTICE_CLOSE_ANIM_TIME); #if LV_APP_NOTICE_SHOW_TIME != 0 lv_mbox_start_auto_close(mbox, LV_APP_NOTICE_SHOW_TIME); #endif + /*Delete the last children if there are too many*/ + uint32_t child_num = lv_obj_get_child_num(notice_h); + if(child_num > LV_APP_NOTICE_MAX_NUM) { + lv_obj_t * last_child = ll_get_tail(¬ice_h->child_ll); + lv_obj_del(last_child); + } + + /*make sure the notices are on the top*/ lv_obj_set_parent(notice_h, lv_scr_act()); return mbox; diff --git a/lv_app/lv_app_util/lv_app_notice.h b/lv_app/lv_app_util/lv_app_notice.h index 2dc25b815..7c2eaca5a 100644 --- a/lv_app/lv_app_util/lv_app_notice.h +++ b/lv_app/lv_app_util/lv_app_notice.h @@ -11,11 +11,28 @@ *********************/ #include "../lv_app.h" #include -#if LV_APP_ENABLE != 0 +#if USE_LV_APP_NOTICE != 0 /********************* * DEFINES *********************/ +/*Add the required configurations*/ +#ifndef LV_APP_NOTICE_SHOW_TIME +#define LV_APP_NOTICE_SHOW_TIME 4000 +#endif + +#ifndef LV_APP_NOTICE_CLOSE_ANIM_TIME +#define LV_APP_NOTICE_CLOSE_ANIM_TIME 300 +#endif + +#ifndef LV_APP_NOTICE_MAX_NUM +#define LV_APP_NOTICE_MAX_NUM 6 +#endif + +#ifndef LV_APP_NOTICE_MAX_LEN +#define LV_APP_NOTICE_MAX_LEN 256 +#endif + /********************** * TYPEDEFS diff --git a/lv_appx/lv_app_example.c b/lv_appx/lv_app_example.c index 7da186140..fb2a202dd 100644 --- a/lv_appx/lv_app_example.c +++ b/lv_appx/lv_app_example.c @@ -143,11 +143,9 @@ static void my_com_rec(lv_app_inst_t * app_send, lv_app_inst_t * app_rec, static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc) { my_sc_data_t * sc_data = app->sc_data; - lv_app_style_t * app_style = lv_app_style_get(); sc_data->label = lv_label_create(sc, NULL); lv_label_set_text(sc_data->label, "Empty"); - lv_obj_set_style(sc_data->label, &app_style->sc_txt_style); lv_obj_align(sc_data->label, NULL, LV_ALIGN_CENTER, 0, 0); } @@ -200,7 +198,7 @@ static void my_win_close(lv_app_inst_t * app) static lv_action_res_t ta_rel_action(lv_obj_t * ta, lv_dispi_t * dispi) { lv_ta_set_text(ta, ""); /*Clear the ta*/ - lv_app_kb_open(ta, LV_APP_KB_MODE_TXT, NULL, kb_ok_action); + lv_app_kb_open(ta, LV_APP_KB_MODE_TXT | LV_APP_KB_MODE_WIN_RESIZE, NULL, kb_ok_action); return LV_ACTION_RES_OK; } diff --git a/lv_appx/lv_app_files.c b/lv_appx/lv_app_files.c index 758676434..487cea87f 100644 --- a/lv_appx/lv_app_files.c +++ b/lv_appx/lv_app_files.c @@ -45,7 +45,6 @@ typedef struct typedef struct { lv_obj_t * file_list; - lv_obj_t * send_set_h; }my_win_data_t; /*Application specific data for a shortcut of this application*/ @@ -73,6 +72,7 @@ static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc); static void my_sc_close(lv_app_inst_t * app); static void my_win_open(lv_app_inst_t * app, lv_obj_t * win); static void my_win_close(lv_app_inst_t * app); +static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win); static void win_load_file_list(lv_app_inst_t * app); static void win_create_list(lv_app_inst_t * app); @@ -83,7 +83,6 @@ static lv_action_res_t win_drv_action(lv_obj_t * drv, lv_dispi_t * dispi); static lv_action_res_t win_folder_action(lv_obj_t * folder, lv_dispi_t * dispi); static lv_action_res_t win_file_action(lv_obj_t * file, lv_dispi_t * dispi); static lv_action_res_t win_send_rel_action(lv_obj_t * send, lv_dispi_t * dispi); -static lv_action_res_t win_send_lpr_action(lv_obj_t * send, lv_dispi_t * dispi); static lv_action_res_t win_send_settings_element_rel_action(lv_obj_t * element, lv_dispi_t * dispi); static lv_action_res_t win_back_action(lv_obj_t * back, lv_dispi_t * dispi); static lv_action_res_t win_del_rel_action(lv_obj_t * del, lv_dispi_t * dispi); @@ -107,12 +106,14 @@ static lv_app_dsc_t my_app_dsc = .win_close = my_win_close, .sc_open = my_sc_open, .sc_close = my_sc_close, + .conf_open = my_conf_open, .app_data_size = sizeof(my_app_data_t), .sc_data_size = sizeof(my_sc_data_t), .win_data_size = sizeof(my_win_data_t), }; -static lv_labels_t sc_labels; +static lv_style_t style_sc_label; +static lv_style_t style_btn_symbol; /********************** @@ -130,10 +131,11 @@ static lv_labels_t sc_labels; const lv_app_dsc_t * lv_app_files_init(void) { lv_app_style_t * app_style = lv_app_style_get(); - memcpy(&sc_labels, &app_style->sc_txt_style, sizeof(lv_labels_t)); - sc_labels.font = LV_APP_FONT_LARGE; - + memcpy(&style_sc_label, &app_style->sc_rec_rel, sizeof(lv_style_t)); + style_sc_label.font = font_get(LV_APP_FONT_LARGE); + lv_style_get(LV_STYLE_BTN_REL, &style_btn_symbol); + style_btn_symbol.font = font_get(LV_IMG_DEF_SYMBOL_FONT); return &my_app_dsc; } @@ -219,7 +221,7 @@ static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc) sc_data->label = lv_label_create(sc, NULL); - lv_obj_set_style(sc_data->label, &sc_labels); + lv_obj_set_style(sc_data->label, &style_sc_label); lv_label_set_text(sc_data->label, fs_get_last(app_data->path)); lv_obj_align(sc_data->label, NULL, LV_ALIGN_CENTER, 0, 0); } @@ -247,7 +249,6 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) app_data->file_cnt = 0; win_data->file_list = NULL; - win_data->send_set_h = NULL; lv_win_set_title(win, app_data->path); @@ -263,6 +264,76 @@ static void my_win_close(lv_app_inst_t * app) } +/** + * Create objects to configure the applications + * @param app pointer to an application which settings should be created + * @param conf_win pointer to a window where the objects can be created + * (the window has the proper layout) + */ +static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win) +{ + my_app_data_t * app_data = app->app_data; + + /*Create check boxes*/ + lv_obj_t * cb; + + /*Send file name check box*/ + cb = lv_cb_create(conf_win, NULL); + lv_cb_set_text(cb, "Send file name"); + lv_obj_set_free_num(cb, SEND_SETTINGS_FN); + lv_obj_set_free_p(cb, app); + lv_btn_set_rel_action(cb, win_send_settings_element_rel_action); + if(app_data->send_fn != 0) lv_btn_set_state(cb, LV_BTN_STATE_TREL); + else lv_btn_set_state(cb, LV_BTN_STATE_REL); + + /*Send size check box*/ + cb = lv_cb_create(conf_win, cb); + lv_cb_set_text(cb, "Send size"); + lv_obj_set_free_num(cb, SEND_SETTINGS_SIZE); + if(app_data->send_size != 0) lv_btn_set_state(cb, LV_BTN_STATE_TREL); + else lv_btn_set_state(cb, LV_BTN_STATE_REL); + + /*Send CRC check box*/ + cb = lv_cb_create(conf_win, cb); + lv_cb_set_text(cb, "Send CRC"); + lv_obj_set_free_num(cb, SEND_SETTINGS_CRC); + if(app_data->send_crc != 0) lv_btn_set_state(cb, LV_BTN_STATE_TREL); + else lv_btn_set_state(cb, LV_BTN_STATE_REL); + + /*Create a text area to type chunk size*/ + lv_obj_t * val_set_h; + val_set_h = lv_cont_create(conf_win, NULL); + lv_obj_set_style(val_set_h, lv_style_get(LV_STYLE_PLAIN_COLOR, NULL)); + lv_obj_set_click(val_set_h, false); + lv_cont_set_fit(val_set_h, true, true); + lv_cont_set_layout(val_set_h, LV_CONT_LAYOUT_ROW_M); + + lv_obj_t * label; + label = lv_label_create(val_set_h, NULL); + lv_label_set_text(label, "Chunk size"); + + lv_obj_t * ta; + char buf[32]; + ta = lv_ta_create(val_set_h, NULL); + lv_cont_set_fit(ta, false, true); + lv_obj_set_free_num(ta, SEND_SETTINGS_CHUNK_SIZE); + lv_obj_set_free_p(ta, app); + lv_page_set_rel_action(ta, win_send_settings_element_rel_action); + sprintf(buf, "%d", app_data->chunk_size); + lv_ta_set_text(ta, buf); + + /*Create a text area to type the chunk delay*/ + val_set_h = lv_cont_create(conf_win, val_set_h); + + label = lv_label_create(val_set_h, NULL); + lv_label_set_text(label, "Inter-chunk delay"); + + ta = lv_ta_create(val_set_h, ta); + lv_obj_set_free_num(ta, SEND_SETTINGS_CHUNK_DELAY); + sprintf(buf, "%d", app_data->chunk_delay); + lv_ta_set_text(ta, buf); +} + /*-------------------- * OTHER FUNCTIONS ---------------------*/ @@ -272,7 +343,6 @@ static void my_win_close(lv_app_inst_t * app) */ static void win_create_list(lv_app_inst_t * app) { - lv_app_style_t * app_style = lv_app_style_get(); my_win_data_t * win_data = app->win_data; /*Delete the previous list*/ @@ -282,12 +352,13 @@ static void win_create_list(lv_app_inst_t * app) /*Create a new list*/ win_data->file_list = lv_list_create(app->win, NULL); - lv_obj_set_width(win_data->file_list, app_style->win_useful_w); - lv_obj_set_style(win_data->file_list, lv_lists_get(LV_LISTS_TRANSP, NULL)); + lv_obj_set_width(win_data->file_list, lv_win_get_width(app->win)); + lv_list_set_style_img(win_data->file_list, &style_btn_symbol); + lv_obj_set_style(lv_page_get_scrl(win_data->file_list), lv_style_get(LV_STYLE_TRANSP_TIGHT, NULL)); lv_obj_set_drag_parent(win_data->file_list, true); lv_obj_set_drag_parent(lv_page_get_scrl(win_data->file_list), true); - lv_rect_set_fit(win_data->file_list, false, true); - lv_rect_set_layout(lv_page_get_scrl(win_data->file_list), LV_RECT_LAYOUT_COL_L); + lv_cont_set_fit(win_data->file_list, false, true); + lv_cont_set_layout(lv_page_get_scrl(win_data->file_list), LV_CONT_LAYOUT_COL_L); } /** @@ -314,13 +385,13 @@ static void win_load_file_list(lv_app_inst_t * app) for(i = 0; drv[i] != '\0'; i++) { buf[0] = drv[i]; buf[1] = '\0'; - liste = lv_list_add(win_data->file_list, "U:/icon_driver", buf, win_drv_action); + liste = lv_list_add(win_data->file_list, SYMBOL_DRIVE, buf, win_drv_action); lv_obj_set_free_p(liste, app); } } /*List the files/folders with fs interface*/ else { - liste = lv_list_add(win_data->file_list, "U:/icon_up", "Up", win_up_action); + liste = lv_list_add(win_data->file_list, SYMBOL_UP, "Up", win_up_action); lv_obj_set_free_p(liste, app); fs_readdir_t rd; @@ -332,7 +403,7 @@ static void win_load_file_list(lv_app_inst_t * app) /*At not first page add prev. page button */ if(app_data->file_cnt != 0) { - liste = lv_list_add(win_data->file_list, "U:/icon_left", "Previous page", win_prev_action); + liste = lv_list_add(win_data->file_list, SYMBOL_LEFT, "Previous page", win_prev_action); lv_obj_set_free_p(liste, app); } @@ -342,7 +413,7 @@ static void win_load_file_list(lv_app_inst_t * app) uint16_t file_cnt = 0; while(file_cnt <= app_data->file_cnt) { res = fs_readdir(&rd, fn); - if(res != FS_RES_OK || fn[0] == '\0'){ + if(res != FS_RES_OK ){ lv_app_notice_add("Can not read\nthe path in Files"); return; } @@ -353,13 +424,13 @@ static void win_load_file_list(lv_app_inst_t * app) while(res == FS_RES_OK && fn[0] != '\0') { if(fn[0] == '/') { /*Add a folder*/ lv_obj_t * liste; - liste = lv_list_add(win_data->file_list, "U:/icon_folder", &fn[1], win_folder_action); + liste = lv_list_add(win_data->file_list, SYMBOL_FOLDER, &fn[1], win_folder_action); lv_obj_set_free_p(liste, app); app_data->file_cnt ++; } /*Add a file*/ else { - liste = lv_list_add(win_data->file_list, "U:/icon_file", fn, win_file_action); + liste = lv_list_add(win_data->file_list, SYMBOL_FILE, fn, win_file_action); lv_obj_set_free_p(liste, app); app_data->file_cnt ++; } @@ -369,7 +440,7 @@ static void win_load_file_list(lv_app_inst_t * app) /*Show only LV_APP_FSEL_MAX_FILE elements and add a Next page button*/ if(app_data->file_cnt != 0 && app_data->file_cnt % LV_APP_FILES_PAGE_SIZE == 0) { - liste = lv_list_add(win_data->file_list, "U:/icon_right", "Next page", win_next_action); + liste = lv_list_add(win_data->file_list, SYMBOL_RIGHT, "Next page", win_next_action); lv_obj_set_free_p(liste, app); break; } @@ -458,7 +529,7 @@ static lv_action_res_t win_drv_action(lv_obj_t * drv, lv_dispi_t * dispi) { lv_app_inst_t * app = lv_obj_get_free_p(drv); my_app_data_t * app_data = app->app_data; - sprintf(app_data->path, "%s:", lv_list_element_get_txt(drv)); + sprintf(app_data->path, "%s:", lv_list_get_element_text(drv)); app_data->file_cnt = 0; lv_win_set_title(app->win, app_data->path); my_sc_data_t * sc_data = app->sc_data; @@ -482,7 +553,7 @@ static lv_action_res_t win_folder_action(lv_obj_t * folder, lv_dispi_t * dispi) { lv_app_inst_t * app = lv_obj_get_free_p(folder); my_app_data_t * app_data = app->app_data; - sprintf(app_data->path, "%s/%s", app_data->path, lv_list_element_get_txt(folder)); + sprintf(app_data->path, "%s/%s", app_data->path, lv_list_get_element_text(folder)); app_data->file_cnt = 0; lv_win_set_title(app->win, app_data->path); @@ -510,7 +581,7 @@ static lv_action_res_t win_file_action(lv_obj_t * file, lv_dispi_t * dispi) my_app_data_t * app_data = app->app_data; my_win_data_t * win_data = app->win_data; - sprintf(app_data->fn, "%s", lv_list_element_get_txt(file)); + sprintf(app_data->fn, "%s", lv_list_get_element_text(file)); win_create_list(app); @@ -522,8 +593,6 @@ static lv_action_res_t win_file_action(lv_obj_t * file, lv_dispi_t * dispi) /*Send button*/ liste = lv_list_add(win_data->file_list, NULL, "Send", win_send_rel_action); lv_obj_set_free_p(liste, app); - lv_btn_set_lpr_action(liste, win_send_lpr_action); - lv_obj_set_free_p(liste, app); /*Delete button*/ liste = lv_list_add(win_data->file_list, NULL, "Delete", win_del_rel_action); @@ -573,100 +642,6 @@ static lv_action_res_t win_send_rel_action(lv_obj_t * send, lv_dispi_t * dispi) return LV_ACTION_RES_OK; } -/** - * Called when the Send list element is long pressed to show/hide send settings - * @param send pointer to the Up button - * @param dispi pointer to the caller display input - * @return LV_ACTION_RES_OK because the list is NOT deleted in the function - */ -static lv_action_res_t win_send_lpr_action(lv_obj_t * send, lv_dispi_t * dispi) -{ - lv_app_inst_t * app = lv_obj_get_free_p(send); - my_app_data_t * app_data = app->app_data; - my_win_data_t * win_data = app->win_data; - - /*Close the settings if it is opened*/ - if(win_data->send_set_h != NULL) { - lv_obj_del(win_data->send_set_h); - win_data->send_set_h = NULL; - lv_dispi_wait_release(dispi); - lv_btn_set_state(send, LV_BTN_STATE_REL); - return LV_ACTION_RES_OK; - } - - /*Create the settings*/ - lv_btn_set_state(send, LV_BTN_STATE_REL); - lv_rect_set_layout(send, LV_RECT_LAYOUT_COL_L); - - /*Create holder for the settings*/ - win_data->send_set_h = lv_rect_create(send, NULL); - lv_obj_set_style(win_data->send_set_h, lv_rects_get(LV_RECTS_TRANSP, NULL)); - lv_obj_set_click(win_data->send_set_h, false); - lv_rect_set_fit(win_data->send_set_h, true, true); - lv_rect_set_layout(win_data->send_set_h, LV_RECT_LAYOUT_COL_L); - - /*Create check boxes*/ - lv_obj_t * cb; - - /*Send file name check box*/ - cb = lv_cb_create(win_data->send_set_h, NULL); - lv_cb_set_text(cb, "Send file name"); - lv_obj_set_free_num(cb, SEND_SETTINGS_FN); - lv_obj_set_free_p(cb, app); - lv_btn_set_rel_action(cb, win_send_settings_element_rel_action); - if(app_data->send_fn != 0) lv_btn_set_state(cb, LV_BTN_STATE_TGL_REL); - else lv_btn_set_state(cb, LV_BTN_STATE_REL); - - /*Send size check box*/ - cb = lv_cb_create(win_data->send_set_h, cb); - lv_cb_set_text(cb, "Send size"); - lv_obj_set_free_num(cb, SEND_SETTINGS_SIZE); - if(app_data->send_size != 0) lv_btn_set_state(cb, LV_BTN_STATE_TGL_REL); - else lv_btn_set_state(cb, LV_BTN_STATE_REL); - - /*Send CRC check box*/ - cb = lv_cb_create(win_data->send_set_h, cb); - lv_cb_set_text(cb, "Send CRC"); - lv_obj_set_free_num(cb, SEND_SETTINGS_CRC); - if(app_data->send_crc != 0) lv_btn_set_state(cb, LV_BTN_STATE_TGL_REL); - else lv_btn_set_state(cb, LV_BTN_STATE_REL); - - /*Create a text area the type chunk size*/ - lv_obj_t * val_set_h; - val_set_h = lv_rect_create(win_data->send_set_h, NULL); - lv_obj_set_style(val_set_h, lv_rects_get(LV_RECTS_TRANSP, NULL)); - lv_obj_set_click(val_set_h, false); - lv_rect_set_fit(val_set_h, true, true); - lv_rect_set_layout(val_set_h, LV_RECT_LAYOUT_ROW_M); - - lv_obj_t * label; - label = lv_label_create(val_set_h, NULL); - lv_label_set_text(label, "Chunk size"); - - lv_obj_t * ta; - char buf[32]; - ta = lv_ta_create(val_set_h, NULL); - lv_obj_set_style(ta, lv_tas_get(LV_TAS_SIMPLE, NULL)); - lv_rect_set_fit(ta, false, true); - lv_obj_set_free_num(ta, SEND_SETTINGS_CHUNK_SIZE); - lv_obj_set_free_p(ta, app); - lv_page_set_rel_action(ta, win_send_settings_element_rel_action); - sprintf(buf, "%d", app_data->chunk_size); - lv_ta_set_text(ta, buf); - - /*Create a text area to type the chunk delay*/ - val_set_h = lv_rect_create(win_data->send_set_h, val_set_h); - - label = lv_label_create(val_set_h, NULL); - lv_label_set_text(label, "Inter-chunk delay"); - - ta = lv_ta_create(val_set_h, ta); - lv_obj_set_free_num(ta, SEND_SETTINGS_CHUNK_DELAY); - sprintf(buf, "%d", app_data->chunk_delay); - lv_ta_set_text(ta, buf); - - return LV_ACTION_RES_OK; -} /** * Called when a send settings element is released * @param element pointer to a chekbox or text area @@ -691,9 +666,9 @@ static lv_action_res_t win_send_settings_element_rel_action(lv_obj_t * element, lv_app_notice_add("CRC sending is\nnot supported yet"); } } else if(id == SEND_SETTINGS_CHUNK_SIZE) { - lv_app_kb_open(element, LV_APP_KB_MODE_NUM, send_settings_kb_close_action, send_settings_kb_ok_action); + lv_app_kb_open(element, LV_APP_KB_MODE_NUM | LV_APP_KB_MODE_WIN_RESIZE, send_settings_kb_close_action, send_settings_kb_ok_action); } else if(id == SEND_SETTINGS_CHUNK_DELAY) { - lv_app_kb_open(element, LV_APP_KB_MODE_NUM, send_settings_kb_close_action, send_settings_kb_ok_action); + lv_app_kb_open(element, LV_APP_KB_MODE_NUM | LV_APP_KB_MODE_WIN_RESIZE, send_settings_kb_close_action, send_settings_kb_ok_action); } return LV_ACTION_RES_OK; @@ -795,41 +770,33 @@ static void start_send(lv_app_inst_t * app, const char * path) /*Open the file*/ fs_res_t res = fs_open(&app_data->file, path, FS_MODE_RD); if(res == FS_RES_OK) { - uint32_t rn; - char rd_buf[LV_APP_FILES_CHUNK_MAX_SIZE]; - - /*Read the first chunk*/ - res = fs_read(&app_data->file, rd_buf, app_data->chunk_size, &rn); - if(res == FS_RES_OK) { - app_data->send_in_prog = 1; - - /*Send the header*/ - if(app_data->send_fn != 0) { - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, app_data->path, strlen(app_data->path)); - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "/", 1); - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, app_data->fn, strlen(app_data->fn)); - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "\n", 1); - } - - if(app_data->send_size != 0) { - char buf[64]; - uint32_t size; - fs_size(&app_data->file, &size); - sprintf(buf,"%d", (int) size); - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, buf, strlen(buf)); - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "\n", 1); - } - if(app_data->send_crc != 0) { - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "0x0000", 6); - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "\n", 1); - } - - /*Add an extra \n to separate the header from the file data*/ - if(app_data->send_fn != 0 || app_data->send_size != 0 || app_data->send_crc != 0) { - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "\n", 1); - } + app_data->send_in_prog = 1; + /*Send the header*/ + if(app_data->send_fn != 0) { + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, app_data->path, strlen(app_data->path)); + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "/", 1); + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, app_data->fn, strlen(app_data->fn)); + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "\n", 1); } + + if(app_data->send_size != 0) { + char buf[64]; + uint32_t size; + fs_size(&app_data->file, &size); + sprintf(buf,"%d", (int) size); + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, buf, strlen(buf)); + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "\n", 1); + } + if(app_data->send_crc != 0) { + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "0x0000", 6); + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "\n", 1); + } + + /*Add an extra \n to separate the header from the file data*/ + if(app_data->send_fn != 0 || app_data->send_size != 0 || app_data->send_crc != 0) { + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "\n", 1); + } } /*If an error occurred close the file*/ diff --git a/lv_appx/lv_app_phantom.c b/lv_appx/lv_app_phantom.c new file mode 100644 index 000000000..75e480e48 --- /dev/null +++ b/lv_appx/lv_app_phantom.c @@ -0,0 +1,143 @@ +/** + * @file lv_app_example.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_app_phantom.h" +#if LV_APP_ENABLE != 0 && USE_LV_APP_PHANTOM != 0 + +#include "../lv_app/lv_app_util/lv_app_kb.h" +#include + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/*Application specific data for an instance of this application*/ +typedef struct +{ + void (*com_listen)(lv_app_inst_t * app_send, lv_app_inst_t * app_rec, + lv_app_com_type_t type , const void * data, uint32_t size); +}my_app_data_t; + +/*Application specific data a window of this application*/ +typedef struct +{ + +}my_win_data_t; + +/*Application specific data for a shortcut of this application*/ +typedef struct +{ + lv_obj_t * label; +}my_sc_data_t; + +/********************** + * STATIC PROTOTYPES + **********************/ +static void my_app_run(lv_app_inst_t * app, void * conf); +static void my_app_close(lv_app_inst_t * app); +static void my_com_rec(lv_app_inst_t * app_send, lv_app_inst_t * app_rec, + lv_app_com_type_t type , const void * data, uint32_t size); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_app_dsc_t my_app_dsc = +{ + .name = "Phantom", + .mode = LV_APP_MODE_NONE, + .app_run = my_app_run, + .app_close = my_app_close, + .com_rec = my_com_rec, + .win_open = NULL, + .win_close = NULL, + .sc_open = NULL, + .sc_close = NULL, + .app_data_size = sizeof(my_app_data_t), + .sc_data_size = sizeof(my_sc_data_t), + .win_data_size = sizeof(my_win_data_t), +}; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Initialize the application + * @return pointer to the application descriptor of this application + */ +const lv_app_dsc_t * lv_app_phantom_init(void) +{ + + return &my_app_dsc; +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +/** + * Run an application according to 'app_dsc' + * @param app_dsc pointer to an application descriptor + * @param conf pointer to a lv_app_phantom_conf_t structure with configuration data or NULL if unused + * @return pointer to the opened application or NULL if any error occurred + */ +static void my_app_run(lv_app_inst_t * app, void * conf) +{ + /*Initialize the application*/ + my_app_data_t * app_data = app->app_data; + app_data->com_listen = NULL; + + if(conf != NULL) { + lv_app_phantom_conf_t * my_conf = conf; + app_data->com_listen = my_conf->com_listen; + } +} + +/** + * Close a running application. + * Close the Window and the Shortcut too if opened. + * Free all the allocated memory by this application. + * @param app pointer to an application + */ +static void my_app_close(lv_app_inst_t * app) +{ + /*No dynamically allocated data in 'my_app_data'*/ +} + +/** + * Read the data have been sent to this application + * @param app_send pointer to an application which sent the message + * @param app_rec pointer to an application which is receiving the message + * @param type type of data from 'lv_app_com_type_t' enum + * @param data pointer to the sent data + * @param size length of 'data' in bytes + */ +static void my_com_rec(lv_app_inst_t * app_send, lv_app_inst_t * app_rec, + lv_app_com_type_t type , const void * data, uint32_t size) +{ + + my_app_data_t * app_data = app_rec->app_data; + + if(app_data->com_listen != NULL) { + app_data->com_listen(app_send, app_rec, type, data, size); + } +} + +/*-------------------- + * OTHER FUNCTIONS + ---------------------*/ + +#endif /*LV_APP_ENABLE != 0 && USE_LV_APP_EXAMPLE != 0*/ diff --git a/lv_appx/lv_app_phantom.h b/lv_appx/lv_app_phantom.h new file mode 100644 index 000000000..bb7f729f8 --- /dev/null +++ b/lv_appx/lv_app_phantom.h @@ -0,0 +1,42 @@ +/** + * @file lv_app_phantom.h + * + */ + +#ifndef LV_APP_PHANTOM_H +#define LV_APP_PHANTOM_H + +/********************* + * INCLUDES + *********************/ +#include "lvgl/lv_app/lv_app.h" + +#if LV_APP_ENABLE != 0 && USE_LV_APP_PHANTOM != 0 + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ +typedef struct +{ + void (*com_listen)(lv_app_inst_t * app_send, + lv_app_inst_t * app_rec, + lv_app_com_type_t type , + const void * data, uint32_t size); +}lv_app_phantom_conf_t; + +/********************** + * GLOBAL PROTOTYPES + **********************/ +const lv_app_dsc_t * lv_app_phantom_init(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_APP_ENABLE != 0 && USE_LV_APP_PHANTOM != 0*/ + +#endif /* LV_APP_PHANTOM_H */ diff --git a/lv_appx/lv_app_sysmon.c b/lv_appx/lv_app_sysmon.c index 0cabe7a78..c898ddee5 100644 --- a/lv_appx/lv_app_sysmon.c +++ b/lv_appx/lv_app_sysmon.c @@ -20,7 +20,7 @@ * DEFINES *********************/ #define CPU_LABEL_COLOR "FF0000" -#define MEM_LABEL_COLOR "008000" +#define MEM_LABEL_COLOR "0000FF" /********************** * TYPEDEFS @@ -36,16 +36,16 @@ typedef struct typedef struct { lv_obj_t * chart; - cord_t * cpu_dl; - cord_t * mem_dl; + lv_chart_dl_t * cpu_dl; + lv_chart_dl_t * mem_dl; lv_obj_t * label; }my_win_data_t; /*Application specific data for a shortcut of this application*/ typedef struct { - lv_obj_t * pb_cpu; - lv_obj_t * pb_mem; + lv_obj_t * bar_cpu; + lv_obj_t * bar_mem; }my_sc_data_t; /********************** @@ -83,8 +83,10 @@ static lv_app_dsc_t my_app_dsc = static uint8_t mem_pct[LV_APP_SYSMON_PNUM]; static uint8_t cpu_pct[LV_APP_SYSMON_PNUM]; -static lv_pbs_t cpu_pbs; -static lv_pbs_t mem_pbs; +static lv_style_t cpu_bar_bg; +static lv_style_t mem_bar_bg; +static lv_style_t cpu_bar_indic; +static lv_style_t mem_bar_indic; #if USE_DYN_MEM != 0 && DM_CUSTOM == 0 static dm_mon_t mem_mon; #endif @@ -108,31 +110,31 @@ const lv_app_dsc_t * lv_app_sysmon_init(void) memset(mem_pct, 0, sizeof(mem_pct)); memset(cpu_pct, 0, sizeof(cpu_pct)); - /*Create progress bar styles for the shortcut*/ - lv_pbs_get(LV_PBS_DEF, &cpu_pbs); - cpu_pbs.bg.gcolor = COLOR_MAKE(0xFF, 0xE0, 0xE0); - cpu_pbs.bg.objs.color = COLOR_MAKE(0xFF, 0xD0, 0xD0); - cpu_pbs.bg.bcolor = COLOR_MAKE(0xFF, 0x20, 0x20); - cpu_pbs.bg.bwidth = 1 * LV_DOWNSCALE; + /*Create bar styles for the shortcut*/ + lv_style_get(LV_STYLE_PRETTY, &cpu_bar_bg); + cpu_bar_bg.ccolor = COLOR_MAKE(0x40, 0x00, 0x00); + cpu_bar_bg.font = font_get(LV_APP_FONT_MEDIUM); + cpu_bar_bg.line_space = 0; + cpu_bar_bg.txt_align = 1; + cpu_bar_bg.hpad = 0; + cpu_bar_bg.vpad = 0; - cpu_pbs.bar.gcolor = COLOR_MARRON; - cpu_pbs.bar.objs.color = COLOR_RED; - cpu_pbs.bar.bwidth = 0; + memcpy(&mem_bar_bg, &cpu_bar_bg, sizeof(lv_style_t)); + mem_bar_bg.ccolor = COLOR_MAKE(0x00, 0x40, 0x00); - cpu_pbs.label.objs.color = COLOR_MAKE(0x40, 0x00, 0x00); - cpu_pbs.label.font = LV_APP_FONT_MEDIUM; - cpu_pbs.label.line_space = 0; - cpu_pbs.label.mid = 1; + lv_style_get(LV_STYLE_PRETTY_COLOR, &cpu_bar_indic); + cpu_bar_indic.gcolor = COLOR_MARRON; + cpu_bar_indic.mcolor = COLOR_RED; + cpu_bar_indic.bcolor = COLOR_BLACK; + //cpu_bar_indic.bwidth = 1 * LV_DOWNSCALE; + cpu_bar_indic.bopa = OPA_50; + cpu_bar_indic.hpad = 0 * LV_DOWNSCALE; + cpu_bar_indic.vpad = 0 * LV_DOWNSCALE; - memcpy(&mem_pbs, &cpu_pbs, sizeof(mem_pbs)); - mem_pbs.bg.gcolor = COLOR_MAKE(0xD0, 0xFF, 0xD0); - mem_pbs.bg.objs.color = COLOR_MAKE(0xE0, 0xFF, 0xE0); - mem_pbs.bg.bcolor = COLOR_MAKE(0x20, 0xFF, 0x20); - mem_pbs.bar.gcolor = COLOR_GREEN; - mem_pbs.bar.objs.color = COLOR_LIME; - - mem_pbs.label.objs.color = COLOR_MAKE(0x00, 0x40, 0x00); + memcpy(&mem_bar_indic, &cpu_bar_indic, sizeof(lv_style_t)); + mem_bar_indic.gcolor = COLOR_GREEN; + mem_bar_indic.mcolor = COLOR_LIME; return &my_app_dsc; } @@ -189,19 +191,25 @@ static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc) cord_t w = lv_obj_get_width(sc) / 5; - /*Create 2 progress bars fr the CPU and the Memory*/ - sc_data->pb_cpu = lv_pb_create(sc, NULL); - lv_obj_set_size(sc_data->pb_cpu, w, 5 * lv_obj_get_height(sc) / 8); - lv_obj_align(sc_data->pb_cpu, NULL, LV_ALIGN_IN_BOTTOM_LEFT, w, - lv_obj_get_height(sc) / 8); - lv_obj_set_style(sc_data->pb_cpu, &cpu_pbs); - lv_obj_set_click(sc_data->pb_cpu, false); - lv_pb_set_min_max_value(sc_data->pb_cpu, 0, 100); - lv_pb_set_format_str(sc_data->pb_cpu, "C\nP\nU"); + /*Create 2 bars for the CPU and the Memory*/ + sc_data->bar_cpu = lv_bar_create(sc, NULL); + lv_obj_set_size(sc_data->bar_cpu, w, 5 * lv_obj_get_height(sc) / 8); + lv_obj_align(sc_data->bar_cpu, NULL, LV_ALIGN_IN_BOTTOM_LEFT, w, - lv_obj_get_height(sc) / 8); + lv_obj_set_style(sc_data->bar_cpu, &cpu_bar_bg); + lv_bar_set_style_indic(sc_data->bar_cpu, &cpu_bar_indic); + lv_obj_set_click(sc_data->bar_cpu, false); + lv_bar_set_range(sc_data->bar_cpu, 0, 100); + lv_obj_t * label = lv_label_create(sc_data->bar_cpu, NULL); + lv_label_set_text(label, "C\nP\nU"); + lv_obj_align(label, NULL, LV_ALIGN_CENTER, 0, 0); - sc_data->pb_mem = lv_pb_create(sc, sc_data->pb_cpu); - lv_obj_align(sc_data->pb_mem, sc_data->pb_cpu, LV_ALIGN_OUT_RIGHT_MID, w, 0); - lv_obj_set_style(sc_data->pb_mem, &mem_pbs); - lv_pb_set_format_str(sc_data->pb_mem, "M\ne\nm"); + sc_data->bar_mem = lv_bar_create(sc, sc_data->bar_cpu); + lv_obj_align(sc_data->bar_mem, sc_data->bar_cpu, LV_ALIGN_OUT_RIGHT_MID, w, 0); + lv_obj_set_style(sc_data->bar_mem, &mem_bar_bg); + lv_bar_set_style_indic(sc_data->bar_mem, &mem_bar_indic); + label = lv_label_create(sc_data->bar_mem, NULL); + lv_label_set_text(label, "M\nE\nM"); + lv_obj_align(label, NULL, LV_ALIGN_CENTER, 0, 0); lv_app_sysmon_refr(); } @@ -225,30 +233,31 @@ static void my_sc_close(lv_app_inst_t * app) static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) { my_win_data_t * win_data = app->win_data; - lv_app_style_t * app_style = lv_app_style_get(); + + /*Make the window content responsive*/ + lv_cont_set_layout(lv_page_get_scrl(lv_win_get_page(win)), LV_CONT_LAYOUT_PRETTY); /*Create a chart with two data lines*/ win_data->chart = lv_chart_create(win, NULL); lv_obj_set_size(win_data->chart, LV_HOR_RES / 2, LV_VER_RES / 2); + lv_obj_set_pos(win_data->chart, LV_DPI / 10, LV_DPI / 10); lv_chart_set_pnum(win_data->chart, LV_APP_SYSMON_PNUM); lv_chart_set_range(win_data->chart, 0, 100); lv_chart_set_type(win_data->chart, LV_CHART_LINE); - - win_data->cpu_dl = lv_chart_add_dataline(win_data->chart); - win_data->mem_dl = lv_chart_add_dataline(win_data->chart); + lv_chart_set_dl_width(win_data->chart, 2 * LV_DOWNSCALE); + win_data->cpu_dl = lv_chart_add_data_line(win_data->chart, COLOR_RED); + win_data->mem_dl = lv_chart_add_data_line(win_data->chart, COLOR_BLUE); uint16_t i; for(i = 0; i < LV_APP_SYSMON_PNUM; i ++) { - win_data->cpu_dl[i] = cpu_pct[i]; - win_data->mem_dl[i] = mem_pct[i]; + win_data->cpu_dl->points[i] = cpu_pct[i]; + win_data->mem_dl->points[i] = mem_pct[i]; } /*Create a label for the details of Memory and CPU usage*/ - cord_t opad = app_style->win_style.pages.scrl_rects.opad; win_data->label = lv_label_create(win, NULL); lv_label_set_recolor(win_data->label, true); - lv_obj_align(win_data->label, win_data->chart, LV_ALIGN_OUT_RIGHT_MID, opad, 0); - lv_obj_set_style(win_data->label, &app_style->win_txt_style); + lv_obj_align(win_data->label, win_data->chart, LV_ALIGN_OUT_RIGHT_TOP, LV_DPI / 4, 0); lv_app_sysmon_refr(); @@ -283,8 +292,10 @@ static void sysmon_task(void * param) /*Get CPU and memory information */ uint8_t cpu_busy = 0; -#if USE_IDLE != 0 +#if USE_IDLE != 0 /*Use the more precise idle module if enabled*/ cpu_busy = 100 - idle_get(); +#else + cpu_busy = 100 - ptask_get_idle(); #endif uint8_t mem_used_pct = 0; @@ -315,8 +326,7 @@ static void sysmon_task(void * param) static bool mem_warn_report = false; if(mem_mon.size_free < LV_APP_SYSMON_MEM_WARN && mem_warn_report == false) { mem_warn_report = true; - lv_obj_t * not = lv_app_notice_add("Critically low memory"); - lv_obj_set_style(not, lv_mboxs_get(LV_MBOXS_WARN, NULL)); + lv_app_notice_add("Critically low memory"); } if(mem_mon.size_free > LV_APP_SYSMON_MEM_WARN) mem_warn_report = false; @@ -325,8 +335,7 @@ static void sysmon_task(void * param) if(mem_mon.pct_frag > LV_APP_SYSMON_FRAG_WARN) { if(frag_warn_report == false) { frag_warn_report = true; - lv_obj_t * not =lv_app_notice_add("Critical memory\nfragmentation"); - lv_obj_set_style(not, lv_mboxs_get(LV_MBOXS_WARN, NULL)); + lv_app_notice_add("Critical memory\nfragmentation"); dm_defrag(); /*Defrag. if the fragmentation is critical*/ } @@ -344,13 +353,8 @@ static void lv_app_sysmon_refr(void) char buf_long[256]; char buf_short[128]; -#if USE_IDLE != 0 sprintf(buf_long, "%c%s CPU: %d %%%c\n\n",TXT_RECOLOR_CMD, CPU_LABEL_COLOR, cpu_pct[LV_APP_SYSMON_PNUM - 1], TXT_RECOLOR_CMD); sprintf(buf_short, "CPU: %d %%\n", cpu_pct[LV_APP_SYSMON_PNUM - 1]); -#else - sprintf(buf_long, "%c%s CPU: N/A%c\n\n",TXT_RECOLOR_CMD, CPU_LABEL_COLOR, TXT_RECOLOR_CMD); - strcpy(buf_short, "CPU: N/A\n"); -#endif #if USE_DYN_MEM != 0 && DM_CUSTOM == 0 sprintf(buf_long, "%s%c%s MEMORY: %d %%%c\nTotal: %d bytes\nUsed: %d bytes\nFree: %d bytes\nFrag: %d %%", @@ -359,8 +363,8 @@ static void lv_app_sysmon_refr(void) MEM_LABEL_COLOR, mem_pct[LV_APP_SYSMON_PNUM - 1], TXT_RECOLOR_CMD, - mem_mon.size_total, - mem_mon.size_total - mem_mon.size_free, mem_mon.size_free, mem_mon.pct_frag); + (int)mem_mon.size_total, + (int)mem_mon.size_total - mem_mon.size_free, mem_mon.size_free, mem_mon.pct_frag); sprintf(buf_short, "%sMem: %d %%\nFrag: %d %%\n", buf_short, mem_pct[LV_APP_SYSMON_PNUM - 1], mem_mon.pct_frag); @@ -368,8 +372,6 @@ static void lv_app_sysmon_refr(void) sprintf(buf_long, "%s%c%s MEMORY: N/A%c", buf_long, TXT_RECOLOR_CMD, MEM_LABEL_COLOR, TXT_RECOLOR_CMD); sprintf(buf_short, "%sMem: N/A\nFrag: N/A", buf_short); #endif - lv_app_style_t * app_style = lv_app_style_get(); - cord_t opad = app_style->win_style.pages.scrl_rects.opad; lv_app_inst_t * app; app = lv_app_get_next(NULL, &my_app_dsc); while(app != NULL) { @@ -377,7 +379,6 @@ static void lv_app_sysmon_refr(void) my_win_data_t * win_data = app->win_data; if(win_data != NULL) { lv_label_set_text(win_data->label, buf_long); - lv_obj_align(win_data->label, win_data->chart, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); lv_chart_set_next(win_data->chart, win_data->mem_dl, mem_pct[LV_APP_SYSMON_PNUM - 1]); lv_chart_set_next(win_data->chart, win_data->cpu_dl, cpu_pct[LV_APP_SYSMON_PNUM - 1]); @@ -386,8 +387,8 @@ static void lv_app_sysmon_refr(void) /*Refresh the shortcut*/ my_sc_data_t * sc_data = app->sc_data; if(sc_data != NULL) { - lv_pb_set_value(sc_data->pb_cpu, cpu_pct[LV_APP_SYSMON_PNUM - 1]); - lv_pb_set_value(sc_data->pb_mem, mem_pct[LV_APP_SYSMON_PNUM - 1]); + lv_bar_set_value(sc_data->bar_cpu, cpu_pct[LV_APP_SYSMON_PNUM - 1]); + lv_bar_set_value(sc_data->bar_mem, mem_pct[LV_APP_SYSMON_PNUM - 1]); } lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, buf_short, strlen(buf_short)); diff --git a/lv_appx/lv_app_terminal.c b/lv_appx/lv_app_terminal.c index ce429f14f..0e91e946a 100644 --- a/lv_appx/lv_app_terminal.c +++ b/lv_appx/lv_app_terminal.c @@ -6,7 +6,23 @@ /********************* * INCLUDES *********************/ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include "lv_app_terminal.h" + #if LV_APP_ENABLE != 0 && USE_LV_APP_TERMINAL != 0 #include "lvgl/lv_app/lv_app_util/lv_app_kb.h" @@ -15,16 +31,19 @@ /********************* * DEFINES *********************/ +#define OBJ_PAD (LV_DPI / 12) /********************** * TYPEDEFS **********************/ + /*Application specific data for an instance of this application*/ typedef struct { char txt[LV_APP_TERMINAL_LENGTH + 1]; lv_app_com_type_t com_type; + lv_app_terminal_format_t format; lv_app_inst_t * last_sender; }my_app_data_t; @@ -33,7 +52,6 @@ typedef struct { lv_obj_t * label; lv_obj_t * ta; - lv_obj_t * com_type_btn; lv_obj_t * clear_btn; }my_win_data_t; @@ -53,10 +71,12 @@ static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc); static void my_sc_close(lv_app_inst_t * app); static void my_win_open(lv_app_inst_t * app, lv_obj_t * win); static void my_win_close(lv_app_inst_t * app); +static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win); static void add_data(lv_app_inst_t * app, const void * data, uint16_t data_len); static lv_action_res_t win_ta_rel_action(lv_obj_t * ta, lv_dispi_t * dispi); -static lv_action_res_t win_comch_rel_action(lv_obj_t * btn, lv_dispi_t * dispi); +static lv_action_res_t win_comtype_action(lv_obj_t * ddlist, lv_dispi_t * dispi); +static lv_action_res_t win_format_action(lv_obj_t * ddlist, lv_dispi_t * dispi); static lv_action_res_t win_clear_rel_action(lv_obj_t * btn, lv_dispi_t * dispi); static void win_ta_kb_ok_action(lv_obj_t * ta); @@ -74,14 +94,16 @@ static lv_app_dsc_t my_app_dsc = .win_close = my_win_close, .sc_open = my_sc_open, .sc_close = my_sc_close, + .conf_open = my_conf_open, .app_data_size = sizeof(my_app_data_t), .sc_data_size = sizeof(my_sc_data_t), .win_data_size = sizeof(my_win_data_t), }; -const char * com_type_txt [LV_APP_COM_TYPE_NUM]; -lv_objs_t sc_txt_bgs; -lv_labels_t sc_txts; +static const char * com_type_list_txt[] = {"Character", "Integer", "Log", "None", ""}; +static lv_app_com_type_t com_type_list[] = {LV_APP_COM_TYPE_CHAR, LV_APP_COM_TYPE_INT, LV_APP_COM_TYPE_LOG, LV_APP_COM_TYPE_INV}; +static const char * txt_format_list_txt[] = {"ASCII", "Hexadecimal", ""}; +static lv_style_t style_sc_term; /********************** * MACROS @@ -97,22 +119,13 @@ lv_labels_t sc_txts; */ const lv_app_dsc_t * lv_app_terminal_init(void) { - com_type_txt[LV_APP_COM_TYPE_INT] = "Ch: Num"; - com_type_txt[LV_APP_COM_TYPE_CHAR] = "Ch: Chars"; - com_type_txt[LV_APP_COM_TYPE_LOG] = "Ch: Log"; - com_type_txt[LV_APP_COM_TYPE_INV] = "Ch: None"; - - lv_app_style_t * app_style = lv_app_style_get(); - - memcpy(&sc_txts, &app_style->sc_txt_style, sizeof(lv_labels_t)); - sc_txts.line_space = 0; - sc_txts.letter_space = 0; - sc_txts.mid = 0; - sc_txts.objs.color = COLOR_WHITE; - - lv_objs_get(LV_OBJS_DEF, &sc_txt_bgs); - sc_txt_bgs.color = COLOR_MAKE(0x20, 0x20, 0x20); - + lv_style_get(LV_STYLE_PLAIN, &style_sc_term); + style_sc_term.line_space = 0; + style_sc_term.letter_space = 0; + style_sc_term.txt_align = 0; + style_sc_term.ccolor = COLOR_WHITE; + style_sc_term.mcolor = COLOR_MAKE(0x20, 0x20, 0x20); + style_sc_term.gcolor = COLOR_MAKE(0x20, 0x20, 0x20); return &my_app_dsc; } @@ -131,8 +144,17 @@ static void my_app_run(lv_app_inst_t * app, void * conf) { /*Initialize the application*/ my_app_data_t * app_data = app->app_data; - app_data->com_type = LV_APP_COM_TYPE_CHAR; + + if(conf != NULL) { + app_data->com_type = ((lv_app_terminal_conf_t * ) conf)->com_type; + app_data->format = ((lv_app_terminal_conf_t * ) conf)->format; + } else { + app_data->com_type = LV_APP_COM_TYPE_CHAR; + app_data->format = LV_APP_TERMINAL_FORMAT_ASCII; + } + app_data->last_sender = NULL; + memset(app_data->txt, 0, sizeof(app_data->txt)); } @@ -160,17 +182,27 @@ static void my_com_rec(lv_app_inst_t * app_send, lv_app_inst_t * app_rec, { my_app_data_t * app_data = app_rec->app_data; - /*Add the recevied data if the type is matches*/ + /*Add the received data if the type is matches*/ if(type == app_data->com_type) { /*Insert the name of the sender application if it is not the last*/ if(app_data->last_sender != app_send) { - if(app_data->txt[0] != '\0') add_data(app_rec, "\n", 1); add_data(app_rec, "@", 1); add_data(app_rec, app_send->name, strlen(app_send->name)); add_data(app_rec, "\n", 1); } - add_data(app_rec, data, size); + + if(app_data->format == LV_APP_TERMINAL_FORMAT_HEX) { + char hex_buf[8]; + const char * data_buf = data; + uint32_t i; + for(i = 0; i < size; i++) { + sprintf(hex_buf, "%02x", data_buf[i]); + add_data(app_rec, hex_buf, 2); + } + } else { + add_data(app_rec, data, size); + } } app_data->last_sender = app_send; @@ -190,13 +222,12 @@ static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc) /*Create a dark background*/ lv_obj_t * txt_bg = lv_obj_create(sc, NULL); lv_obj_set_size(txt_bg, 7 * LV_APP_SC_WIDTH / 8 , app->sc->cords.y2 - app->sc_title->cords.y2 - 10 * LV_DOWNSCALE); - lv_obj_set_style(txt_bg, &sc_txt_bgs); + lv_obj_set_style(txt_bg, &style_sc_term); lv_obj_align(txt_bg, app->sc_title, LV_ALIGN_OUT_BOTTOM_MID, 0, 3 * LV_DOWNSCALE); lv_obj_set_click(txt_bg, false); /*Add a text with the text of the terminal*/ sc_data->label = lv_label_create(txt_bg, NULL); - lv_obj_set_style(sc_data->label, &sc_txts); lv_label_set_long_mode(sc_data->label, LV_LABEL_LONG_BREAK); lv_obj_set_width(sc_data->label, lv_obj_get_width(txt_bg) - LV_APP_SC_WIDTH / 8); lv_label_set_text_static(sc_data->label, app_data->txt); @@ -222,53 +253,36 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) { my_win_data_t * win_data = app->win_data; my_app_data_t * app_data = app->app_data; - lv_app_style_t * app_style = lv_app_style_get(); - cord_t opad = app_style->win_style.pages.scrl_rects.opad; + /*Make the window content responsive*/ + lv_cont_set_layout(lv_page_get_scrl(lv_win_get_page(win)), LV_CONT_LAYOUT_PRETTY); /*Create a label for the text of the terminal*/ win_data->label = lv_label_create(win, NULL); lv_label_set_long_mode(win_data->label, LV_LABEL_LONG_BREAK); - lv_obj_set_width(win_data->label, LV_HOR_RES - - 2 * (app_style->win_style.pages.bg_rects.hpad + - app_style->win_style.pages.scrl_rects.hpad)); - - lv_obj_set_style(win_data->label, &app_style->win_txt_style); + lv_obj_set_width(win_data->label, lv_win_get_width(win)); lv_label_set_text_static(win_data->label, app_data->txt); /*Use the app. data text directly*/ /*Create a text area. Text can be added to the terminal from here by app. keyboard.*/ win_data->ta = lv_ta_create(win, NULL); - lv_obj_set_size(win_data->ta, LV_HOR_RES / 2, LV_VER_RES / 4); + lv_obj_set_size(win_data->ta, 3 * LV_HOR_RES / 5, LV_VER_RES / 4); lv_obj_set_free_p(win_data->ta, app); lv_page_set_rel_action(win_data->ta, win_ta_rel_action); + lv_page_glue_obj(win_data->ta, true); lv_ta_set_text(win_data->ta, ""); - lv_obj_set_style(win_data->ta, lv_tas_get(LV_TAS_DEF, NULL)); - lv_obj_align(win_data->ta, win_data->label, LV_ALIGN_OUT_BOTTOM_LEFT, 0, opad); - - - /*Create a button to set the communication type (char, integer etc.)*/ - win_data->com_type_btn = lv_btn_create(win, NULL); - lv_rect_set_fit(win_data->com_type_btn, true, true); - lv_obj_set_free_p(win_data->com_type_btn, app); - lv_btn_set_rel_action(win_data->com_type_btn, win_comch_rel_action); - lv_obj_t * btn_label = lv_label_create(win_data->com_type_btn, NULL); - lv_obj_set_style(btn_label, lv_labels_get(LV_LABELS_BTN, NULL)); - lv_label_set_text(btn_label, com_type_txt[app_data->com_type]); - lv_obj_align(win_data->com_type_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); - /*Create a clear button*/ - win_data->clear_btn = lv_btn_create(win, win_data->com_type_btn); + win_data->clear_btn = lv_btn_create(win, NULL); + lv_cont_set_fit(win_data->clear_btn, true, true); + lv_obj_set_free_p(win_data->clear_btn, app); + lv_page_glue_obj(win_data->ta, true); lv_btn_set_rel_action(win_data->clear_btn, win_clear_rel_action); - btn_label = lv_label_create(win_data->clear_btn, NULL); - lv_obj_set_style(btn_label, lv_labels_get(LV_LABELS_BTN, NULL)); + lv_obj_t * btn_label = lv_label_create(win_data->clear_btn, NULL); lv_label_set_text(btn_label, "Clear"); - lv_obj_align(win_data->clear_btn, win_data->com_type_btn, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); /*Align the window to see the text area on the bottom*/ - lv_obj_align(lv_page_get_scrl(app->win), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - - app_style->win_style.pages.scrl_rects.vpad); - + lv_obj_t * page = lv_win_get_page(app->win); + lv_obj_align(lv_page_get_scrl(page), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - LV_VER_RES); } /** @@ -280,6 +294,35 @@ static void my_win_close(lv_app_inst_t * app) } +/** + * Create objects to configure the applications + * @param app pointer to an application which settings should be created + * @param conf_win pointer to a window where the objects can be created + * (the window has the proper layout) + */ +static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win) +{ + my_app_data_t * app_data = app->app_data; + + lv_obj_t * label; + label = lv_label_create(conf_win, NULL); + lv_label_set_text(label, "Communication type"); + + lv_obj_t * ddl; + ddl = lv_ddlist_create(conf_win, NULL); + lv_obj_set_free_p(ddl, app); + lv_ddlist_set_options(ddl, com_type_list_txt); + lv_ddlist_set_action(ddl, win_comtype_action); + lv_ddlist_set_selected(ddl, app_data->com_type); + + label = lv_label_create(conf_win, label); + lv_label_set_text(label, "\nText format"); /*First '\n' keeps space from the list above*/ + ddl = lv_ddlist_create(conf_win, ddl); + lv_ddlist_set_options(ddl, txt_format_list_txt); + lv_ddlist_set_selected(ddl, app_data->format); + lv_ddlist_set_action(ddl, win_format_action); +} + /*-------------------- * OTHER FUNCTIONS ---------------------*/ @@ -292,34 +335,50 @@ static void my_win_close(lv_app_inst_t * app) */ static lv_action_res_t win_ta_rel_action(lv_obj_t * ta, lv_dispi_t * dispi) { - lv_app_kb_open(ta, LV_APP_KB_MODE_TXT, NULL, win_ta_kb_ok_action); + lv_app_kb_open(ta, LV_APP_KB_MODE_TXT | LV_APP_KB_MODE_WIN_RESIZE, NULL, win_ta_kb_ok_action); return LV_ACTION_RES_OK; } /** - * Called when the communication type button is released to change the type - * @param btn pointer to the comm. type button + * Called when an option is chosen in the communication type drop down list on the configuration window + * @param ddl pointer to the drop down list * @param dispi pointer to the caller display input - * @return LV_ACTION_RES_OK because the button is not deleted + * @return LV_ACTION_RES_OK because the list is not deleted */ -static lv_action_res_t win_comch_rel_action(lv_obj_t * btn, lv_dispi_t * dispi) +static lv_action_res_t win_comtype_action(lv_obj_t * ddlist, lv_dispi_t * dispi) { - lv_app_inst_t * app = lv_obj_get_free_p(btn); + lv_app_inst_t * app = lv_obj_get_free_p(ddlist); my_app_data_t * app_data = app->app_data; - my_win_data_t * win_data = app->win_data; - if(app_data->com_type == LV_APP_COM_TYPE_CHAR) app_data->com_type = LV_APP_COM_TYPE_LOG; - else if(app_data->com_type == LV_APP_COM_TYPE_LOG) app_data->com_type = LV_APP_COM_TYPE_INT; - else if(app_data->com_type == LV_APP_COM_TYPE_INT) app_data->com_type = LV_APP_COM_TYPE_INV; - else app_data->com_type = LV_APP_COM_TYPE_CHAR; + app_data->com_type = com_type_list[lv_ddlist_get_selected(ddlist)]; - lv_label_set_text(lv_obj_get_child(win_data->com_type_btn, NULL), com_type_txt[app_data->com_type]); return LV_ACTION_RES_OK; } /** - * Called when the Clear button is released to clear the ex od the terminal + * Called when an option is chosen in the format drop down list on the configuration window + * @param ddl pointer to the drop down list + * @param dispi pointer to the caller display input + * @return LV_ACTION_RES_OK because the list is not deleted + */ +static lv_action_res_t win_format_action(lv_obj_t * ddlist, lv_dispi_t * dispi) +{ + lv_app_inst_t * app = lv_obj_get_free_p(ddlist); + my_app_data_t * app_data = app->app_data; + uint16_t opt = lv_ddlist_get_selected(ddlist); + if(strcmp(txt_format_list_txt[opt], "Hexadecimal") == 0) { + app_data->format = LV_APP_TERMINAL_FORMAT_HEX; + } else if (strcmp(txt_format_list_txt[opt], "ASCII") == 0) { + app_data->format = LV_APP_TERMINAL_FORMAT_ASCII; + } + + return LV_ACTION_RES_OK; +} + + +/** + * Called when the Clear button is released to clear the text of the terminal * @param btn pointer to the clear button * @param dispi pointer to the caller display input * @return LV_ACTION_RES_OK because the button is not deleted @@ -339,14 +398,9 @@ static lv_action_res_t win_clear_rel_action(lv_obj_t * btn, lv_dispi_t * dispi) } if(win_data != NULL) { - lv_app_style_t * app_style =lv_app_style_get(); - cord_t opad = app_style->win_style.pages.scrl_rects.opad; lv_label_set_text_static(win_data->label, app_data->txt); - lv_obj_align(win_data->ta, win_data->label, LV_ALIGN_OUT_BOTTOM_LEFT, 0, opad); - lv_obj_align(win_data->com_type_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); - lv_obj_align(win_data->clear_btn, win_data->com_type_btn, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); - lv_obj_align(lv_page_get_scrl(app->win), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - - app_style->win_style.pages.scrl_rects.vpad); + lv_obj_t * page = lv_win_get_page(app->win); + lv_obj_align(lv_page_get_scrl(page), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - LV_VER_RES); } return LV_ACTION_RES_OK; @@ -424,16 +478,11 @@ static void add_data(lv_app_inst_t * app, const void * data, uint16_t data_len) my_win_data_t * win_data = app->win_data; my_sc_data_t * sc_data = app->sc_data; - lv_app_style_t * app_style = lv_app_style_get(); if(win_data != NULL) { - cord_t opad = app_style->win_style.pages.scrl_rects.opad; lv_label_set_text_static(win_data->label, app_data->txt); - lv_obj_align(win_data->ta, win_data->label, LV_ALIGN_OUT_BOTTOM_LEFT, 0, opad); - lv_obj_align(win_data->com_type_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); - lv_obj_align(win_data->clear_btn, win_data->com_type_btn, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); - lv_obj_align(lv_page_get_scrl(app->win), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - - app_style->win_style.pages.scrl_rects.vpad); + lv_obj_t * page = lv_win_get_page(app->win); + lv_obj_align(lv_page_get_scrl(page), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - LV_VER_RES); } /*Set the last line on the shortcut*/ diff --git a/lv_appx/lv_app_terminal.h b/lv_appx/lv_app_terminal.h index 8043b5153..b2bda2f18 100644 --- a/lv_appx/lv_app_terminal.h +++ b/lv_appx/lv_app_terminal.h @@ -20,9 +20,16 @@ /********************** * TYPEDEFS **********************/ +typedef enum +{ + LV_APP_TERMINAL_FORMAT_ASCII, + LV_APP_TERMINAL_FORMAT_HEX, +}lv_app_terminal_format_t; + typedef struct { - + lv_app_terminal_format_t format; /*Data display format*/ + lv_app_com_type_t com_type; /*The listened communication type (channel) */ }lv_app_terminal_conf_t; /********************** diff --git a/lv_appx/lv_app_visual.c b/lv_appx/lv_app_visual.c new file mode 100644 index 000000000..9b27cba49 --- /dev/null +++ b/lv_appx/lv_app_visual.c @@ -0,0 +1,182 @@ +/** + * @file lv_app_visual.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_app_example.h" +#if LV_APP_ENABLE != 0 && USE_LV_APP_VISUAL != 0 + +#include + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/*Application specific data for an instance of this application*/ +typedef struct +{ + +}my_app_data_t; + +/*Application specific data a window of this application*/ +typedef struct +{ + +}my_win_data_t; + +/*Application specific data for a shortcut of this application*/ +typedef struct +{ + lv_obj_t * label; +}my_sc_data_t; + +/********************** + * STATIC PROTOTYPES + **********************/ +static void my_app_run(lv_app_inst_t * app, void * conf); +static void my_app_close(lv_app_inst_t * app); +static void my_com_rec(lv_app_inst_t * app_send, lv_app_inst_t * app_rec, lv_app_com_type_t type , const void * data, uint32_t size); +static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc); +static void my_sc_close(lv_app_inst_t * app); +static void my_win_open(lv_app_inst_t * app, lv_obj_t * win); +static void my_win_close(lv_app_inst_t * app); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_app_dsc_t my_app_dsc = +{ + .name = "Visualizer", + .mode = LV_APP_MODE_NONE, + .app_run = my_app_run, + .app_close = my_app_close, + .com_rec = my_com_rec, + .win_open = my_win_open, + .win_close = my_win_close, + .sc_open = my_sc_open, + .sc_close = my_sc_close, + .app_data_size = sizeof(my_app_data_t), + .sc_data_size = sizeof(my_sc_data_t), + .win_data_size = sizeof(my_win_data_t), +}; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Initialize the application + * @return pointer to the application descriptor of this application + */ +const lv_app_dsc_t * lv_app_visual_init(void) +{ + return &my_app_dsc; +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +/** + * Run an application according to 'app_dsc' + * @param app_dsc pointer to an application descriptor + * @param conf pointer to a lv_app_example_conf_t structure with configuration data or NULL if unused + * @return pointer to the opened application or NULL if any error occurred + */ +static void my_app_run(lv_app_inst_t * app, void * conf) +{ + /*Initialize the application*/ +} + +/** + * Close a running application. + * Close the Window and the Shortcut too if opened. + * Free all the allocated memory by this application. + * @param app pointer to an application + */ +static void my_app_close(lv_app_inst_t * app) +{ + /*No dynamically allocated data in 'my_app_data'*/ +} + +/** + * Read the data have been sent to this application + * @param app_send pointer to an application which sent the message + * @param app_rec pointer to an application which is receiving the message + * @param type type of data from 'lv_app_com_type_t' enum + * @param data pointer to the sent data + * @param size length of 'data' in bytes + */ +static void my_com_rec(lv_app_inst_t * app_send, lv_app_inst_t * app_rec, + lv_app_com_type_t type , const void * data, uint32_t size) +{ + if(type == LV_APP_COM_TYPE_CHAR) { /*data: string*/ + my_sc_data_t * sc_data = app_rec->sc_data; + if (sc_data->label != NULL) { + lv_label_set_text_array(sc_data->label, data, size); + lv_obj_align(sc_data->label , NULL,LV_ALIGN_CENTER, 0, 0); + } + } +} + +/** + * Open a shortcut for an application + * @param app pointer to an application + * @param sc pointer to an object where the application + * can create content of the shortcut + */ +static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc) +{ + my_sc_data_t * sc_data = app->sc_data; + + sc_data->label = lv_label_create(sc, NULL); + lv_label_set_text(sc_data->label, "Empty"); + lv_obj_align(sc_data->label, NULL, LV_ALIGN_CENTER, 0, 0); +} + +/** + * Close the shortcut of an application + * @param app pointer to an application + */ +static void my_sc_close(lv_app_inst_t * app) +{ + /*No dynamically allocated data in 'my_sc_data'*/ +} + + +/** + * Open the application in a window + * @param app pointer to an application + * @param win pointer to a window object where + * the application can create content + */ +static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) +{ + +} + +/** + * Close the window of an application + * @param app pointer to an application + */ +static void my_win_close(lv_app_inst_t * app) +{ + +} + +/*-------------------- + * OTHER FUNCTIONS + ---------------------*/ + +#endif /*LV_APP_ENABLE != 0 && USE_LV_APP_VISUAL != 0*/ diff --git a/lv_appx/lv_app_visual.h b/lv_appx/lv_app_visual.h new file mode 100644 index 000000000..ce5e26d01 --- /dev/null +++ b/lv_appx/lv_app_visual.h @@ -0,0 +1,39 @@ +/** + * @file lv_app_visual.h + * + */ + +#ifndef LV_APP_VISUAL_H +#define LV_APP_VISUAL_H + +/********************* + * INCLUDES + *********************/ +#include "lvgl/lv_app/lv_app.h" + +#if LV_APP_ENABLE != 0 && USE_LV_APP_VISUAL != 0 + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ +typedef struct +{ + +}lv_app_visual_conf_t; + +/********************** + * GLOBAL PROTOTYPES + **********************/ +const lv_app_dsc_t * lv_app_visual_init(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_APP_ENABLE != 0 && USE_LV_APP_VISUAL != 0*/ + +#endif /* LV_APP_VISUAL_H */ diff --git a/lv_conf_temp.h b/lv_conf_temp.h deleted file mode 100644 index 7568c4bca..000000000 --- a/lv_conf_temp.h +++ /dev/null @@ -1,232 +0,0 @@ -/** - * @file lv_conf.h - * - */ - -#if 0 /*Remove this to enable the content (Delete the last #endif too!)*/ - -#ifndef LV_CONF_H -#define LV_CONF_H - -/*=================== - Graphical settings - *=====================*/ - -/* Horizontal and vertical resolution of the library. - * Screen resolution multiplied by LV_DOWN_SCALE*/ -#define LV_HOR_RES (480 * LV_DOWNSCALE) -#define LV_VER_RES (320 * LV_DOWNSCALE) - -/* Buffered rendering: >= LV_DOWNSCALE * LV_HOR_RES or 0 to disable buffering*/ - -#define LV_VDB_SIZE (LV_HOR_RES * (LV_VER_RES / 20)) - -/* Enable antialaiassing - * If enabled everything will half-sized - * Use LV_DOWNSCALE to compensate - * the down scaling effect of antialiassing*/ -#define LV_ANTIALIAS 1 -/*Set the downscaling value*/ -#if LV_ANTIALIAS == 0 -#define LV_DOWNSCALE 1 -#else -#define LV_DOWNSCALE 2 -#endif - -#define LV_REFR_PERIOD 40 /*Screen refresh period in milliseconds*/ -#define LV_INV_FIFO_SIZE 32 /*The average number of objects on a screen */ - -/*================= - Misc. setting - *=================*/ -/*Display Input settings*/ -#define LV_DISPI_READ_PERIOD 50 /*Input device read period milliseconds*/ -#define LV_DISPI_TP_MARKER 0 /*Mark the pressed points*/ -#define LV_DISPI_DRAG_LIMIT 10 /*Drag threshold in pixels */ -#define LV_DISPI_DRAG_THROW 20 /*Drag throw slow-down in [%]. Greater value means faster slow-down */ -#define LV_DISPI_LONG_PRESS_TIME 400 /*Long press time in milliseconds*/ -#define LV_DISPI_LONG_PRESS_REP_TIME 100 /*Repeated trigger period in long press [ms] */ - -/*Coordinates*/ -#define LV_CORD_TYPE int16_t /*Coordinate type*/ -#define LV_CORD_MAX (32000) -#define LV_CORD_MIN (-32000) - -/*Fonts and texts*/ -#define USE_FONT_DEJAVU_8 1 -#define USE_FONT_DEJAVU_10 1 -#define USE_FONT_DEJAVU_14 1 -#define USE_FONT_DEJAVU_20 1 -#define USE_FONT_DEJAVU_30 1 -#define USE_FONT_DEJAVU_40 1 -#define USE_FONT_DEJAVU_60 1 -#define USE_FONT_DEJAVU_80 1 -#define USE_FONT_SYMBOL_30 1 -#define USE_FONT_SYMBOL_60 1 -#define LV_FONT_DEFAULT FONT_DEJAVU_30 /*Always set a default font*/ -#define LV_TXT_BREAK_CHARS " ,.;-" /*Can break texts on these chars*/ - -/*lv_obj (base object) settings*/ -#define LV_OBJ_FREE_P 1 /*Enable the free pointer attribute*/ -#define LV_OBJ_DEF_SCR_COLOR COLOR_SILVER /*Default screen color*/ - -/*Others*/ -#define LV_COLOR_TRANSP COLOR_LIME - -/*================== - * LV OBJ X USAGE - * ================*/ - -/*Rectangle (dependencies: -*/ -#define USE_LV_RECT 1 - -/*Label (dependencies: -*/ -#define USE_LV_LABEL 1 -#if USE_LV_LABEL != 0 -#define LV_LABEL_SCROLL_SPEED (25 * LV_DOWNSCALE) /*Hor, or ver. scroll speed (px/sec) in 'LV_LABEL_LONG_SCROLL' mode*/ -#define LV_LABEL_SCROLL_SPEED_VER (10 * LV_DOWNSCALE) /*Ver. scroll speed if hor. scroll is applied too*/ -#define LV_LABEL_SCROLL_PLAYBACK_PAUSE 500 /*Wait before the scroll turns back in ms*/ -#define LV_LABEL_SCROLL_REPEAT_PAUSE 500 /*Wait before the scroll begins again in ms*/ -#endif - -/*Button (dependencies: lv_rect*/ -#define USE_LV_BTN 1 - -/*Line (dependencies: -*/ -#define USE_LV_LINE 1 - -/*Image (dependencies: lv_label (if symbols are enabled) from misc: FSINT, UFS)*/ -#define USE_LV_IMG 1 -#if USE_LV_IMG != 0 -#define LV_IMG_DEF_WALLPAPER img_square_x2 /*Comment this line to NOT use wallpaper*/ -/* 1: enables to interpret the file names as symbol name - * from symbol_def.h if they begin with a lower case letter. - * (driver letters are always upper case)*/ -#define LV_IMG_ENABLE_SYMBOLS 1 -#if LV_IMG_ENABLE_SYMBOLS != 0 -#define LV_IMG_DEF_SYMBOL_FONT FONT_SYMBOL_30 -#endif /*LV_IMG_ENABLE_SYMBOLS*/ -#endif /*USE_LV_IMG*/ - -/*Page (dependencies: lv_rect)*/ -#define USE_LV_PAGE 1 -#if USE_LV_PAGE != 0 -#define LV_PAGE_ANIM_FOCUS_TIME 300 /*List focus animation time [ms] (0: turn off the animation)*/ -#endif - -/*List (dependencies: lv_btn, lv_label, lv_img)*/ -#define USE_LV_LIST 1 - -/*Check box (dependencies: lv_btn, lv_label)*/ -#define USE_LV_CB 1 - -/*Progress bar (dependencies: lv_rect, lv_label)*/ -#define USE_LV_PB 1 - -/*LED (dependencies: lv_rect)*/ -#define USE_LV_LED 1 - -/*Chart (dependencies: lv_rect, lv_line)*/ -#define USE_LV_CHART 1 - -/*Text area (dependencies: lv_label, lv_page)*/ -#define USE_LV_TA 1 -#if USE_LV_TA != 0 -#define LV_TA_MAX_LENGTH 256 -#define LV_TA_CUR_BLINK_TIME 400 /*ms*/ -#endif - -/*Button matrix (dependencies: lv_rect, lv_label)*/ -#define USE_LV_BTNM 1 - -/*Window (dependencies: lv_rect, lv_btn, lv_label, lv_img, lv_page)*/ -#define USE_LV_WIN 1 - -/*Message box (dependencies: lv_rect, lv_btn, lv_label)*/ -#define USE_LV_MBOX 1 -#if USE_LV_MBOX != 0 -#define LV_MBOX_ANIM_TIME 250 /*How fast animate out the message box in auto close. 0: no animation [ms]*/ -#endif - -/*Gauge (dependencies: lv_rect, lv_label, lv_line, misc: trigo)*/ -#define USE_LV_GAUGE 1 - -/*================== - * LV APP SETTINGS - * =================*/ - -/*Enable the application system*/ -#define LV_APP_ENABLE 1 - -#if LV_APP_ENABLE != 0 -#define LV_APP_SC_WIDTH (LV_HOR_RES / 4) /*Shortcut width*/ -#define LV_APP_SC_HEIGHT (LV_VER_RES / 3) /*Shortcut height*/ -#define LV_APP_FONT_SMALL FONT_DEJAVU_20 -#define LV_APP_FONT_MEDIUM LV_FONT_DEFAULT -#define LV_APP_FONT_LARGE FONT_DEJAVU_40 - -/* Internal icons: - * 0: Do not use internal icons (img_close, img_add etc. icons have to be provided) - * 1: Use simple sized icons - * 2: Use double sized icons*/ -#define LV_APP_USE_INTERNAL_ICONS 2 - -/*Enable or disable the internal icons individually*/ -#if LV_APP_USE_INTERNAL_ICONS != 0 -#define USE_IMG_CLOSE 1 -#define USE_IMG_DOWN 1 -#define USE_IMG_DRIVER 1 -#define USE_IMG_FILE 1 -#define USE_IMG_FOLDER 1 -#define USE_IMG_LEFT 1 -#define USE_IMG_OK 1 -#define USE_IMG_RIGHT 1 -#define USE_IMG_UP 1 -#endif - -/*Animation settings*/ -#define LV_APP_EFFECT_OPA 1 /*Enable the opacity in the application style (can be modified)*/ -#define LV_APP_EFFECT_ANIM 1 /*Enable the animation of the applications*/ -#define LV_APP_EFFECT_OPA_ANIM 1 /*Enable the using opacity in the application animations*/ -#define LV_APP_ANIM_WIN 200 /*Animation time in milliseconds (0: turn off animation)*/ -#define LV_APP_ANIM_SC 200 /*Animation time in milliseconds (0: turn off animation)*/ -#define LV_APP_ANIM_NOTICE 300 /*Obsolete, use LV_MBOX_ANIM. */ - -/* App. utility settings */ -#define LV_APP_NOTICE_SHOW_TIME 4000 /*Notices will be shown for this time [ms]*/ -#define LV_APP_NOTICE_MAX_LEN 256 /*Max. number of characters on a notice*/ -/*================== - * LV APP X USAGE - * ================*/ - -#define USE_LV_APP_EXAMPLE 1 - -#define USE_LV_APP_SYSMON 1 -#if USE_LV_APP_SYSMON != 0 -#define LV_APP_SYSMON_REFR_TIME 500 /*[ms]*/ -#define LV_APP_SYSMON_PNUM 64 -#define LV_APP_SYSMON_MEM_WARN (4 * 1024) -#define LV_APP_SYSMON_FRAG_WARN (70) /*[%]*/ -#define LV_APP_SYSMON_DEFRAG_PERIOD (5000) /*[%]*/ -#endif /*USE_LV_APP_SYSMON != 0*/ - -#define USE_LV_APP_TERMINAL 1 -#if USE_LV_APP_TERMINAL != 0 -#define LV_APP_TERMINAL_LENGTH 512 /*Memory of the terminal*/ -#endif /*USE_LV_APP_TERMINAL != 0*/ - -#define USE_LV_APP_FILES 1 -#if USE_LV_APP_FILES != 0 -#define LV_APP_FILES_PAGE_SIZE 8 /*Max. number of files/folder on a page*/ -#define LV_APP_FILES_FN_MAX_LEN 128 -#define LV_APP_FILES_PATH_MAX_LEN 256 -#define LV_APP_FILES_CHUNK_DEF_SIZE 256 -#define LV_APP_FILES_CHUNK_DEF_TIME 100 -#define LV_APP_FILES_CHUNK_MAX_SIZE 1024 -#endif /*USE_LV_APP_FILES != 0*/ -#endif /*LV_APP_ENABLE != 0*/ - -#endif /*LV_CONF_H*/ - -#endif /*Remove this to enable the content*/ - diff --git a/lv_conf_templ.h b/lv_conf_templ.h new file mode 100644 index 000000000..db7c61d39 --- /dev/null +++ b/lv_conf_templ.h @@ -0,0 +1,244 @@ +/** + * @file lv_conf.h + * + */ + +#if 0 /*Remove this to enable the content (Delete the last #endif too!)*/ + +#ifndef LV_CONF_H +#define LV_CONF_H + +/*=================== + Graphical settings + *=====================*/ + +/* Horizontal and vertical resolution of the library. + * Screen resolution multiplied by LV_DOWN_SCALE*/ +#define LV_HOR_RES (320 * LV_DOWNSCALE) +#define LV_VER_RES (240 * LV_DOWNSCALE) +#define LV_DPI (80 * LV_DOWNSCALE) + +/* Buffered rendering: >= LV_DOWNSCALE * LV_HOR_RES or 0 to disable buffering*/ +#define LV_VDB_SIZE (LV_HOR_RES * 30) + +/* Enable antialaiassing + * If enabled everything will half-sized + * Use LV_DOWNSCALE to compensate + * the down scaling effect of antialiassing*/ +#define LV_ANTIALIAS 1 + +/*Set the downscaling value*/ +#define LV_DOWNSCALE (1 << LV_ANTIALIAS) + +#define LV_REFR_PERIOD 40 /*Screen refresh period in milliseconds*/ +#define LV_INV_FIFO_SIZE 32 /*The average number of objects on a screen */ + +/*================= + Misc. setting + *=================*/ +/*Display Input settings*/ +#define LV_DISPI_READ_PERIOD 50 /*Input device read period milliseconds*/ +#define LV_DISPI_TP_MARKER 0 /*Mark the pressed points (Value means marker point size)*/ +#define LV_DISPI_DRAG_LIMIT (10 * LV_DOWNSCALE) /*Drag threshold in pixels */ +#define LV_DISPI_DRAG_THROW 20 /*Drag throw slow-down in [%]. Greater value means faster slow-down */ +#define LV_DISPI_LONG_PRESS_TIME 400 /*Long press time in milliseconds*/ +#define LV_DISPI_LONG_PRESS_REP_TIME 100 /*Repeated trigger period in long press [ms] */ + +/*lv_obj (base object) settings*/ +#define LV_OBJ_FREE_NUM 1 /*Enable the free number attribute*/ +#define LV_OBJ_FREE_P 1 /*Enable the free pointer attribute*/ + +/*Others*/ +#define LV_COLOR_TRANSP COLOR_LIME + +/*================== + * LV OBJ X USAGE + * ================*/ + +/***************** + * Simple object + *****************/ + +/*Label (dependencies: -*/ +#define USE_LV_LABEL 1 +#if USE_LV_LABEL != 0 +#define LV_LABEL_SCROLL_SPEED (25 * LV_DOWNSCALE) /*Hor, or ver. scroll speed (px/sec) in 'LV_LABEL_LONG_SCROLL' mode*/ +#define LV_LABEL_SCROLL_SPEED_VER (10 * LV_DOWNSCALE) /*Ver. scroll speed if hor. scroll is applied too*/ +#define LV_LABEL_SCROLL_PLAYBACK_PAUSE 500 /*Wait before the scroll turns back in ms*/ +#define LV_LABEL_SCROLL_REPEAT_PAUSE 500 /*Wait before the scroll begins again in ms*/ +#endif + +/*Image (dependencies: lv_label (if symbols are enabled) from misc: FSINT, UFS)*/ +#define USE_LV_IMG 1 +#if USE_LV_IMG != 0 +//#define LV_IMG_DEF_WALLPAPER img_square_x1 /*Comment this line to NOT use wallpaper*/ +/* 1: enables to interpret the file names as symbol name + * from symbol_def.h if they begin with a lower case letter. + * (driver letters are always upper case)*/ +#define LV_IMG_ENABLE_SYMBOLS 1 +#if LV_IMG_ENABLE_SYMBOLS != 0 +#define LV_IMG_DEF_SYMBOL_FONT FONT_SYMBOL_30 +#endif /*LV_IMG_ENABLE_SYMBOLS*/ +#endif /*USE_LV_IMG*/ + +/*Line (dependencies: -*/ +#define USE_LV_LINE 1 + +/******************* + * Container object + *******************/ + +/*Container (dependencies: -*/ +#define USE_LV_CONT 1 + +/*Page (dependencies: lv_cont)*/ +#define USE_LV_PAGE 1 + +/*Window (dependencies: lv_cont, lv_btn, lv_label, lv_img, lv_page)*/ +#define USE_LV_WIN 1 + +/************************* + * Data visualizer object + *************************/ + +/*Bar (dependencies: -)*/ +#define USE_LV_BAR 1 + +/*Line meter (dependencies: bar; misc: trigo)*/ +#define USE_LV_LMETER 1 + +/*Gauge (dependencies:bar, lmeter; misc: trigo)*/ +#define USE_LV_GAUGE 1 + +/*Chart (dependencies: -)*/ +#define USE_LV_CHART 1 + +/*LED (dependencies: -)*/ +#define USE_LV_LED 1 + +/*Message box (dependencies: lv_rect, lv_btn, lv_label)*/ +#define USE_LV_MBOX 1 + +/*Text area (dependencies: lv_label, lv_page)*/ +#define USE_LV_TA 1 +#if USE_LV_TA != 0 +#define LV_TA_MAX_LENGTH 256 +#define LV_TA_CUR_BLINK_TIME 400 /*ms*/ +#endif + +/************************* + * User input object + *************************/ + +/*Button (dependencies: lv_cont*/ +#define USE_LV_BTN 1 + +/*Button matrix (dependencies: -)*/ +#define USE_LV_BTNM 1 + +/*Check box (dependencies: lv_btn, lv_label)*/ +#define USE_LV_CB 1 + +/*List (dependencies: lv_page, lv_btn, lv_label, lv_img)*/ +#define USE_LV_LIST 1 + +/*Drop down list (dependencies: lv_page, lv_label)*/ +#define USE_LV_DDLIST 1 + +/*Slider (dependencies: lv_bar)*/ +#define USE_LV_SLIDER 1 + + +/*================== + * LV APP SETTINGS + * =================*/ + +/*Enable the application system*/ +#define LV_APP_ENABLE 0 +#if LV_APP_ENABLE != 0 + +/**************************** + * Basic application settings + *****************************/ +#define LV_APP_DESKTOP 1 /*Create a desktop-like environment*/ + +#define LV_APP_SC_WIDTH (LV_HOR_RES / 4) /*Shortcut width*/ +#define LV_APP_SC_HEIGHT (LV_VER_RES / 3) /*Shortcut height*/ +#define LV_APP_FONT_SMALL FONT_DEJAVU_20 /*A small font*/ +#define LV_APP_FONT_MEDIUM FONT_DEFAULT /*A medium font*/ +#define LV_APP_FONT_LARGE FONT_DEJAVU_40 /*A large font*/ + +/*********************** + * Animation settings + ***********************/ +#define LV_APP_ANIM_WIN 200 /*Animation time of windows [ms] (0: turn off animations)*/ +#define LV_APP_ANIM_DESKTOP 200 /*Animation time the desktop [ms] (0: turn off animations)*/ + +/************************ + * App. utility settings + ************************/ + +/*Notice*/ +#define USE_LV_APP_NOTICE 1 +#if USE_LV_APP_NOTICE != 0 +#define LV_APP_NOTICE_SHOW_TIME 4000 /*Notices will be shown for this time [ms]*/ +#define LV_APP_NOTICE_CLOSE_ANIM_TIME 300 /*Notice close animation time. [ms] 0: no animation */ +#define LV_APP_NOTICE_MAX_NUM 6 /*Max. number of notices*/ +#define LV_APP_NOTICE_MAX_LEN 256 /*Max. number of characters on a notice*/ +#endif + +/*File selector*/ +#define USE_LV_APP_FSEL 1 +#if USE_LV_APP_FSEL != 0 +#define LV_APP_FSEL_PAGE_SIZE 8 /*Max. number of files/folder on a page*/ +#define LV_APP_FSEL_FN_MAX_LEN 32 /*Max file name length*/ +#define LV_APP_FSEL_PATH_MAX_LEN 256 /*Max path length*/ +#endif + +/*Keyboard*/ +#define USE_LV_APP_KB 1 +#if USE_LV_APP_KB != 0 +/*No settings*/ +#endif + +/*================== + * LV APP X USAGE + * ================*/ + +/*Example application*/ +#define USE_LV_APP_EXAMPLE 1 + +/*System monitor*/ +#define USE_LV_APP_SYSMON 1 +#if USE_LV_APP_SYSMON != 0 +#define LV_APP_SYSMON_REFR_TIME 500 /*Mem. and CPU usage read period [ms]*/ +#define LV_APP_SYSMON_PNUM 64 /*Number of point on the window's chart*/ +#define LV_APP_SYSMON_MEM_WARN (2 * 1024) /*Make a notice less then this remaining memory [bytes]*/ +#define LV_APP_SYSMON_FRAG_WARN (70) /*Make a notice above this fragmentation level [%]*/ +#define LV_APP_SYSMON_DEFRAG_PERIOD (5000) /*Auto-defrag period [ms]*/ +#endif /*USE_LV_APP_SYSMON != 0*/ + +/*Terminal*/ +#define USE_LV_APP_TERMINAL 1 +#if USE_LV_APP_TERMINAL != 0 +#define LV_APP_TERMINAL_LENGTH 512 /*Memory of the terminal [character number]*/ +#endif /*USE_LV_APP_TERMINAL != 0*/ + +/*Files*/ +#define USE_LV_APP_FILES 1 +#if USE_LV_APP_FILES != 0 +#define LV_APP_FILES_PAGE_SIZE 8 /*Max. number of files/folder on a page*/ +#define LV_APP_FILES_FN_MAX_LEN 32 /*Max file name length*/ +#define LV_APP_FILES_PATH_MAX_LEN 256 /*Max path length*/ +#define LV_APP_FILES_CHUNK_DEF_SIZE 256 /*Chunk size when sending a file*/ +#define LV_APP_FILES_CHUNK_DEF_TIME 100 /*Delay between sent chunks*/ +#define LV_APP_FILES_CHUNK_MAX_SIZE 1024 /*Max chunk size when the user sets it*/ +#endif /*USE_LV_APP_FILES != 0*/ + +#endif /*LV_APP_ENABLE != 0*/ + +#endif /*LV_CONF_H*/ + + +#endif /*Remove this to enable the content*/ + diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index 8734b4638..baf82a015 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -1,22 +1,24 @@ /** - * @file lv_draw_img.c + * @file lv_draw.c * */ /********************* * INCLUDES *********************/ -#include +#include #include "lv_conf.h" #include #include -#include "lvgl/lv_misc/text.h" +#include "misc/gfx/text.h" #include "lv_draw.h" #include "misc/fs/fsint.h" #include "misc/math/math_base.h" #include "lv_draw_rbasic.h" #include "lv_draw_vbasic.h" +#include "misc/fs/ufs/ufs.h" +#include "../lv_objx/lv_img.h" /********************* * DEFINES @@ -40,42 +42,38 @@ typedef enum /********************** * STATIC PROTOTYPES **********************/ -#if USE_LV_RECT != 0 -static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p, opa_t opa); -static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p, opa_t opa); -static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p, opa_t opa); -static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p, opa_t opa); -static uint16_t lv_draw_rect_radius_corr(uint16_t r, cord_t w, cord_t h); -#endif /*USE_LV_RECT != 0*/ +static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); +static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); +static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); +static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); +static void lv_draw_rect_shadow(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); +static void lv_draw_cont_shadow_full(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); +static void lv_draw_cont_shadow_bottom(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); +static void lv_draw_cont_shadow_full_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style, const opa_t * map); + +static uint16_t lv_draw_cont_radius_corr(uint16_t r, cord_t w, cord_t h); + + +#if USE_LV_TRIANGLE != 0 +static void point_swap(point_t * p1, point_t * p2); +#endif /********************** * STATIC VARIABLES **********************/ #if LV_VDB_SIZE != 0 +static void (*px_fp)(cord_t x, cord_t y, const area_t * mask_p, color_t color, opa_t opa) = lv_vpx; static void (*fill_fp)(const area_t * cords_p, const area_t * mask_p, color_t color, opa_t opa) = lv_vfill; static void (*letter_fp)(const point_t * pos_p, const area_t * mask_p, const font_t * font_p, uint8_t letter, color_t color, opa_t opa) = lv_vletter; static void (*map_fp)(const area_t * cords_p, const area_t * mask_p, const color_t * map_p, opa_t opa, bool transp, bool upscale, color_t recolor, opa_t recolor_opa) = lv_vmap; #else +static void (*px_fp)(cord_t x, cord_t y, const area_t * mask_p, color_t color, opa_t opa) = lv_rpx; static void (*fill_fp)(const area_t * cords_p, const area_t * mask_p, color_t color, opa_t opa) = lv_rfill; static void (*letter_fp)(const point_t * pos_p, const area_t * mask_p, const font_t * font_p, uint8_t letter, color_t color, opa_t opa) = lv_rletter; static void (*map_fp)(const area_t * cords_p, const area_t * mask_p, const color_t * map_p, opa_t opa, bool transp, bool upscale, color_t recolor, opa_t recolor_opa) = lv_rmap; #endif -#if USE_LV_IMG != 0 && USE_FSINT != 0 && USE_UFS != 0 -static lv_rects_t lv_img_no_pic_rects = { - .objs.color = COLOR_BLACK, .gcolor = COLOR_BLACK, - .bcolor = COLOR_RED, .bwidth = 2 * LV_DOWNSCALE, .bopa = 100, - .round = 0, .empty = 0 -}; - -static lv_labels_t lv_img_no_pic_labels = { - .font = LV_FONT_DEFAULT, .objs.color = COLOR_WHITE, - .letter_space = 1 * LV_DOWNSCALE, .line_space = 1 * LV_DOWNSCALE, - .mid = 1, -}; -#endif - /********************** * MACROS **********************/ @@ -84,67 +82,173 @@ static lv_labels_t lv_img_no_pic_labels = { * GLOBAL FUNCTIONS **********************/ -#if USE_LV_RECT != 0 /** * Draw a rectangle * @param cords_p the coordinates of the rectangle * @param mask_p the rectangle will be drawn only in this mask - * @param rects_p pointer to a rectangle style - * @param opa the opacity of the rectangle (0..255) + * @param style_p pointer to a style */ -void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, - const lv_rects_t * rects_p, opa_t opa) +void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p) { if(area_get_height(cords_p) < 1 || area_get_width(cords_p) < 1) return; - if(rects_p->empty == 0){ - lv_draw_rect_main_mid(cords_p, mask_p, rects_p, opa); + if(style_p->swidth != 0) { + lv_draw_rect_shadow(cords_p, mask_p, style_p); + } - if(rects_p->round != 0) { - lv_draw_rect_main_corner(cords_p, mask_p, rects_p, opa); + if(style_p->empty == 0){ + lv_draw_rect_main_mid(cords_p, mask_p, style_p); + + if(style_p->radius != 0) { + lv_draw_rect_main_corner(cords_p, mask_p, style_p); } } - if(rects_p->bwidth != 0) { - lv_draw_rect_border_straight(cords_p, mask_p, rects_p, opa); + if(style_p->bwidth != 0) { + lv_draw_rect_border_straight(cords_p, mask_p, style_p); - if(rects_p->round != 0) { - lv_draw_rect_border_corner(cords_p, mask_p, rects_p, opa); + if(style_p->radius != 0) { + lv_draw_rect_border_corner(cords_p, mask_p, style_p); } } } -#endif /*USE_LV_RECT != 0*/ -#if USE_LV_LABEL != 0 +#if USE_LV_TRIANGE != 0 +/** + * + * @param points pointer to an array with 3 points + * @param mask_p the triangle will be drawn only in this mask + * @param color color of the triangle + */ +void lv_draw_triangle(const point_t * points, const area_t * mask_p, color_t color) +{ + point_t tri[3]; + + memcpy(tri, points, sizeof(tri)); + + /*Sort the vertices according to their y coordinate (0: y max, 1: y mid, 2:y min)*/ + if(tri[1].y < tri[0].y) point_swap(&tri[1], &tri[0]); + if(tri[2].y < tri[1].y) point_swap(&tri[2], &tri[1]); + if(tri[1].y < tri[0].y) point_swap(&tri[1], &tri[0]); + + /*Return is the triangle is degenerated*/ + if(tri[0].x == tri[1].x && tri[0].y == tri[1].y) return; + if(tri[1].x == tri[2].x && tri[1].y == tri[2].y) return; + if(tri[0].x == tri[2].x && tri[0].y == tri[2].y) return; + + if(tri[0].x == tri[1].x && tri[1].x == tri[2].x) return; + if(tri[0].y == tri[1].y && tri[1].y == tri[2].y) return; + + /*Draw the triangle*/ + point_t edge1; + cord_t dx1 = MATH_ABS(tri[0].x - tri[1].x); + cord_t sx1 = tri[0].x < tri[1].x ? 1 : -1; + cord_t dy1 = MATH_ABS(tri[0].y - tri[1].y); + cord_t sy1 = tri[0].y < tri[1].y ? 1 : -1; + cord_t err1 = (dx1 > dy1 ? dx1 : -dy1) / 2; + cord_t err_tmp1; + + point_t edge2; + cord_t dx2 = MATH_ABS(tri[0].x - tri[2].x); + cord_t sx2 = tri[0].x < tri[2].x ? 1 : -1; + cord_t dy2 = MATH_ABS(tri[0].y - tri[2].y); + cord_t sy2 = tri[0].y < tri[2].y ? 1 : -1; + cord_t err2 = (dx1 > dy2 ? dx2 : -dy2) / 2; + cord_t err_tmp2; + + cord_t y1_tmp; + cord_t y2_tmp; + + edge1.x = tri[0].x; + edge1.y = tri[0].y; + edge2.x = tri[0].x; + edge2.y = tri[0].y; + area_t act_area; + area_t draw_area; + + while(1) { + act_area.x1 = edge1.x; + act_area.x2 = edge2.x ; + act_area.y1 = edge1.y; + act_area.y2 = edge2.y ; + + + draw_area.x1 = MATH_MIN(act_area.x1, act_area.x2); + draw_area.x2 = MATH_MAX(act_area.x1, act_area.x2); + draw_area.y1 = MATH_MIN(act_area.y1, act_area.y2); + draw_area.y2 = MATH_MAX(act_area.y1, act_area.y2); + draw_area.x2--; /*Do not draw most right pixel because it will be drawn by the adjacent triangle*/ + fill_fp(&draw_area, mask_p, color, OPA_50); + + /*Calc. the next point of edge1*/ + y1_tmp = edge1.y; + do { + if (edge1.x == tri[1].x && edge1.y == tri[1].y) { + + dx1 = MATH_ABS(tri[1].x - tri[2].x); + sx1 = tri[1].x < tri[2].x ? 1 : -1; + dy1 = MATH_ABS(tri[1].y - tri[2].y); + sy1 = tri[1].y < tri[2].y ? 1 : -1; + err1 = (dx1 > dy1 ? dx1 : -dy1) / 2; + } + else if (edge1.x == tri[2].x && edge1.y == tri[2].y) return; + err_tmp1 = err1; + if (err_tmp1 >-dx1) { + err1 -= dy1; + edge1.x += sx1; + } + if (err_tmp1 < dy1) { + err1 += dx1; + edge1.y += sy1; + } + } while(edge1.y == y1_tmp); + + /*Calc. the next point of edge2*/ + y2_tmp = edge2.y; + do { + if (edge2.x == tri[2].x && edge2.y == tri[2].y) return; + err_tmp2 = err2; + if (err_tmp2 > -dx2) { + err2 -= dy2; + edge2.x += sx2; + } + if (err_tmp2 < dy2) { + err2 += dx2; + edge2.y += sy2; + } + } while(edge2.y == y2_tmp); + } +} +#endif + /** * Write a text * @param cords_p coordinates of the label * @param mask_p the label will be drawn only in this area - * @param labels_p pointer to a label style - * @param opa opacity of the text (0..255) + * @param style pointer to a style * @param txt 0 terminated text to write * @param flag settings for the text from 'txt_flag_t' enum */ -void lv_draw_label(const area_t * cords_p,const area_t * mask_p, - const lv_labels_t * style, opa_t opa, const char * txt, txt_flag_t flag) +void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_style_t * style, + const char * txt, txt_flag_t flag) { - const font_t * font_p = font_get(style->font); + const font_t * font = style->font; cord_t w = area_get_width(cords_p); /*Init variables for the first line*/ cord_t line_length = 0; uint32_t line_start = 0; - uint32_t line_end = txt_get_next_line(txt, font_p, style->letter_space, w, flag); + uint32_t line_end = txt_get_next_line(txt, font, style->letter_space, w, flag); point_t pos; pos.x = cords_p->x1; pos.y = cords_p->y1; /*Align the line to middle if enabled*/ - if(style->mid != 0) { + if(style->txt_align == LV_TXT_ALIGN_MID) { line_length = txt_get_width(&txt[line_start], line_end - line_start, - font_p, style->letter_space, flag); + font, style->letter_space, flag); pos.x += (w - line_length) / 2; } @@ -159,7 +263,7 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, cmd_state = CMD_STATE_WAIT; for(i = line_start; i < line_end; i++) { - /*Handle the recolor command*/ + /*Handle the re-color command*/ if((flag & TXT_FLAG_RECOLOR) != 0) { if(txt[i] == TXT_RECOLOR_CMD) { if(cmd_state == CMD_STATE_WAIT) { /*Start char*/ @@ -179,14 +283,14 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, if(txt[i] == ' ') { /*Get the parameter*/ if(i - par_start == LABEL_RECOLOR_PAR_LENGTH) { - char buf[LABEL_RECOLOR_PAR_LENGTH]; + char buf[LABEL_RECOLOR_PAR_LENGTH + 1]; memcpy(buf, &txt[par_start], LABEL_RECOLOR_PAR_LENGTH); buf[LABEL_RECOLOR_PAR_LENGTH] = '\0'; int r,g,b; sscanf(buf, "%02x%02x%02x", &r, &g, &b); recolor = COLOR_MAKE(r, g, b); } else { - recolor.full = style->objs.color.full; + recolor.full = style->ccolor.full; } cmd_state = CMD_STATE_IN; /*After the parameter the text is in the command*/ } @@ -194,30 +298,27 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, } } - if(cmd_state == CMD_STATE_IN) letter_fp(&pos, mask_p, font_p, txt[i], recolor, opa); - else letter_fp(&pos, mask_p, font_p, txt[i], style->objs.color, opa); - pos.x += font_get_width(font_p, txt[i]) + style->letter_space; + if(cmd_state == CMD_STATE_IN) letter_fp(&pos, mask_p, font, txt[i], recolor, style->opa); + else letter_fp(&pos, mask_p, font, txt[i], style->ccolor, style->opa); + pos.x += (font_get_width(font, txt[i]) >> FONT_ANTIALIAS) + style->letter_space; } /*Go to next line*/ line_start = line_end; - line_end += txt_get_next_line(&txt[line_start], font_p, style->letter_space, w, flag); + line_end += txt_get_next_line(&txt[line_start], font, style->letter_space, w, flag); pos.x = cords_p->x1; /*Align to middle*/ - if(style->mid != 0) { + if(style->txt_align == LV_TXT_ALIGN_MID) { line_length = txt_get_width(&txt[line_start], line_end - line_start, - font_p, style->letter_space, flag); + font, style->letter_space, flag); pos.x += (w - line_length) / 2; } /*Go the next line position*/ - pos.y += font_get_height(font_p); + pos.y += font_get_height(font) >> FONT_ANTIALIAS; pos.y += style->line_space; } } -#endif /* USE_LV_LABEL != 0*/ - -#if USE_LV_IMG != 0 && USE_FSINT != 0 && USE_UFS != 0 /** * Draw an image * @param cords_p the coordinates of the image @@ -226,11 +327,11 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, * @param opa opacity of the image (0..255) */ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, - const lv_imgs_t * imgs_p, opa_t opa, const char * fn) + const lv_style_t * style, const char * fn) { if(fn == NULL) { - lv_draw_rect(cords_p, mask_p, &lv_img_no_pic_rects, opa); - lv_draw_label(cords_p, mask_p,&lv_img_no_pic_labels, opa, "No data", TXT_FLAG_NONE); + lv_draw_rect(cords_p, mask_p, lv_style_get(LV_STYLE_PLAIN, NULL)); + lv_draw_label(cords_p, mask_p, lv_style_get(LV_STYLE_PLAIN, NULL), "No data", TXT_FLAG_NONE); } else { fs_file_t file; fs_res_t res = fs_open(&file, fn, FS_MODE_RD); @@ -246,7 +347,6 @@ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, cord_t row; area_t act_area; - area_t mask_sub; bool union_ok; union_ok = area_union(&mask_sub, mask_p, cords_p); @@ -285,12 +385,31 @@ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, act_area.y1 &= ~(cord_t)(ds_num - 1) ; act_area.y2 = act_area.y1 + ds_num - 1; uint32_t act_pos; - - color_t buf[LV_HOR_RES]; + bool const_data = false; + if(fn[0] == UFS_LETTER) { + if(((ufs_file_t*)file.file_d)->ent->const_data != 0) { + const_data = true; + } + } + for(row = mask_sub.y1; row <= mask_sub.y2; row += ds_num) { - res = fs_read(&file, buf, useful_data, &br); - map_fp(&act_area, &mask_sub, buf, opa, header.transp, upscale, - imgs_p->objs.color, imgs_p->recolor_opa); + + /*Get and use the pointer of const data in program memory*/ + if(const_data != false) { + uint8_t * f_data = ((ufs_file_t*)file.file_d)->ent->data_d; + f_data += ((ufs_file_t*)file.file_d)->rwp; + ((ufs_file_t*)file.file_d)->rwp += useful_data; + map_fp(&act_area, &mask_sub, (void*)f_data , style->opa, header.transp, upscale, + style->ccolor, style->img_recolor); + } + /*Or read the NOT const files normally*/ + else { + color_t buf[LV_HOR_RES]; + res = fs_read(&file, buf, useful_data, &br); + map_fp(&act_area, &mask_sub, buf, style->opa, header.transp, upscale, + style->ccolor, style->img_recolor); + } + fs_tell(&file, &act_pos); fs_seek(&file, act_pos + next_row); act_area.y1 += ds_num; @@ -301,28 +420,24 @@ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, fs_close(&file); if(res != FS_RES_OK) { - lv_draw_rect(cords_p, mask_p, &lv_img_no_pic_rects, opa); - lv_draw_label(cords_p, mask_p,&lv_img_no_pic_labels, opa, fn, TXT_FLAG_NONE); + lv_draw_rect(cords_p, mask_p, lv_style_get(LV_STYLE_PLAIN, NULL)); + lv_draw_label(cords_p, mask_p, lv_style_get(LV_STYLE_PLAIN, NULL), "No data", TXT_FLAG_NONE); } } } -#endif /*USE_LV_IMG != 0 && USE_FSINT != 0 && USE_UFS != 0*/ - -#if USE_LV_LINE != 0 /** * Draw a line * @param p1 first point of the line * @param p2 second point of the line * @param mask_pthe line will be drawn only on this area * @param lines_p pointer to a line style - * @param opa opacity of the line (0..255) */ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, - const lv_lines_t * lines_p, opa_t opa) + const lv_style_t * style) { - if(lines_p->width == 0) return; + if(style->line_width == 0) return; if(p1->x == p2->x && p1->y == p2->y) return; @@ -358,7 +473,7 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, } /*Make the correction on lie width*/ - width = ((lines_p->width - 1) * width_corr_array[wcor]) >> LINE_WIDTH_CORR_SHIFT; + width = ((style->line_width - 1) * width_corr_array[wcor]) >> LINE_WIDTH_CORR_SHIFT; width_half = width >> 1; width_1 = width & 0x1 ? 1 : 0; @@ -377,7 +492,7 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, draw_area.x2 = MATH_MAX(act_area.x1, act_area.x2); draw_area.y1 = MATH_MIN(act_area.y1, act_area.y2); draw_area.y2 = MATH_MAX(act_area.y1, act_area.y2); - fill_fp(&draw_area, mask_p, lines_p->objs.color, opa); + fill_fp(&draw_area, mask_p, style->ccolor, style->opa); } if (hor == false && last_x != act_point.x) { area_t act_area; @@ -393,7 +508,7 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, draw_area.x2 = MATH_MAX(act_area.x1, act_area.x2); draw_area.y1 = MATH_MIN(act_area.y1, act_area.y2); draw_area.y2 = MATH_MAX(act_area.y1, act_area.y2); - fill_fp(&draw_area, mask_p, lines_p->objs.color, opa); + fill_fp(&draw_area, mask_p, style->ccolor, style->opa); } /*Calc. the next point of the line*/ @@ -421,7 +536,7 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, draw_area.x2 = MATH_MAX(act_area.x1, act_area.x2); draw_area.y1 = MATH_MIN(act_area.y1, act_area.y2); draw_area.y2 = MATH_MAX(act_area.y1, act_area.y2); - fill_fp(&draw_area, mask_p, lines_p->objs.color, opa); + fill_fp(&draw_area, mask_p, style->ccolor, style->opa); } if (hor == false) { area_t act_area; @@ -435,34 +550,33 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, draw_area.x2 = MATH_MAX(act_area.x1, act_area.x2); draw_area.y1 = MATH_MIN(act_area.y1, act_area.y2); draw_area.y2 = MATH_MAX(act_area.y1, act_area.y2); - fill_fp(&draw_area, mask_p, lines_p->objs.color, opa); + fill_fp(&draw_area, mask_p, style->ccolor, style->opa); } } -#endif /*USE_LV_LINE != 0*/ + /********************** * STATIC FUNCTIONS **********************/ -#if USE_LV_RECT != 0 /** * Draw the middle part (rectangular) of a rectangle * @param cords_p the coordinates of the original rectangle * @param mask_p the rectangle will be drawn only on this area * @param rects_p pointer to a rectangle style - * @param opa opacity of the rectangle (0..255) */ -static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p, opa_t opa) +static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) { - uint16_t radius = rects_p->round; + uint16_t radius = style->radius; - color_t main_color = rects_p->objs.color; - color_t grad_color = rects_p->gcolor; + color_t mcolor = style->mcolor; + color_t gcolor = style->gcolor; uint8_t mix; + opa_t opa = style->opa; cord_t height = area_get_height(cords_p); cord_t width = area_get_width(cords_p); - radius = lv_draw_rect_radius_corr(radius, width, height); + radius = lv_draw_cont_radius_corr(radius, width, height); /*If the radius is too big then there is no body*/ if(radius > height / 2) return; @@ -471,10 +585,10 @@ static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, work_area.x1 = cords_p->x1; work_area.x2 = cords_p->x2; - if(main_color.full == grad_color.full) { + if(mcolor.full == gcolor.full) { work_area.y1 = cords_p->y1 + radius; work_area.y2 = cords_p->y2 - radius; - fill_fp(&work_area, mask_p, main_color, opa); + fill_fp(&work_area, mask_p, mcolor, opa); } else { cord_t row; @@ -489,7 +603,7 @@ static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, work_area.y1 = row; work_area.y2 = row; mix = (uint32_t)((uint32_t)(cords_p->y2 - work_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&work_area, mask_p, act_color, opa); } @@ -500,20 +614,20 @@ static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, * @param cords_p the coordinates of the original rectangle * @param mask_p the rectangle will be drawn only on this area * @param rects_p pointer to a rectangle style - * @param opa opacity of the rectangle (0..255) */ -static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p, opa_t opa) +static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p) { - uint16_t radius = rects_p->round; + uint16_t radius = style_p->radius; - color_t main_color = rects_p->objs.color; - color_t grad_color = rects_p->gcolor; + color_t mcolor = style_p->mcolor; + color_t gcolor = style_p->gcolor; color_t act_color; + opa_t opa = style_p->opa; uint8_t mix; cord_t height = area_get_height(cords_p); cord_t width = area_get_width(cords_p); - radius = lv_draw_rect_radius_corr(radius, width, height); + radius = lv_draw_cont_radius_corr(radius, width, height); point_t lt_origo; /*Left Top origo*/ point_t lb_origo; /*Left Bottom origo*/ @@ -601,25 +715,25 @@ static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask /*Draw the areas which are not disabled*/ if(edge_top_refr != 0){ mix = (uint32_t)((uint32_t)(cords_p->y2 - edge_top_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&edge_top_area, mask_p, act_color, opa); } if(mid_top_refr != 0) { mix = (uint32_t)((uint32_t)(cords_p->y2 - mid_top_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&mid_top_area, mask_p, act_color, opa); } if(mid_bot_refr != 0) { mix = (uint32_t)((uint32_t)(cords_p->y2 - mid_bot_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&mid_bot_area, mask_p, act_color, opa); } if(edge_bot_refr != 0) { mix = (uint32_t)((uint32_t)(cords_p->y2 - edge_bot_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&edge_bot_area, mask_p, act_color, opa); } /*Save the current coordinates*/ @@ -647,20 +761,20 @@ static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask } mix = (uint32_t)((uint32_t)(cords_p->y2 - edge_top_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&edge_top_area, mask_p, act_color, opa); if(edge_top_area.y1 != mid_top_area.y1) { mix = (uint32_t)((uint32_t)(cords_p->y2 - mid_top_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&mid_top_area, mask_p, act_color, opa); } mix = (uint32_t)((uint32_t)(cords_p->y2 - mid_bot_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&mid_bot_area, mask_p, act_color, opa); if(edge_bot_area.y1 != mid_bot_area.y1) { mix = (uint32_t)((uint32_t)(cords_p->y2 - edge_bot_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&edge_bot_area, mask_p, act_color, opa); } @@ -671,28 +785,27 @@ if(edge_top_area.y1 != mid_top_area.y1) { * @param cords_p the coordinates of the original rectangle * @param mask_p the rectangle will be drawn only on this area * @param rects_p pointer to a rectangle style - * @param opa opacity of the rectangle (0..255) */ -static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p, opa_t opa) +static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p) { - uint16_t radius = rects_p->round; + uint16_t radius = style_p->radius; cord_t width = area_get_width(cords_p); cord_t height = area_get_height(cords_p); - uint16_t b_width = rects_p->bwidth; - opa_t b_opa = (uint16_t)((uint16_t) opa * rects_p->bopa) / 100; + uint16_t bwidth = style_p->bwidth; + opa_t bopa = (uint16_t)((uint16_t) style_p->opa * style_p->bopa) >> 8; area_t work_area; cord_t length_corr = 0; cord_t corner_size = 0; /*the 0 px border width drawn as 1 px, so decrement the b_width*/ - b_width--; + bwidth--; - radius = lv_draw_rect_radius_corr(radius, width, height); + radius = lv_draw_cont_radius_corr(radius, width, height); - if(radius < b_width) { - length_corr = b_width - radius; - corner_size = b_width; + if(radius < bwidth) { + length_corr = bwidth - radius; + corner_size = bwidth; } else { corner_size = radius; } @@ -700,57 +813,57 @@ static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * /* Modify the corner_size if corner is drawn */ corner_size ++; - color_t b_color = rects_p->bcolor; + color_t b_color = style_p->bcolor; /*Left border*/ work_area.x1 = cords_p->x1; - work_area.x2 = work_area.x1 + b_width; + work_area.x2 = work_area.x1 + bwidth; work_area.y1 = cords_p->y1 + corner_size; work_area.y2 = cords_p->y2 - corner_size; - fill_fp(&work_area, mask_p, b_color, b_opa); + fill_fp(&work_area, mask_p, b_color, bopa); /*Right border*/ work_area.x2 = cords_p->x2; - work_area.x1 = work_area.x2 - b_width; - fill_fp(&work_area, mask_p, b_color, b_opa); + work_area.x1 = work_area.x2 - bwidth; + fill_fp(&work_area, mask_p, b_color, bopa); /*Upper border*/ work_area.x1 = cords_p->x1 + corner_size - length_corr; work_area.x2 = cords_p->x2 - corner_size + length_corr; work_area.y1 = cords_p->y1; - work_area.y2 = cords_p->y1 + b_width; - fill_fp(&work_area, mask_p, b_color, b_opa); + work_area.y2 = cords_p->y1 + bwidth; + fill_fp(&work_area, mask_p, b_color, bopa); /*Lower border*/ work_area.y2 = cords_p->y2; - work_area.y1 = work_area.y2 - b_width; - fill_fp(&work_area, mask_p, b_color, b_opa); + work_area.y1 = work_area.y2 - bwidth; + fill_fp(&work_area, mask_p, b_color, bopa); /*Draw the a remaining rectangles if the radius is smaller then b_width */ if(length_corr != 0) { work_area.x1 = cords_p->x1; work_area.x2 = cords_p->x1 + radius; work_area.y1 = cords_p->y1 + radius + 1; - work_area.y2 = cords_p->y1 + b_width; - fill_fp(&work_area, mask_p, b_color, b_opa); + work_area.y2 = cords_p->y1 + bwidth; + fill_fp(&work_area, mask_p, b_color, bopa); work_area.x1 = cords_p->x2 - radius; work_area.x2 = cords_p->x2; work_area.y1 = cords_p->y1 + radius + 1; - work_area.y2 = cords_p->y1 + b_width; - fill_fp(&work_area, mask_p, b_color, b_opa); + work_area.y2 = cords_p->y1 + bwidth; + fill_fp(&work_area, mask_p, b_color, bopa); work_area.x1 = cords_p->x1; work_area.x2 = cords_p->x1 + radius; - work_area.y1 = cords_p->y2 - b_width; + work_area.y1 = cords_p->y2 - bwidth; work_area.y2 = cords_p->y2 - radius - 1; - fill_fp(&work_area, mask_p, b_color, b_opa); + fill_fp(&work_area, mask_p, b_color, bopa); work_area.x1 = cords_p->x2 - radius; work_area.x2 = cords_p->x2; - work_area.y1 = cords_p->y2 - b_width; + work_area.y1 = cords_p->y2 - bwidth; work_area.y2 = cords_p->y2 - radius - 1; - fill_fp(&work_area, mask_p, b_color, b_opa); + fill_fp(&work_area, mask_p, b_color, bopa); } /*If radius == 0 one px on the corners are not drawn*/ @@ -759,25 +872,25 @@ static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * work_area.x2 = cords_p->x1; work_area.y1 = cords_p->y1; work_area.y2 = cords_p->y1; - fill_fp(&work_area, mask_p, b_color, b_opa); + fill_fp(&work_area, mask_p, b_color, bopa); work_area.x1 = cords_p->x2; work_area.x2 = cords_p->x2; work_area.y1 = cords_p->y1; work_area.y2 = cords_p->y1; - fill_fp(&work_area, mask_p, b_color, b_opa); + fill_fp(&work_area, mask_p, b_color, bopa); work_area.x1 = cords_p->x1; work_area.x2 = cords_p->x1; work_area.y1 = cords_p->y2; work_area.y2 = cords_p->y2; - fill_fp(&work_area, mask_p, b_color, b_opa); + fill_fp(&work_area, mask_p, b_color, bopa); work_area.x1 = cords_p->x2; work_area.x2 = cords_p->x2; work_area.y1 = cords_p->y2; work_area.y2 = cords_p->y2; - fill_fp(&work_area, mask_p, b_color, b_opa); + fill_fp(&work_area, mask_p, b_color, bopa); } } @@ -789,20 +902,20 @@ static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * * @param rects_p pointer to a rectangle style * @param opa opacity of the rectangle (0..255) */ -static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p, opa_t opa) +static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) { - uint16_t radius = rects_p->round; - uint16_t b_width = rects_p->bwidth; - color_t b_color = rects_p->bcolor; - opa_t b_opa = (uint16_t)((uint16_t) opa * rects_p->bopa ) / 100; + uint16_t radius = style->radius; + uint16_t bwidth = style->bwidth; + color_t bcolor = style->bcolor; + opa_t bopa = (uint16_t)((uint16_t) style->opa * style->bopa ) >> 8; - /*0 px border width drawn as 1 px, so decrement the b_width*/ - b_width--; + /*0 px border width drawn as 1 px, so decrement the bwidth*/ + bwidth--; cord_t width = area_get_width(cords_p); cord_t height = area_get_height(cords_p); - radius = lv_draw_rect_radius_corr(radius, width, height); + radius = lv_draw_cont_radius_corr(radius, width, height); point_t lt_origo; /*Left Top origo*/ point_t lb_origo; /*Left Bottom origo*/ @@ -827,7 +940,7 @@ static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * ma point_t cir_in; cord_t tmp_in; - cord_t radius_in = radius - b_width; + cord_t radius_in = radius - bwidth; if(radius_in < 0){ radius_in = 0; @@ -855,26 +968,26 @@ static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * ma circ_area.x2 = rb_origo.x + CIRC_OCT1_X(cir_out); circ_area.y1 = rb_origo.y + CIRC_OCT1_Y(cir_out); circ_area.y2 = rb_origo.y + CIRC_OCT1_Y(cir_out); - fill_fp(&circ_area, mask_p, b_color, b_opa); + fill_fp(&circ_area, mask_p, bcolor, bopa); circ_area.x1 = rb_origo.x + CIRC_OCT2_X(cir_out); circ_area.x2 = rb_origo.x + CIRC_OCT2_X(cir_out); circ_area.y1 = rb_origo.y + CIRC_OCT2_Y(cir_out)- act_w1; circ_area.y2 = rb_origo.y + CIRC_OCT2_Y(cir_out); - fill_fp(&circ_area, mask_p, b_color, b_opa); + fill_fp(&circ_area, mask_p, bcolor, bopa); /*Draw the octets to the left bottom corner*/ circ_area.x1 = lb_origo.x + CIRC_OCT3_X(cir_out); circ_area.x2 = lb_origo.x + CIRC_OCT3_X(cir_out); circ_area.y1 = lb_origo.y + CIRC_OCT3_Y(cir_out) - act_w2; circ_area.y2 = lb_origo.y + CIRC_OCT3_Y(cir_out); - fill_fp(&circ_area, mask_p, b_color, b_opa); + fill_fp(&circ_area, mask_p, bcolor, bopa); circ_area.x1 = lb_origo.x + CIRC_OCT4_X(cir_out); circ_area.x2 = lb_origo.x + CIRC_OCT4_X(cir_out) + act_w1; circ_area.y1 = lb_origo.y + CIRC_OCT4_Y(cir_out); circ_area.y2 = lb_origo.y + CIRC_OCT4_Y(cir_out); - fill_fp(&circ_area, mask_p, b_color, b_opa); + fill_fp(&circ_area, mask_p, bcolor, bopa); /*Draw the octets to the left top corner*/ /*Don't draw if the lines are common in the middle*/ @@ -883,21 +996,21 @@ static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * ma circ_area.x2 = lt_origo.x + CIRC_OCT5_X(cir_out) + act_w2; circ_area.y1 = lt_origo.y + CIRC_OCT5_Y(cir_out); circ_area.y2 = lt_origo.y + CIRC_OCT5_Y(cir_out); - fill_fp(&circ_area, mask_p, b_color, b_opa); + fill_fp(&circ_area, mask_p, bcolor, bopa); } circ_area.x1 = lt_origo.x + CIRC_OCT6_X(cir_out); circ_area.x2 = lt_origo.x + CIRC_OCT6_X(cir_out); circ_area.y1 = lt_origo.y + CIRC_OCT6_Y(cir_out); circ_area.y2 = lt_origo.y + CIRC_OCT6_Y(cir_out) + act_w1; - fill_fp(&circ_area, mask_p, b_color, b_opa); + fill_fp(&circ_area, mask_p, bcolor, bopa); /*Draw the octets to the right top corner*/ circ_area.x1 = rt_origo.x + CIRC_OCT7_X(cir_out); circ_area.x2 = rt_origo.x + CIRC_OCT7_X(cir_out); circ_area.y1 = rt_origo.y + CIRC_OCT7_Y(cir_out); circ_area.y2 = rt_origo.y + CIRC_OCT7_Y(cir_out) + act_w2; - fill_fp(&circ_area, mask_p, b_color, b_opa); + fill_fp(&circ_area, mask_p, bcolor, bopa); /*Don't draw if the lines are common in the middle*/ if(rb_origo.y + CIRC_OCT1_Y(cir_out) > rt_origo.y + CIRC_OCT8_Y(cir_out)) { @@ -905,7 +1018,7 @@ static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * ma circ_area.x2 = rt_origo.x + CIRC_OCT8_X(cir_out); circ_area.y1 = rt_origo.y + CIRC_OCT8_Y(cir_out); circ_area.y2 = rt_origo.y + CIRC_OCT8_Y(cir_out); - fill_fp(&circ_area, mask_p, b_color, b_opa); + fill_fp(&circ_area, mask_p, bcolor, bopa); } circ_next(&cir_out, &tmp_out); @@ -918,8 +1031,305 @@ static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * ma } } +/** + * Draw a shadow + * @param rect pointer to rectangle object + * @param mask pointer to a mask area (from the design functions) + */ +static void lv_draw_rect_shadow(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) +{ + /* If mask is in the middle of cords do not draw shadow*/ + cord_t radius = style->radius; + cord_t width = area_get_width(cords_p); + cord_t height = area_get_height(cords_p); + radius = lv_draw_cont_radius_corr(radius, width, height); + area_t area_tmp; -static uint16_t lv_draw_rect_radius_corr(uint16_t r, cord_t w, cord_t h) + /*Check horizontally without radius*/ + area_cpy(&area_tmp, cords_p); + area_tmp.x1 += radius; + area_tmp.x2 -= radius; + if(area_is_in(mask_p, &area_tmp) != false) return; + + /*Check vertically without radius*/ + area_cpy(&area_tmp, cords_p); + area_tmp.y1 += radius; + area_tmp.y2 -= radius; + if(area_is_in(mask_p, &area_tmp) != false) return; + + if(style->stype == LV_STYPE_FULL) { + lv_draw_cont_shadow_full(cords_p, mask_p, style); + } else if(style->stype == LV_STYPE_BOTTOM) { + lv_draw_cont_shadow_bottom(cords_p, mask_p, style); + } +} + +static void lv_draw_cont_shadow_full(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) +{ + cord_t radius = style->radius; + + cord_t width = area_get_width(cords_p); + cord_t height = area_get_height(cords_p); + + radius = lv_draw_cont_radius_corr(radius, width, height); + + cord_t cruve_x[LV_VER_RES] = {CORD_MIN}; + memset(cruve_x, 0, sizeof(cruve_x)); + point_t circ; + cord_t circ_tmp; + circ_init(&circ, &circ_tmp, radius); + while(circ_cont(&circ)) { + cruve_x[CIRC_OCT1_Y(circ)] = CIRC_OCT1_X(circ); + cruve_x[CIRC_OCT2_Y(circ)] = CIRC_OCT2_X(circ); + circ_next(&circ, &circ_tmp); + } + int16_t row; + + uint16_t opa_h_result[LV_HOR_RES]; + int16_t filter_size = 2 * style->swidth + 1; + + for(row = 0; row < filter_size; row++) { + opa_h_result[row] = (uint32_t)((uint32_t)(filter_size - row) * style->opa * 2) / (filter_size); + } + + uint16_t p; + opa_t opa_v_result[LV_VER_RES]; + + point_t point_rt; + point_t point_rb; + point_t point_lt; + point_t point_lb; + point_t ofs_rb; + point_t ofs_rt; + point_t ofs_lb; + point_t ofs_lt; + ofs_rb.x = cords_p->x2 - radius; + ofs_rb.y = cords_p->y2 - radius; + + ofs_rt.x = cords_p->x2 - radius; + ofs_rt.y = cords_p->y1 + radius; + + ofs_lb.x = cords_p->x1 + radius; + ofs_lb.y = cords_p->y2 - radius; + + ofs_lt.x = cords_p->x1 + radius; + ofs_lt.y = cords_p->y1 + radius; + + + for(row = 0; row < radius + style->swidth; row++) { + for(p = 0; p < radius + style->swidth; p++) { + int16_t v; + uint32_t opa_tmp = 0; + int16_t row_v; + bool swidth_out = false; + for(v = -style->swidth; v < style->swidth; v++) { + row_v = row + v; + if(row_v < 0) row_v = 0; /*Rows above the corner*/ + + /*Rows below the bottom are empty so they won't modify the filter*/ + if(row_v > radius) { + break; + } + else + { + int16_t p_tmp = p - (cruve_x[row_v] - cruve_x[row]); + if(p_tmp < -style->swidth) { /*Cols before the filtered shadow (still not blurred)*/ + opa_tmp += style->opa * 2; + } + /*Cols after the filtered shadow (already no effect) */ + else if (p_tmp > style->swidth) { + /* If on the current point the filter top point is already out of swidth then + * the remaining part will not do not anything on this point*/ + if(v == -style->swidth) { /*Is the first point?*/ + swidth_out = true; + } + break; + } else { + opa_tmp += opa_h_result[p_tmp + style->swidth]; + } + } + } + if(swidth_out == false) { + opa_tmp = opa_tmp / (filter_size); + opa_v_result[p] = opa_tmp > OPA_COVER ? OPA_COVER : opa_tmp; + } + else { + break; + } + } + + point_rt.x = cruve_x[row] + ofs_rt.x; + point_rt.y = ofs_rt.y - row; + + point_rb.x = cruve_x[row] + ofs_rb.x; + point_rb.y = ofs_rb.y + row; + + point_lt.x = ofs_lt.x - cruve_x[row]; + point_lt.y = ofs_lt.y - row; + + point_lb.x = ofs_lb.x - cruve_x[row]; + point_lb.y = ofs_lb.y + row; + + uint16_t d; + for(d = 0; d < p; d++) { + + if(point_rt.x != point_lt.x) { + px_fp(point_lt.x,point_lt.y , mask_p, style->scolor, opa_v_result[d]); + } + + if(point_rb.x != point_lb.x && point_lt.y != point_lb.y) { + px_fp(point_lb.x,point_lb.y , mask_p, style->scolor, opa_v_result[d]); + } + + if(point_lt.y != point_lb.y) { + px_fp(point_rb.x,point_rb.y , mask_p, style->scolor, opa_v_result[d]); + } + + + px_fp(point_rt.x,point_rt.y , mask_p, style->scolor, opa_v_result[d]); + + + point_rb.x++; + point_lb.x--; + + point_rt.x++; + point_lt.x--; + } + + /*When the first row is known draw the straight pars with same opa. map*/ + if(row == 0) { + lv_draw_cont_shadow_full_straight(cords_p, mask_p, style, opa_v_result); + } + } +} + + +static void lv_draw_cont_shadow_bottom(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) +{ + cord_t radius = style->radius; + + cord_t width = area_get_width(cords_p); + cord_t height = area_get_height(cords_p); + + radius = lv_draw_cont_radius_corr(radius, width, height); + + cord_t cruve_x[LV_VER_RES] = {CORD_MIN}; + memset(cruve_x, 0, sizeof(cruve_x)); + point_t circ; + cord_t circ_tmp; + circ_init(&circ, &circ_tmp, radius); + while(circ_cont(&circ)) { + cruve_x[CIRC_OCT1_Y(circ)] = CIRC_OCT1_X(circ); + cruve_x[CIRC_OCT2_Y(circ)] = CIRC_OCT2_X(circ); + circ_next(&circ, &circ_tmp); + } + int16_t row; + + opa_t opa_h_result[LV_HOR_RES]; + int16_t filter_size = 2 * style->swidth + 1; + + for(row = 0; row < filter_size; row++) { + opa_h_result[row] = (uint32_t)((uint32_t)(filter_size - row) * style->opa) / (filter_size); + } + + point_t point_l; + point_t point_r; + area_t area_mid; + point_t ofs1; + point_t ofs2; + + ofs1.x = cords_p->x1 + radius; + ofs1.y = cords_p->y2 - radius; + + ofs2.x = cords_p->x2 - radius; + ofs2.y = cords_p->y2 - radius; + + for(row = 0; row < radius; row++) { + point_l.x = ofs1.x + radius - row - radius; + point_l.y = ofs1.y + cruve_x[row]; + + point_r.x = ofs2.x + row; + point_r.y = ofs2.y + cruve_x[row]; + + uint16_t d; + for(d= style->swidth; d < filter_size; d++) { + px_fp(point_l.x, point_l.y, mask_p, style->scolor, opa_h_result[d]); + point_l.y ++; + + px_fp(point_r.x, point_r.y, mask_p, style->scolor, opa_h_result[d]); + point_r.y ++; + } + + } + + area_mid.x1 = ofs1.x + 1; + area_mid.y1 = ofs1.y + radius; + area_mid.x2 = ofs2.x - 1; + area_mid.y2 = area_mid.y1; + + uint16_t d; + for(d= style->swidth; d < filter_size; d++) { + fill_fp(&area_mid, mask_p, style->scolor, opa_h_result[d]); + area_mid.y1 ++; + area_mid.y2 ++; + } +} + +static void lv_draw_cont_shadow_full_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style, const opa_t * map) +{ + + cord_t radius = style->radius; + + cord_t width = area_get_width(cords_p); + cord_t height = area_get_height(cords_p); + + radius = lv_draw_cont_radius_corr(radius, width, height); + + area_t sider_area; + sider_area.x1 = cords_p->x2; + sider_area.y1 = cords_p->y1 + radius + 1; + sider_area.x2 = sider_area.x1; + sider_area.y2 = cords_p->y2 - radius - 1; + + area_t sidel_area; + sidel_area.x1 = cords_p->x1; + sidel_area.y1 = cords_p->y1 + radius + 1; + sidel_area.x2 = sidel_area.x1; + sidel_area.y2 = cords_p->y2 - radius - 1; + + area_t sidet_area; + sidet_area.x1 = cords_p->x1 + radius + 1; + sidet_area.y1 = cords_p->y1; + sidet_area.x2 = cords_p->x2 - radius - 1; + sidet_area.y2 = sidet_area.y1; + + area_t sideb_area; + sideb_area.x1 = cords_p->x1 + radius + 1; + sideb_area.y1 = cords_p->y2; + sideb_area.x2 = cords_p->x2 - radius - 1; + sideb_area.y2 = sideb_area.y1; + + int16_t d; + for(d = 0; d < style->swidth; d++) { + fill_fp(&sider_area, mask_p, style->scolor, map[d]); + sider_area.x1++; + sider_area.x2++; + + fill_fp(&sidel_area, mask_p, style->scolor, map[d]); + sidel_area.x1--; + sidel_area.x2--; + + fill_fp(&sidet_area, mask_p, style->scolor, map[d]); + sidet_area.y1--; + sidet_area.y2--; + + fill_fp(&sideb_area, mask_p, style->scolor, map[d]); + sideb_area.y1++; + sideb_area.y2++; + } + +} +static uint16_t lv_draw_cont_radius_corr(uint16_t r, cord_t w, cord_t h) { if(r >= (w >> 1)){ r = (w >> 1); @@ -933,5 +1343,25 @@ static uint16_t lv_draw_rect_radius_corr(uint16_t r, cord_t w, cord_t h) return r; } -#endif /*USE_LV_RECT != 0*/ +#if USE_LV_TRIANGLE != 0 +/** + * Swap two points + * p1 pointer to the first point + * p2 pointer to the second point + */ +static void point_swap(point_t * p1, point_t * p2) +{ + point_t tmp; + tmp.x = p1->x; + tmp.y = p1->y; + + p1->x = p2->x; + p1->y = p2->y; + + p2->x = tmp.x; + p2->y = tmp.y; + +} + +#endif diff --git a/lv_draw/lv_draw.h b/lv_draw/lv_draw.h index 088099755..150ed1fe3 100644 --- a/lv_draw/lv_draw.h +++ b/lv_draw/lv_draw.h @@ -1,5 +1,5 @@ /** - * @file lv_draw_img.h + * @file lv_draw.h * */ @@ -9,14 +9,9 @@ /********************* * INCLUDES *********************/ -#include "../lv_objx/lv_btn.h" -#include "../lv_objx/lv_rect.h" -#include "../lv_objx/lv_line.h" -#include "../lv_objx/lv_img.h" -#include "../lv_objx/lv_label.h" - #include "misc_conf.h" -#include "../lv_misc/text.h" +#include "misc/gfx/text.h" +#include "../lv_obj/lv_style.h" /********************* * DEFINES @@ -34,52 +29,52 @@ * Draw a rectangle * @param cords_p the coordinates of the rectangle * @param mask_p the rectangle will be drawn only in this mask - * @param rects_p pointer to a rectangle style - * @param opa the opacity of the rectangle (0..255) + * @param style_p pointer to a style */ -#if USE_LV_RECT != 0 -void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, - const lv_rects_t * rects_p, opa_t opa); +void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); + + +/*Experimental use for 3D modeling*/ +#define USE_LV_TRIANGLE 0 +#if USE_LV_TRIANGLE != 0 +/** + * + * @param points pointer to an array with 3 points + * @param mask_p the triangle will be drawn only in this mask + * @param color color of the triangle + */ +void lv_draw_triangle(const point_t * points, const area_t * mask_p, color_t color); #endif /** * Write a text * @param cords_p coordinates of the label * @param mask_p the label will be drawn only in this area - * @param labels_p pointer to a label style - * @param opa opacity of the text (0..255) + * @param style_p pointer to a style * @param txt 0 terminated text to write * @param flags settings for the text from 'txt_flag_t' enum */ -#if USE_LV_LABEL != 0 -void lv_draw_label(const area_t * cords_p,const area_t * mask_p, - const lv_labels_t * labels_p, opa_t opa, const char * txt, txt_flag_t flag); -#endif +void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_style_t * style_p, + const char * txt, txt_flag_t flag); /** * Draw an image * @param cords_p the coordinates of the image * @param mask_p the image will be drawn only in this area * @param map_p pointer to a color_t array which contains the pixels of the image - * @param opa opacity of the image (0..255) */ -#if USE_LV_IMG != 0 && USE_FSINT != 0 && USE_UFS != 0 void lv_draw_img(const area_t * cords_p, const area_t * mask_p, - const lv_imgs_t * imgs_p, opa_t opa, const char * fn); -#endif + const lv_style_t * style_p, const char * fn); /** * Draw a line * @param p1 first point of the line * @param p2 second point of the line * @param mask_pthe line will be drawn only on this area - * @param lines_p pointer to a line style - * @param opa opacity of the line (0..255) + * @param style_p pointer to a style */ -#if USE_LV_LINE != 0 void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, - const lv_lines_t * lines_p, opa_t opa); -#endif + const lv_style_t * style_p); /********************** * MACROS diff --git a/lv_draw/lv_draw_rbasic.c b/lv_draw/lv_draw_rbasic.c index 2941944b5..d1c3ed294 100644 --- a/lv_draw/lv_draw_rbasic.c +++ b/lv_draw/lv_draw_rbasic.c @@ -9,7 +9,7 @@ #include "lv_draw_rbasic.h" #include "lv_conf.h" #include "hal/disp/disp.h" -#include "../lv_misc/font.h" +#include "misc/gfx/font.h" /********************* * DEFINES @@ -22,7 +22,6 @@ /********************** * STATIC PROTOTYPES **********************/ -static void lv_rpx(cord_t x, cord_t y, const area_t * mask_p, color_t color); /********************** * STATIC VARIABLES @@ -36,6 +35,25 @@ static void lv_rpx(cord_t x, cord_t y, const area_t * mask_p, color_t color); * GLOBAL FUNCTIONS **********************/ +/** + * Put a pixel to the display + * @param x x coordinate of the pixel + * @param y y coordinate of the pixel + * @param mask_p the pixel will be drawn on this area + * @param color color of the pixel + * @param opa opacity (ignored, only for compatibility with lv_vpx) + */ +void lv_rpx(cord_t x, cord_t y, const area_t * mask_p, color_t color, opa_t opa) +{ + area_t area; + area.x1 = x; + area.y1 = y; + area.x2 = x; + area.y2 = y; + + lv_rfill(&area, mask_p, color, OPA_COVER); +} + /** * Fill an area on the display * @param cords_p coordinates of the area to fill @@ -59,8 +77,7 @@ void lv_rfill(const area_t * cords_p, const area_t * mask_p, if(union_ok != false){ - disp_area(DISP_ID_ALL, masked_area.x1, masked_area.y1, masked_area.x2, masked_area.y2); - disp_fill(DISP_ID_ALL, color); + disp_fill(masked_area.x1, masked_area.y1, masked_area.x2, masked_area.y2, color); } } @@ -73,7 +90,7 @@ void lv_rfill(const area_t * cords_p, const area_t * mask_p, * @param color color of letter * @param opa opacity of letter (ignored, only for compatibility with lv_vletter) */ -void lv_rletter(const point_t * pos_p, const area_t * mask_p, +void lv_rletter(const point_t * pos_p, const area_t * mask_p, const font_t * font_p, uint8_t letter, color_t color, opa_t opa) { @@ -81,11 +98,11 @@ void lv_rletter(const point_t * pos_p, const area_t * mask_p, const uint8_t * bitmap_p = font_get_bitmap(font_p, letter); uint8_t col, col_sub, row; - +#if FONT_ANTIALIAS == 0 for(row = 0; row < font_p->height_row; row ++) { for(col = 0, col_sub = 7; col < w; col ++, col_sub--) { if(*bitmap_p & (1 << col_sub)) { - lv_rpx(pos_p->x + col, pos_p->y + row, mask_p, color); + lv_rpx(pos_p->x + col, pos_p->y + row, mask_p, color, opa); } if(col_sub == 0) { @@ -99,6 +116,48 @@ void lv_rletter(const point_t * pos_p, const area_t * mask_p, /*Go to the next row*/ bitmap_p ++; } +#else + const uint8_t * map1_p = bitmap_p; + const uint8_t * map2_p = bitmap_p + font_p->width_byte; + uint8_t px_cnt; + uint8_t col_byte_cnt; + for(row = 0; row < (font_p->height_row >> 1); row ++) { + col_byte_cnt = 0; + col_sub = 7; + for(col = 0; col < (w >> 1); col ++) { + + px_cnt = 0; + if((*map1_p & (1 << col_sub)) != 0) px_cnt++; + if((*map2_p & (1 << col_sub)) != 0) px_cnt++; + if(col_sub != 0) col_sub --; + else { + col_sub = 7; + col_byte_cnt ++; + map1_p ++; + map2_p ++; + } + if((*map1_p & (1 << col_sub)) != 0) px_cnt++; + if((*map2_p & (1 << col_sub)) != 0) px_cnt++; + if(col_sub != 0) col_sub --; + else { + col_sub = 7; + col_byte_cnt ++; + map1_p ++; + map2_p ++; + } + + + if(px_cnt != 0) { + lv_rpx(pos_p->x + col, pos_p->y + row, mask_p, color_mix(color, COLOR_SILVER, 63 * px_cnt), OPA_COVER); + } + } + + map1_p += font_p->width_byte; + map2_p += font_p->width_byte; + map1_p += font_p->width_byte - col_byte_cnt; + map2_p += font_p->width_byte - col_byte_cnt; + } +#endif } /** @@ -131,11 +190,10 @@ void lv_rmap(const area_t * cords_p, const area_t * mask_p, if(transp == false) { cord_t row; + cord_t mask_w = area_get_width(&masked_a) - 1; for(row = 0; row < area_get_height(&masked_a); row++) { - cord_t col; - for(col = 0; col < area_get_width(&masked_a); col ++) { - lv_rpx(masked_a.x1 + col, masked_a.y1 + row, mask_p, map_p[col]); - } + disp_map(masked_a.x1, masked_a.y1 + row, masked_a.x1 + mask_w, masked_a.y1 + row, map_p); + map_p += map_width; } }else { @@ -145,7 +203,7 @@ void lv_rmap(const area_t * cords_p, const area_t * mask_p, cord_t col; for(col = 0; col < area_get_width(&masked_a); col ++) { if(map_p[col].full != transp_color.full) { - lv_rpx(masked_a.x1 + col, masked_a.y1 + row, mask_p, map_p[col]); + lv_rpx(masked_a.x1 + col, masked_a.y1 + row, mask_p, map_p[col], opa); } } map_p += map_width; @@ -156,21 +214,3 @@ void lv_rmap(const area_t * cords_p, const area_t * mask_p, /********************** * STATIC FUNCTIONS **********************/ - -/** - * Put a pixel to the display - * @param x x coordinate of the pixel - * @param y y coordinate of the pixel - * @param mask_p the pixel will be drawn on this area - * @param color color of the pixel - */ -static void lv_rpx(cord_t x, cord_t y, const area_t * mask_p, color_t color) -{ - area_t area; - area.x1 = x; - area.y1 = y; - area.x2 = x; - area.y2 = y; - - lv_rfill(&area, mask_p, color, OPA_COVER); -} diff --git a/lv_draw/lv_draw_rbasic.h b/lv_draw/lv_draw_rbasic.h index 3f17bf6c6..08d19e93b 100644 --- a/lv_draw/lv_draw_rbasic.h +++ b/lv_draw/lv_draw_rbasic.h @@ -9,9 +9,9 @@ /********************* * INCLUDES *********************/ -#include "misc/others/color.h" -#include "../lv_misc/area.h" -#include "../lv_misc/font.h" +#include "misc/gfx/color.h" +#include "misc/gfx/area.h" +#include "misc/gfx/font.h" /********************* * DEFINES @@ -24,6 +24,9 @@ /********************** * GLOBAL PROTOTYPES **********************/ + +void lv_rpx(cord_t x, cord_t y, const area_t * mask_p, color_t color, opa_t opa); + /** * Fill an area on the display * @param cords_p coordinates of the area to fill diff --git a/lv_draw/lv_draw_vbasic.c b/lv_draw/lv_draw_vbasic.c index 5bee2bef5..39ccb9173 100644 --- a/lv_draw/lv_draw_vbasic.c +++ b/lv_draw/lv_draw_vbasic.c @@ -2,7 +2,15 @@ * @file lv_vdraw.c * */ -#include "lv_conf.h" + +#include +#include +#include +#include +#include +#include +#include + #if LV_VDB_SIZE != 0 #include @@ -36,10 +44,45 @@ * GLOBAL FUNCTIONS **********************/ + +/** + * Put a pixel in the Virtual Display Buffer + * @param x pixel x coordinate + * @param y pixel y coordinate + * @param mask_p fill only on this mask (truncated to VDB area) + * @param color pixel color + * @param opa opacity of the area (0..255) + */ +void lv_vpx(cord_t x, cord_t y, const area_t * mask_p, color_t color, opa_t opa) +{ + lv_vdb_t * vdb_p = lv_vdb_get(); + + /*Pixel out of the mask*/ + if(x < mask_p->x1 || x > mask_p->x2 || + y < mask_p->y1 || y > mask_p->y2) { + return; + } + + uint32_t vdb_width = area_get_width(&vdb_p->area); + + /*Make the coordinates relative to VDB*/ + x-=vdb_p->area.x1; + y-=vdb_p->area.y1; + color_t * vdb_px_p = vdb_p->buf + y * vdb_width + x; + if(opa == OPA_COVER) { + *vdb_px_p = color; + } + else { + *vdb_px_p = color_mix(color,*vdb_px_p, opa); + } + +} + + /** * Fill an area in the Virtual Display Buffer * @param cords_p coordinates of the area to fill - * @param mask_p fill only o this mask + * @param mask_p fill only o this mask (truncated to VDB area) * @param color fill color * @param opa opacity of the area (0..255) */ @@ -58,13 +101,13 @@ void lv_vfill(const area_t * cords_p, const area_t * mask_p, /*If there are common part of the three area then draw to the vdb*/ if(union_ok == true) { area_t vdb_rel_a; /*Stores relative coordinates on vdb*/ - vdb_rel_a.x1 = res_a.x1 - vdb_p->vdb_area.x1; - vdb_rel_a.y1 = res_a.y1 - vdb_p->vdb_area.y1; - vdb_rel_a.x2 = res_a.x2 - vdb_p->vdb_area.x1; - vdb_rel_a.y2 = res_a.y2 - vdb_p->vdb_area.y1; + vdb_rel_a.x1 = res_a.x1 - vdb_p->area.x1; + vdb_rel_a.y1 = res_a.y1 - vdb_p->area.y1; + vdb_rel_a.x2 = res_a.x2 - vdb_p->area.x1; + vdb_rel_a.y2 = res_a.y2 - vdb_p->area.y1; color_t * vdb_buf_tmp = vdb_p->buf; - uint32_t vdb_width = area_get_width(&vdb_p->vdb_area); + uint32_t vdb_width = area_get_width(&vdb_p->area); /*Move the vdb_tmp to the first row*/ vdb_buf_tmp += vdb_width * vdb_rel_a.y1; @@ -74,20 +117,32 @@ void lv_vfill(const area_t * cords_p, const area_t * mask_p, /*Run simpler function without opacity*/ if(opa == OPA_COVER) { - for(row = vdb_rel_a.y1; row <= vdb_rel_a.y2; row++) { - for(col = vdb_rel_a.x1; col <= vdb_rel_a.x2; col++) { - vdb_buf_tmp[col] = color; - } - + /*Fill the first row with 'color'*/ + for(col = vdb_rel_a.x1; col <= vdb_rel_a.x2; col++) { + vdb_buf_tmp[col] = color; + } + /*Copy the first row to all other rows*/ + color_t * vdb_buf_first = &vdb_buf_tmp[vdb_rel_a.x1]; + cord_t copy_size = (vdb_rel_a.x2 - vdb_rel_a.x1 + 1) * sizeof(color_t); + vdb_buf_tmp += vdb_width; + + for(row = vdb_rel_a.y1 + 1; row <= vdb_rel_a.y2; row++) { + memcpy(&vdb_buf_tmp[vdb_rel_a.x1], vdb_buf_first, copy_size); vdb_buf_tmp += vdb_width; } } - /*Calculate the alpha too*/ + /*Calculate with alpha too*/ else { + color_t bg_tmp = COLOR_BLACK; + color_t opa_tmp = color_mix(color, bg_tmp, opa); for(row = vdb_rel_a.y1; row <= vdb_rel_a.y2; row++) { for(col = vdb_rel_a.x1; col <= vdb_rel_a.x2; col++) { - color_t c = color_mix(color, vdb_buf_tmp[col], opa); - vdb_buf_tmp[col] = c; + /*If the bg color changed recalculate the result color*/ + if(vdb_buf_tmp[col].full != bg_tmp.full) { + bg_tmp = vdb_buf_tmp[col]; + opa_tmp = color_mix(color, bg_tmp, opa); + } + vdb_buf_tmp[col] = opa_tmp; } vdb_buf_tmp += vdb_width; } @@ -98,7 +153,7 @@ void lv_vfill(const area_t * cords_p, const area_t * mask_p, /** * Draw a letter in the Virtual Display Buffer * @param pos_p left-top coordinate of the latter - * @param mask_p the letter will be drawn only on this area + * @param mask_p the letter will be drawn only on this area (truncated to VDB area) * @param font_p pointer to font * @param letter a letter to draw * @param color color of letter @@ -122,27 +177,76 @@ void lv_vletter(const point_t * pos_p, const area_t * mask_p, pos_p->y + letter_h < mask_p->y1 || pos_p->y > mask_p->y2) return; lv_vdb_t * vdb_p = lv_vdb_get(); - cord_t vdb_width = area_get_width(&vdb_p->vdb_area); + cord_t vdb_width = area_get_width(&vdb_p->area); color_t * vdb_buf_tmp = vdb_p->buf; cord_t col, row; uint8_t col_bit; uint8_t col_byte_cnt; + /* Calculate the col/row start/end on the map + * If font anti alaiassing is enabled use the reduced letter sizes*/ cord_t col_start = pos_p->x > mask_p->x1 ? 0 : mask_p->x1 - pos_p->x; - cord_t col_end = pos_p->x + letter_w < mask_p->x2 ? letter_w : mask_p->x2 - pos_p->x + 1; + cord_t col_end = pos_p->x + (letter_w >> FONT_ANTIALIAS) < mask_p->x2 ? (letter_w >> FONT_ANTIALIAS) : mask_p->x2 - pos_p->x + 1; cord_t row_start = pos_p->y > mask_p->y1 ? 0 : mask_p->y1 - pos_p->y; - cord_t row_end = pos_p->y + letter_h < mask_p->y2 ? letter_h : mask_p->y2 - pos_p->y + 1; + cord_t row_end = pos_p->y + (letter_h >> FONT_ANTIALIAS) < mask_p->y2 ? (letter_h >> FONT_ANTIALIAS) : mask_p->y2 - pos_p->y + 1; /*Set a pointer on VDB to the first pixel of the letter*/ - vdb_buf_tmp += ((pos_p->y - vdb_p->vdb_area.y1) * vdb_width) - + pos_p->x - vdb_p->vdb_area.x1; + vdb_buf_tmp += ((pos_p->y - vdb_p->area.y1) * vdb_width) + + pos_p->x - vdb_p->area.x1; /*If the letter is partially out of mask the move there on VDB*/ vdb_buf_tmp += (row_start * vdb_width) + col_start; /*Move on the map too*/ - map_p += (row_start * font_p->width_byte) + (col_start>>3); + map_p += ((row_start << FONT_ANTIALIAS) * font_p->width_byte) + ((col_start << FONT_ANTIALIAS) >> 3); +#if FONT_ANTIALIAS != 0 + opa_t opa_tmp = opa; + if(opa_tmp != OPA_COVER) opa_tmp = opa_tmp >> 2; /*Opacity per pixel (used when sum the pixels)*/ + const uint8_t * map1_p = map_p; + const uint8_t * map2_p = map_p + font_p->width_byte; + uint8_t px_cnt; + for(row = row_start; row < row_end; row ++) { + col_byte_cnt = 0; + col_bit = 7 - ((col_start << FONT_ANTIALIAS) % 8); + for(col = col_start; col < col_end; col ++) { + + px_cnt = 0; + if((*map1_p & (1 << col_bit)) != 0) px_cnt++; + if((*map2_p & (1 << col_bit)) != 0) px_cnt++; + if(col_bit != 0) col_bit --; + else { + col_bit = 7; + col_byte_cnt ++; + map1_p ++; + map2_p ++; + } + if((*map1_p & (1 << col_bit)) != 0) px_cnt++; + if((*map2_p & (1 << col_bit)) != 0) px_cnt++; + if(col_bit != 0) col_bit --; + else { + col_bit = 7; + col_byte_cnt ++; + map1_p ++; + map2_p ++; + } + + + if(px_cnt != 0) { + if(opa == OPA_COVER) *vdb_buf_tmp = color_mix(color, *vdb_buf_tmp, 63*px_cnt); + else *vdb_buf_tmp = color_mix(color, *vdb_buf_tmp, opa_tmp * px_cnt); + } + + vdb_buf_tmp++; + } + + map1_p += font_p->width_byte; + map2_p += font_p->width_byte; + map1_p += font_p->width_byte - col_byte_cnt; + map2_p += font_p->width_byte - col_byte_cnt; + vdb_buf_tmp += vdb_width - ((col_end) - (col_start)); /*Next row in VDB*/ + } +#else for(row = row_start; row < row_end; row ++) { col_byte_cnt = 0; col_bit = 7 - (col_start % 8); @@ -152,9 +256,9 @@ void lv_vletter(const point_t * pos_p, const area_t * mask_p, if(opa == OPA_COVER) *vdb_buf_tmp = color; else *vdb_buf_tmp = color_mix(color, *vdb_buf_tmp, opa); } - vdb_buf_tmp++; - /*Use a col. more times depending on LV_UPSCALE_FONT*/ + vdb_buf_tmp++; + if(col_bit != 0) col_bit --; else { col_bit = 7; @@ -166,12 +270,13 @@ void lv_vletter(const point_t * pos_p, const area_t * mask_p, map_p += font_p->width_byte - col_byte_cnt; vdb_buf_tmp += vdb_width - (col_end - col_start); /*Next row in VDB*/ } +#endif } /** * Draw a color map to the display * @param cords_p coordinates the color map - * @param mask_p the map will drawn only on this area + * @param mask_p the map will drawn only on this area (truncated to VDB area) * @param map_p pointer to a color_t array * @param opa opacity of the map (ignored, only for compatibility with lv_vmap) * @param transp true: enable transparency of LV_IMG_COLOR_TRANSP color pixels @@ -208,43 +313,19 @@ void lv_vmap(const area_t * cords_p, const area_t * mask_p, } /*Stores coordinates relative to the act vdb*/ - masked_a.x1 = masked_a.x1 - vdb_p->vdb_area.x1; - masked_a.y1 = masked_a.y1 - vdb_p->vdb_area.y1; - masked_a.x2 = masked_a.x2 - vdb_p->vdb_area.x1; - masked_a.y2 = masked_a.y2 - vdb_p->vdb_area.y1; + masked_a.x1 = masked_a.x1 - vdb_p->area.x1; + masked_a.y1 = masked_a.y1 - vdb_p->area.y1; + masked_a.x2 = masked_a.x2 - vdb_p->area.x1; + masked_a.y2 = masked_a.y2 - vdb_p->area.y1; - cord_t vdb_width = area_get_width(&vdb_p->vdb_area); + cord_t vdb_width = area_get_width(&vdb_p->area); color_t * vdb_buf_tmp = vdb_p->buf; vdb_buf_tmp += (uint32_t) vdb_width * masked_a.y1; /*Move to the first row*/ map_p -= (masked_a.x1 >> ds_shift); - if(upscale != false) { - cord_t row; - cord_t col; - color_t transp_color = LV_COLOR_TRANSP; - color_t color_tmp; - color_t prev_color = COLOR_BLACK; - cord_t map_col; - - color_tmp = color_mix(recolor, prev_color, recolor_opa); - for(row = masked_a.y1; row <= masked_a.y2; row++) { - for(col = masked_a.x1; col <= masked_a.x2; col ++) { - map_col = col >> 1; - - if(map_p[map_col].full != prev_color.full) { - prev_color.full = map_p[map_col].full; - color_tmp = color_mix(recolor, prev_color, recolor_opa); - } - if(transp == false || map_p[map_col].full != transp_color.full) { - vdb_buf_tmp[col] = color_mix( color_tmp, vdb_buf_tmp[col], opa); - } - } - if((row & 0x1) != 0) map_p += map_width; /*Next row on the map*/ - vdb_buf_tmp += vdb_width ; /*Next row on the VDB*/ - } - } - else { + /*No upscalse*/ + if(upscale == false) { if(transp == false) { /*Simply copy the pixels to the VDB*/ cord_t row; @@ -256,7 +337,7 @@ void lv_vmap(const area_t * cords_p, const area_t * mask_p, map_p += map_width; /*Next row on the map*/ vdb_buf_tmp += vdb_width; /*Next row on the VDB*/ } - } else { + } else { /*with opacity*/ cord_t col; for(row = masked_a.y1; row <= masked_a.y2; row++) { for(col = masked_a.x1; col <= masked_a.x2; col ++) { @@ -267,9 +348,11 @@ void lv_vmap(const area_t * cords_p, const area_t * mask_p, } } - /*To recolor draw simply a rectangle above the image*/ #if LV_VDB_SIZE != 0 - lv_vfill(cords_p, mask_p, recolor, recolor_opa); + /*To recolor draw simply a rectangle above the image*/ + if(recolor_opa != OPA_TRANSP) { + lv_vfill(cords_p, mask_p, recolor, recolor_opa); + } #endif } else { /*transp == true: Check all pixels */ cord_t row; @@ -285,8 +368,8 @@ void lv_vmap(const area_t * cords_p, const area_t * mask_p, } } - map_p += map_width; /*Next row on the map*/ - vdb_buf_tmp += vdb_width; /*Next row on the VDB*/ + map_p += map_width; /*Next row on the map*/ + vdb_buf_tmp += vdb_width; /*Next row on the VDB*/ } } else { for(row = masked_a.y1; row <= masked_a.y2; row++) { @@ -296,8 +379,8 @@ void lv_vmap(const area_t * cords_p, const area_t * mask_p, } } - map_p += map_width; /*Next row on the map*/ - vdb_buf_tmp += vdb_width; /*Next row on the VDB*/ + map_p += map_width; /*Next row on the map*/ + vdb_buf_tmp += vdb_width; /*Next row on the VDB*/ } } } else { /*Recolor needed*/ @@ -330,6 +413,64 @@ void lv_vmap(const area_t * cords_p, const area_t * mask_p, } } } + /*Upscalse*/ + else { + cord_t row; + cord_t col; + color_t transp_color = LV_COLOR_TRANSP; + color_t color_tmp; + color_t prev_color = COLOR_BLACK; + cord_t map_col; + + /*The most simple case (but upscale): 0 opacity, no recolor, no transp. pixels*/ + if(transp == false && opa == OPA_COVER && recolor_opa == OPA_TRANSP) { + cord_t map_col_start = masked_a.x1 >> 1; + cord_t map_col_end = masked_a.x2 >> 1; + cord_t map_col; + cord_t vdb_col = masked_a.x1; + for(row = masked_a.y1; row <= masked_a.y2; row++) { + map_col_start = masked_a.x1 >> 1; + map_col_end = masked_a.x2 >> 1; + vdb_col = masked_a.x1; + for(map_col = map_col_start; map_col <= map_col_end; map_col ++, vdb_col += 2) { + vdb_buf_tmp[vdb_col].full = map_p[map_col].full; + vdb_buf_tmp[vdb_col + 1].full = map_p[map_col].full; + } + if((row & 0x1) != 0) map_p += map_width; /*Next row on the map*/ + vdb_buf_tmp += vdb_width ; /*Next row on the VDB*/ + } + } + /*Handle other cases*/ + else { + color_tmp = color_mix(recolor, prev_color, recolor_opa); + for(row = masked_a.y1; row <= masked_a.y2; row++) { + for(col = masked_a.x1; col <= masked_a.x2; col ++) { + map_col = col >> 1; + + /*Handle recoloring*/ + if(recolor_opa == OPA_TRANSP) { + color_tmp.full = map_p[map_col].full; + } else { + if(map_p[map_col].full != prev_color.full) { + prev_color.full = map_p[map_col].full; + color_tmp = color_mix(recolor, prev_color, recolor_opa); + } + } + /*Put the NOT transparent pixels*/ + if(transp == false || map_p[map_col].full != transp_color.full) { + /*Handle opacity*/ + if(opa == OPA_COVER) { + vdb_buf_tmp[col] = color_tmp; + } else { + vdb_buf_tmp[col] = color_mix( color_tmp, vdb_buf_tmp[col], opa); + } + } + } + if((row & 0x1) != 0) map_p += map_width; /*Next row on the map*/ + vdb_buf_tmp += vdb_width ; /*Next row on the VDB*/ + } + } + } } diff --git a/lv_draw/lv_draw_vbasic.h b/lv_draw/lv_draw_vbasic.h index 1a8f92814..235244d02 100644 --- a/lv_draw/lv_draw_vbasic.h +++ b/lv_draw/lv_draw_vbasic.h @@ -13,9 +13,9 @@ #if LV_VDB_SIZE != 0 -#include "misc/others/color.h" -#include "../lv_misc/area.h" -#include "../lv_misc/font.h" +#include "misc/gfx/color.h" +#include "misc/gfx/area.h" +#include "misc/gfx/font.h" /********************* * DEFINES @@ -29,6 +29,7 @@ * GLOBAL PROTOTYPES **********************/ +void lv_vpx(cord_t x, cord_t y, const area_t * mask_p, color_t color, opa_t opa); /** * Fill an area in the Virtual Display Buffer * @param cords_p coordinates of the area to fill diff --git a/lv_icon/x1/img_close.c b/lv_icon/x1/img_close.c deleted file mode 100644 index 677bd9885..000000000 --- a/lv_icon/x1/img_close.c +++ /dev/null @@ -1,31 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_CLOSE != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_close [] = { /*Width = 14, Height = 15*/ -14, /*Width*/ -15, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 6339, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 4258, 2016, -6371, 0, 32, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2113, 0, 4226, -10597, 0, 0, 0, 2016, 2016, 2016, 2016, 2016, 2016, 32, 0, 0, 8452, -2016, 10597, 0, 0, 0, 2016, 2016, 2016, 2016, 32, 0, 0, 8452, 2016, -2016, 2016, 10597, 0, 0, 0, 2016, 2016, 32, 0, 0, 8452, 2016, 2016, -2016, 2016, 2016, 10565, 0, 0, 32, 2113, 0, 0, 6339, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 10597, 0, 0, 0, 0, 8452, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 0, 0, 0, 0, 35953, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 32, 0, 0, 0, 0, 0, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2113, 0, 0, 6339, 8484, 0, 0, 32, 2016, 2016, 2016, -2016, 2016, 32, 0, 0, 8452, 2016, 2016, 10597, 0, 0, 0, 2016, 2016, -2016, 32, 0, 0, 8452, 2016, 2016, 2016, 2016, 10597, 0, 0, 0, 2016, -2113, 0, 0, 6339, 2016, 2016, 2016, 2016, 2016, 2016, 10565, 0, 0, 32, -19049, 0, 8452, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12678, 0, 14823, -2016, 23275, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 23243, 2016, -}; - -#endif diff --git a/lv_icon/x1/img_down.c b/lv_icon/x1/img_down.c deleted file mode 100644 index 66f46ade8..000000000 --- a/lv_icon/x1/img_down.c +++ /dev/null @@ -1,26 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_DOWN != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_down [] = { /*Width = 15, Height = 10*/ -15, /*Width*/ -10, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 33840, 2016, 2016, -2016, 12710, 0, 19049, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 4226, 0, 35953, 2016, -14791, 0, 0, 0, 19049, 2016, 2016, 2016, 2016, 2016, 4226, 0, 0, 0, 35953, -10565, 0, 0, 0, 0, 16936, 2016, 2016, 2016, 2145, 0, 0, 0, 0, 29614, -2016, 8484, 0, 0, 0, 0, 19049, 2016, 4226, 0, 0, 0, 0, 29582, 2016, -2016, 2016, 10565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31695, 2016, 2016, -2016, 2016, 2016, 8484, 0, 0, 0, 0, 0, 0, 0, 29582, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 8484, 0, 0, 0, 0, 0, 29582, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 8484, 0, 0, 0, 29582, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 8484, 0, 29582, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x1/img_driver.c b/lv_icon/x1/img_driver.c deleted file mode 100644 index 88eba73a6..000000000 --- a/lv_icon/x1/img_driver.c +++ /dev/null @@ -1,30 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_DRIVER != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_driver [] = { /*Width = 16, Height = 14*/ -16, /*Width*/ -14, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 2016, 2016, 2016, -2016, 2016, 2016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33808, 2016, 2016, -2016, 2016, 14823, 2113, 44373, 44373, 44373, 44373, 44373, 44373, 44373, 44373, 6339, 8452, 2016, 2016, -2016, 2016, 0, 23275, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 27469, 0, 2016, 2016, -2016, 29614, 0, 46518, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 48599, 0, 23275, 2016, -2016, 4258, 4258, 65503, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65503, 4226, 2113, 2016, -2016, 0, 27501, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 23243, 0, 40147, -21130, 0, 50744, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 44373, 0, 12710, -4226, 0, 21162, 21162, 21162, 57083, 65535, 65535, 65535, 65535, 61309, 21162, 21162, 19017, 0, 0, -2145, 0, 0, 0, 0, 23275, 65535, 65535, 65535, 65535, 31695, 0, 0, 0, 0, 0, -2145, 0, 0, 0, 0, 32, 21162, 21162, 21162, 21162, 2145, 0, 0, 0, 0, 0, -2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -}; - -#endif diff --git a/lv_icon/x1/img_file.c b/lv_icon/x1/img_file.c deleted file mode 100644 index 222a5a5c0..000000000 --- a/lv_icon/x1/img_file.c +++ /dev/null @@ -1,32 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_FILE != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_file [] = { /*Width = 12, Height = 16*/ -12, /*Width*/ -16, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -23275, 21162, 21162, 21162, 21162, 21162, 2016, 2016, 2016, 2016, 2016, 2016, -2145, 0, 0, 0, 0, 0, 2113, 2016, 2016, 2016, 2016, 2016, -2145, 0, 42260, 44373, 44373, 2113, 12678, 2145, 2016, 2016, 2016, 2016, -2145, 0, 63390, 65535, 65535, 2145, 59196, 16904, 2113, 2016, 2016, 2016, -2145, 0, 63390, 65535, 65535, 2145, 63390, 63422, 16904, 2113, 2016, 2016, -2145, 0, 63390, 65535, 65535, 2145, 63390, 65535, 63422, 16904, 2113, 2016, -2145, 0, 63390, 65535, 65535, 2145, 21130, 21162, 21162, 19017, 0, 2145, -2145, 0, 63390, 65535, 65535, 44405, 44373, 44373, 44373, 44373, 2113, 0, -2145, 0, 63390, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 2145, 0, -2145, 0, 63390, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 2145, 0, -2145, 0, 63390, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 2145, 0, -2145, 0, 63390, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 2145, 0, -2145, 0, 63390, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 2145, 0, -2145, 0, 63390, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 2145, 0, -2145, 0, 21130, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 32, 0, -2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -}; - -#endif diff --git a/lv_icon/x1/img_folder.c b/lv_icon/x1/img_folder.c deleted file mode 100644 index b1d914817..000000000 --- a/lv_icon/x1/img_folder.c +++ /dev/null @@ -1,28 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_FOLDER != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_folder [] = { /*Width = 16, Height = 12*/ -16, /*Width*/ -12, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 40147, 21162, 21162, 21162, 35921, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 23275, 2113, 0, 0, 0, 0, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 2016, -2016, 2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -25388, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, -12678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6339, -21130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14791, -29582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23243, -38034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31695, -2016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38066, -2016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2016, -2016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2016, -}; - -#endif diff --git a/lv_icon/x1/img_left.c b/lv_icon/x1/img_left.c deleted file mode 100644 index d2151238b..000000000 --- a/lv_icon/x1/img_left.c +++ /dev/null @@ -1,31 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_LEFT != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_left [] = { /*Width = 10, Height = 15*/ -10, /*Width*/ -15, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 27501, 21130, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 29582, 0, 0, 21130, 2016, -2016, 2016, 2016, 2016, 31695, 0, 0, 0, 0, 27469, -2016, 2016, 2016, 29582, 0, 0, 0, 0, 4226, 2016, -2016, 2016, 29582, 0, 0, 0, 0, 4226, 2016, 2016, -2016, 29582, 0, 0, 0, 0, 4226, 2016, 2016, 2016, -29582, 0, 0, 0, 0, 4226, 2016, 2016, 2016, 2016, -0, 0, 0, 0, 0, 2016, 2016, 2016, 2016, 2016, -19049, 0, 0, 0, 0, 8484, 2016, 2016, 2016, 2016, -2016, 19049, 0, 0, 0, 0, 8484, 2016, 2016, 2016, -2016, 2016, 21130, 0, 0, 0, 0, 8484, 2016, 2016, -2016, 2016, 2016, 21130, 0, 0, 0, 0, 8484, 2016, -2016, 2016, 2016, 2016, 19017, 0, 0, 0, 0, 23243, -2016, 2016, 2016, 2016, 2016, 21130, 0, 0, 12710, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 21130, 14791, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x1/img_ok.c b/lv_icon/x1/img_ok.c deleted file mode 100644 index b450f2448..000000000 --- a/lv_icon/x1/img_ok.c +++ /dev/null @@ -1,28 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_OK != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_ok [] = { /*Width = 16, Height = 12*/ -16, /*Width*/ -12, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 32, 2113, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2113, 0, 0, 10597, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 32, 0, 0, 8452, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 32, 0, 0, 8452, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 32, 0, 0, 8452, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2113, 0, 0, 6371, 2016, 2016, 2016, 2016, -2016, 4258, 0, 40147, 2016, 2016, 2016, 32, 0, 0, 8452, 2016, 2016, 2016, 2016, 2016, -16936, 0, 0, 32, 2016, 2016, 2113, 0, 0, 6371, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 10565, 0, 0, 32, 2113, 0, 0, 6371, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 12710, 0, 0, 0, 0, 8452, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 12710, 0, 0, 8484, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 12710, 8484, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x1/img_right.c b/lv_icon/x1/img_right.c deleted file mode 100644 index d56e6c81c..000000000 --- a/lv_icon/x1/img_right.c +++ /dev/null @@ -1,31 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_RIGHT != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_right [] = { /*Width = 10, Height = 15*/ -10, /*Width*/ -15, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 21130, 27501, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 21130, 0, 0, 29582, 2016, 2016, 2016, 2016, 2016, -27469, 0, 0, 0, 0, 31695, 2016, 2016, 2016, 2016, -2016, 4226, 0, 0, 0, 0, 29582, 2016, 2016, 2016, -2016, 2016, 4226, 0, 0, 0, 0, 29582, 2016, 2016, -2016, 2016, 2016, 4226, 0, 0, 0, 0, 29582, 2016, -2016, 2016, 2016, 2016, 4226, 0, 0, 0, 0, 29582, -2016, 2016, 2016, 2016, 2016, 0, 0, 0, 0, 0, -2016, 2016, 2016, 2016, 8484, 0, 0, 0, 0, 19049, -2016, 2016, 2016, 8484, 0, 0, 0, 0, 19049, 2016, -2016, 2016, 8484, 0, 0, 0, 0, 21130, 2016, 2016, -2016, 8484, 0, 0, 0, 0, 21130, 2016, 2016, 2016, -23243, 0, 0, 0, 0, 19017, 2016, 2016, 2016, 2016, -2016, 12710, 0, 0, 21130, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 14791, 21130, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x1/img_up.c b/lv_icon/x1/img_up.c deleted file mode 100644 index 1b1ce885d..000000000 --- a/lv_icon/x1/img_up.c +++ /dev/null @@ -1,26 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_UP != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_up [] = { /*Width = 15, Height = 10*/ -15, /*Width*/ -10, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 8484, 0, 29582, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 8484, 0, 0, 0, 29582, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 8484, 0, 0, 0, 0, 0, 29582, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 8484, 0, 0, 0, 0, 0, 0, 0, 29582, 2016, 2016, 2016, -2016, 2016, 10565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31695, 2016, 2016, -2016, 8484, 0, 0, 0, 0, 19049, 2016, 4226, 0, 0, 0, 0, 29582, 2016, -10565, 0, 0, 0, 0, 16936, 2016, 2016, 2016, 2145, 0, 0, 0, 0, 29614, -14791, 0, 0, 0, 19049, 2016, 2016, 2016, 2016, 2016, 4226, 0, 0, 0, 35953, -2016, 12710, 0, 19049, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 4226, 0, 35953, 2016, -2016, 2016, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 33840, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_close.c b/lv_icon/x2/img_close.c deleted file mode 100644 index 1360602aa..000000000 --- a/lv_icon/x2/img_close.c +++ /dev/null @@ -1,49 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_CLOSE != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_close [] = { /*Width = 35, Height = 33*/ -35, /*Width*/ -33, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 25356, 21130, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 21162, 23243, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 33808, 6371, 2145, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4226, 4258, 29614, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 25388, 10565, 32, 0, 2145, 16936, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 21130, 4258, 0, 0, 6371, 23243, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 14791, 0, 0, 0, 0, 4226, 23275, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29582, 6339, 0, 0, 0, 0, 10597, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 16904, 32, 0, 0, 0, 0, 4226, 16936, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19049, 4258, 32, 0, 0, 0, 0, 12710, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 31695, 14791, 4226, 0, 0, 0, 0, 2145, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4226, 0, 0, 0, 0, 2145, 10597, 27501, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 14791, 32, 0, 0, 0, 0, 2145, 16904, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19049, 4258, 0, 0, 0, 0, 0, 10597, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 31727, 14791, 4226, 0, 0, 0, 0, 2145, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4258, 0, 0, 0, 0, 2145, 10597, 29582, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 14791, 32, 0, 0, 0, 0, 2145, 16904, 2016, 2016, 2016, 2016, 19049, 4226, 0, 0, 0, 0, 0, 10597, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 14791, 4226, 0, 0, 0, 0, 4226, 23275, 2016, 2016, 27501, 4258, 0, 0, 0, 0, 2113, 10597, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 32, 6339, 10565, 10597, 8452, 32, 0, 0, 0, 0, 10565, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31695, 12710, 4226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2145, 10565, 27469, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 14823, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12710, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 12678, 2145, 0, 0, 0, 0, 0, 0, 2113, 8452, 25388, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 6371, 0, 0, 0, 0, 0, 0, 4258, 23275, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 27501, 6339, 0, 0, 0, 0, 0, 0, 4258, 23243, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19049, 4258, 32, 0, 0, 0, 0, 0, 0, 0, 4226, 16904, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4226, 23243, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 21130, 4258, 0, 0, 0, 0, 32, 2113, 4226, 2145, 0, 0, 0, 0, 2145, 16936, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29582, 6339, 0, 0, 0, 0, 2145, 12710, 19049, 21162, 16904, 4258, 0, 0, 0, 0, 4226, 23275, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 19049, 4258, 32, 0, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, 14791, 32, 0, 0, 0, 0, 4226, 16936, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 25388, 4226, 0, 0, 0, 0, 2145, 10597, 29582, 2016, 2016, 2016, 2016, 31727, 14791, 4226, 0, 0, 0, 0, 2145, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 19017, 4226, 0, 0, 0, 0, 0, 10597, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 14791, 32, 0, 0, 0, 0, 2145, 16904, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 25388, 4226, 0, 0, 0, 0, 2113, 10597, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 14791, 4226, 0, 0, 0, 0, 2145, 21162, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 19017, 4226, 0, 0, 0, 0, 0, 10565, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 2113, 14823, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 12678, 0, 0, 0, 0, 2145, 10565, 27469, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31695, 14791, 4226, 0, 0, 0, 0, 8484, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 23243, 6339, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 14823, 2113, 0, 0, 2113, 19049, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 21162, 6371, 4226, 10597, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 33808, 14823, 4258, 4258, 16936, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 21162, 19017, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19049, 19049, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_down.c b/lv_icon/x2/img_down.c deleted file mode 100644 index a10e7e22d..000000000 --- a/lv_icon/x2/img_down.c +++ /dev/null @@ -1,36 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_DOWN != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_down [] = { /*Width = 29, Height = 20*/ -29, /*Width*/ -20, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 23243, 23275, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 31695, 2016, 2016, 2016, -2016, 2016, 2016, 16904, 4258, 6371, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 23275, 8452, 4226, 12678, 2016, 2016, 2016, -2016, 2016, 16904, 2113, 0, 0, 6339, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 8452, 0, 0, 2113, 19017, 2016, 2016, -33808, 16904, 4258, 0, 0, 0, 0, 6371, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25356, 8452, 32, 0, 0, 0, 2113, 12710, 2016, -19049, 2145, 0, 0, 0, 0, 0, 0, 6339, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 8452, 0, 0, 0, 0, 0, 0, 2145, 23243, -16936, 32, 0, 0, 0, 0, 0, 0, 0, 6371, 19049, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 23243, 6371, 32, 0, 0, 0, 0, 0, 0, 2113, 19049, -29582, 12710, 2145, 0, 0, 0, 0, 0, 0, 0, 4258, 19049, 2016, 2016, 2016, 2016, 2016, 31695, 6371, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29582, -2016, 2016, 12678, 0, 0, 0, 0, 0, 0, 0, 0, 6371, 23243, 2016, 2016, 2016, 25356, 8452, 32, 0, 0, 0, 0, 0, 0, 32, 12678, 29582, 2016, -2016, 2016, 29614, 12710, 4226, 0, 0, 0, 0, 0, 0, 32, 8452, 19049, 2016, 2016, 8484, 0, 0, 0, 0, 0, 0, 0, 2113, 10597, 29614, 2016, 2016, -2016, 2016, 2016, 2016, 14791, 32, 0, 0, 0, 0, 0, 0, 32, 4226, 8484, 8452, 2113, 0, 0, 0, 0, 0, 0, 2113, 14791, 31695, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 31695, 12710, 4226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 31695, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 12678, 29614, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 29614, 12710, 2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29614, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 12710, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 12710, 2145, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 32, 12710, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 12710, 2145, 0, 0, 0, 32, 10597, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 12710, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 14791, 6371, 12678, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_driver.c b/lv_icon/x2/img_driver.c deleted file mode 100644 index 0c5b95b7d..000000000 --- a/lv_icon/x2/img_driver.c +++ /dev/null @@ -1,45 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_DRIVER != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_driver [] = { /*Width = 32, Height = 29*/ -32, /*Width*/ -29, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 31695, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31695, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 23243, 10597, 12678, 12678, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12678, 10597, 21162, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 10597, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8484, 29614, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 23275, 4226, 0, 4226, 6371, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6371, 4226, 0, 2145, 16936, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 31727, 12678, 32, 4258, 25356, 35921, 33808, 33808, 33808, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 33808, 35921, 25388, 8452, 2113, 6371, 25356, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 21162, 4258, 2145, 14823, 42260, 54938, 52825, 50744, 50744, 50744, 50744, 50744, 50744, 50744, 50744, 50744, 50744, 52825, 54938, 44373, 19017, 4258, 32, 16904, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 12678, 0, 10565, 27501, 54938, 65535, 63422, 63390, 63390, 63390, 63390, 63390, 63390, 63390, 63390, 63390, 63390, 63422, 65535, 54970, 31695, 12710, 0, 10565, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 6339, 0, 19017, 40147, 61277, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 61309, 42292, 21162, 2113, 4258, 31695, 2016, 2016, 2016, -2016, 2016, 2016, 25388, 2145, 4226, 29614, 50712, 63390, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 63390, 50744, 31727, 4258, 32, 19049, 2016, 2016, 2016, -2016, 2016, 2016, 14791, 0, 8484, 40179, 59196, 65503, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65503, 59196, 40179, 8484, 0, 8484, 27501, 2016, 2016, -2016, 2016, 21162, 4226, 0, 14791, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 48631, 12710, 0, 0, 16936, 2016, 2016, -2016, 2016, 12710, 0, 2145, 21162, 54970, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 54938, 19049, 32, 0, 10565, 2016, 2016, -2016, 2016, 8452, 0, 12710, 31727, 57083, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 57051, 29582, 8484, 0, 6371, 2016, 2016, -2016, 29582, 4226, 2145, 25356, 44373, 61309, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 61277, 38066, 19049, 2113, 2145, 23243, 2016, -2016, 16936, 32, 6371, 38034, 57083, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65503, 50712, 29614, 6339, 0, 10597, 29614, -27469, 6371, 0, 8452, 35953, 52857, 57051, 59164, 57083, 59196, 63422, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65503, 59196, 57083, 59164, 54970, 46518, 29614, 6371, 0, 2113, 21130, -19017, 0, 0, 4258, 23243, 31727, 31727, 31727, 29614, 38066, 54970, 65503, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 59164, 38066, 29614, 31727, 31695, 29582, 19049, 4226, 0, 0, 14791, -14823, 0, 0, 2145, 10597, 14823, 14791, 12710, 10597, 21130, 42260, 57051, 65503, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 61277, 46486, 23243, 10597, 12710, 14791, 14791, 10565, 2113, 0, 0, 10597, -14823, 0, 0, 0, 2113, 2145, 2145, 2113, 32, 8452, 23275, 42260, 63390, 65535, 65535, 65535, 65535, 65535, 65535, 63422, 48599, 29582, 8484, 32, 2113, 2145, 2145, 2113, 0, 0, 0, 12678, -16904, 0, 0, 0, 0, 0, 0, 0, 0, 32, 10565, 25388, 50712, 61277, 59164, 57083, 57083, 59164, 61277, 50744, 31727, 14823, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 12678, -16904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2113, 10565, 27469, 33840, 33808, 31727, 31727, 33808, 33840, 27501, 12710, 4226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12678, -16904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2113, 10597, 14823, 14791, 14791, 14791, 14791, 14823, 10597, 2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12678, -16904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2113, 2145, 2145, 2145, 2145, 2145, 2145, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12678, -16904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12678, -16904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12678, -14823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10597, -12710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8484, -23243, 6371, 6371, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 6371, 4226, 19017, -2016, 31727, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 31727, 31695, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_file.c b/lv_icon/x2/img_file.c deleted file mode 100644 index d6cde6c25..000000000 --- a/lv_icon/x2/img_file.c +++ /dev/null @@ -1,49 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_FILE != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_file [] = { /*Width = 24, Height = 33*/ -24, /*Width*/ -33, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 31695, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31695, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -27469, 12678, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12678, 12678, 19017, 31727, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -19017, 2113, 2113, 2113, 32, 0, 0, 0, 0, 0, 2113, 4226, 6339, 19049, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -14791, 0, 0, 0, 4226, 6339, 6339, 6339, 6371, 4258, 0, 0, 0, 6371, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -14823, 0, 0, 4258, 23275, 33808, 33808, 33808, 35921, 25388, 6371, 0, 4226, 6339, 6371, 19049, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -16904, 0, 0, 8484, 38066, 52857, 52825, 52857, 54970, 40179, 10565, 2145, 19017, 19049, 4226, 6371, 29582, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -16904, 0, 0, 10597, 46518, 63422, 63422, 65503, 65535, 48631, 10597, 8484, 42260, 46486, 19017, 6339, 6339, 19049, 2016, 2016, 2016, 2016, 2016, 2016, -16904, 0, 0, 12678, 50712, 65535, 65535, 65535, 65535, 52857, 12678, 10597, 52825, 61309, 38066, 19017, 2145, 6339, 27501, 2016, 2016, 2016, 2016, 2016, -16904, 0, 0, 12678, 50712, 65535, 65535, 65535, 65535, 52825, 10597, 10597, 50712, 65535, 61277, 44405, 19017, 4258, 6339, 19017, 2016, 2016, 2016, 2016, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 52825, 10597, 10597, 50712, 65535, 65535, 61309, 38066, 19049, 4226, 6371, 27501, 2016, 2016, 2016, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 52825, 10597, 10597, 50744, 65535, 65535, 65535, 63390, 48599, 21162, 8452, 6371, 19049, 2016, 2016, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 52825, 10597, 8452, 42260, 57083, 57083, 59164, 61277, 50712, 27469, 10565, 0, 4226, 27501, 2016, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 52825, 10597, 32, 19049, 29582, 29582, 29614, 29614, 27469, 21130, 10597, 32, 0, 4258, 23275, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 54938, 21162, 8484, 19017, 23243, 23243, 23243, 23243, 23243, 25356, 19017, 4226, 0, 0, 12678, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 59196, 42260, 33808, 35921, 35953, 35953, 35953, 35953, 38034, 40147, 29614, 8452, 0, 0, 10597, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 63422, 54970, 50744, 50712, 50712, 50712, 50712, 50712, 50744, 52857, 40179, 12678, 0, 0, 10597, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 63422, 63390, 63390, 63390, 63390, 63390, 63390, 63422, 65535, 50712, 14823, 0, 0, 10597, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 54938, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 54938, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 52857, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 52857, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 52857, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 52857, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 52857, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 52857, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 50712, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 54938, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 52825, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 57051, 16904, 0, 0, 12678, -16904, 0, 0, 10565, 42292, 59164, 59164, 57083, 57083, 57083, 57083, 57083, 57083, 57083, 57083, 57083, 57083, 59164, 61309, 46518, 14791, 0, 0, 12678, -16904, 0, 0, 4258, 23275, 33808, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 33808, 33840, 25388, 8452, 0, 0, 12678, -14823, 0, 0, 32, 8484, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 10565, 2113, 0, 0, 10597, -12710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8484, -23243, 6371, 6371, 6371, 6371, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6371, 6371, 6371, 4226, 19017, -2016, 31727, 33808, 33808, 33808, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 33808, 33808, 31727, 31695, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_folder.c b/lv_icon/x2/img_folder.c deleted file mode 100644 index 39ea32130..000000000 --- a/lv_icon/x2/img_folder.c +++ /dev/null @@ -1,44 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_FOLDER != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_folder [] = { /*Width = 34, Height = 28*/ -34, /*Width*/ -28, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31695, 31727, 31727, 31695, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 25356, 16904, 12710, 12710, 12710, 12710, 14823, 21162, 33808, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 27469, 12710, 6339, 4226, 2145, 2145, 2145, 2145, 2145, 4226, 10597, 27469, 2016, 33808, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31695, 29614, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 27469, 8452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8484, 14791, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 10597, 8484, 23243, 2016, 2016, 2016, -2016, 2016, 2016, 16904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, -2016, 2016, 2016, 23243, 6339, 8452, 8484, 8484, 8484, 8484, 8484, 8484, 8484, 8484, 8452, 8452, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 6339, 2145, 19017, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 33808, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 31695, 29582, 27501, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 27501, 29582, 29582, 2016, 2016, -2016, 29582, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14791, 12678, 25388, 2016, -2016, 25356, 8452, 4226, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 19049, 2016, -2016, 25356, 6339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19017, 2016, -2016, 29582, 10597, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4258, 23275, 2016, -2016, 33808, 14823, 2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2113, 8484, 27469, 2016, -2016, 2016, 19017, 4226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2145, 12678, 31695, 2016, -2016, 2016, 23243, 4258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4226, 16904, 2016, 2016, -2016, 2016, 25388, 6339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4226, 19049, 2016, 2016, -2016, 2016, 29614, 6371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4258, 23275, 2016, 2016, -2016, 2016, 33808, 8452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6339, 27469, 2016, 2016, -2016, 2016, 2016, 8484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6371, 31695, 2016, 2016, -2016, 2016, 2016, 10565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8452, 2016, 2016, 2016, -2016, 2016, 2016, 10565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8452, 2016, 2016, 2016, -2016, 2016, 2016, 8484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6371, 2016, 2016, 2016, -2016, 2016, 2016, 19049, 4226, 6371, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 6371, 4226, 16936, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 31695, 31727, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 31727, 31695, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_left.c b/lv_icon/x2/img_left.c deleted file mode 100644 index 359bacbd0..000000000 --- a/lv_icon/x2/img_left.c +++ /dev/null @@ -1,46 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_LEFT != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_left [] = { /*Width = 19, Height = 30*/ -19, /*Width*/ -30, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 33808, 29582, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 27501, 14791, 10565, 21162, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29582, 10565, 32, 0, 6371, 23243, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 12678, 32, 0, 0, 0, 6371, 23243, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31695, 10597, 32, 0, 0, 0, 0, 0, 8452, 25356, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31695, 14791, 2113, 0, 0, 0, 0, 0, 0, 2145, 21130, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 29582, 10597, 2113, 0, 0, 0, 0, 0, 0, 0, 8452, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 29582, 12678, 32, 0, 0, 0, 0, 0, 0, 32, 8452, 23275, 2016, -2016, 2016, 2016, 2016, 2016, 29614, 10597, 32, 0, 0, 0, 0, 0, 0, 0, 8452, 31727, 2016, 2016, -2016, 2016, 2016, 2016, 29614, 12710, 32, 0, 0, 0, 0, 0, 0, 32, 8452, 25356, 2016, 2016, 2016, -2016, 2016, 2016, 29614, 10597, 32, 0, 0, 0, 0, 0, 0, 0, 8452, 31727, 2016, 2016, 2016, 2016, -2016, 2016, 29614, 12710, 32, 0, 0, 0, 0, 0, 0, 2113, 8452, 25356, 2016, 2016, 2016, 2016, 2016, -2016, 29614, 10597, 32, 0, 0, 0, 0, 0, 0, 0, 8452, 31727, 2016, 2016, 2016, 2016, 2016, 2016, -29614, 12678, 32, 0, 0, 0, 0, 0, 0, 32, 8452, 23275, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -12678, 0, 0, 0, 0, 0, 0, 0, 0, 6371, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -8484, 0, 0, 0, 0, 0, 0, 0, 0, 6371, 31727, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -23243, 6339, 0, 0, 0, 0, 0, 0, 0, 2113, 10597, 29582, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 21162, 6371, 0, 0, 0, 0, 0, 0, 0, 32, 14791, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 21162, 6371, 0, 0, 0, 0, 0, 0, 0, 4226, 12710, 29614, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 23243, 8452, 0, 0, 0, 0, 0, 0, 0, 0, 12710, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 23243, 6371, 0, 0, 0, 0, 0, 0, 0, 2145, 12710, 29614, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 23243, 8452, 0, 0, 0, 0, 0, 0, 0, 0, 12710, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 23243, 6371, 0, 0, 0, 0, 0, 0, 0, 2145, 12710, 29614, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 23243, 6371, 0, 0, 0, 0, 0, 0, 0, 0, 12710, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 21130, 4258, 0, 0, 0, 0, 0, 0, 0, 4226, 19017, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 21130, 6371, 0, 0, 0, 0, 0, 0, 4258, 19049, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 23243, 6371, 0, 0, 0, 0, 2113, 16904, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 23243, 8452, 0, 0, 4258, 16904, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 21162, 8452, 4258, 16904, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 21162, 31727, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_ok.c b/lv_icon/x2/img_ok.c deleted file mode 100644 index 3c6da7e59..000000000 --- a/lv_icon/x2/img_ok.c +++ /dev/null @@ -1,47 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_OK != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_ok [] = { /*Width = 34, Height = 31*/ -34, /*Width*/ -31, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19017, 6339, 6371, 21130, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4226, 0, 0, 6339, 29582, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19049, 4258, 0, 0, 0, 32, 8452, 25388, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 27501, 4258, 0, 0, 0, 0, 2145, 10565, 29582, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19049, 4258, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4226, 0, 0, 0, 0, 2145, 12678, 29582, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19017, 4226, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4226, 0, 0, 0, 0, 2145, 12678, 29582, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19017, 4226, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4226, 0, 0, 0, 0, 2145, 12678, 29582, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 21130, 4258, 0, 0, 0, 0, 0, 10565, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 33808, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 27501, 6339, 0, 0, 0, 0, 2145, 10597, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 25356, 10565, 6339, 14823, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19049, 4258, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 8484, 0, 0, 2113, 21130, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4226, 0, 0, 0, 0, 2145, 12678, 29582, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 31727, 12710, 2113, 0, 0, 0, 2145, 16936, 2016, 2016, 2016, 2016, 21130, 4258, 0, 0, 0, 0, 0, 10597, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 33808, 14823, 4226, 0, 0, 0, 0, 4226, 25356, 2016, 2016, 29614, 6371, 0, 0, 0, 0, 2145, 10597, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 14791, 0, 0, 0, 0, 32, 6339, 10565, 12678, 8484, 2113, 0, 0, 0, 0, 10597, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 31727, 14791, 4226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2145, 10597, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 16904, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 16904, 4258, 0, 0, 0, 0, 0, 0, 2145, 12678, 29582, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 16904, 2113, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 16904, 4258, 0, 0, 2145, 12678, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 16904, 2113, 0, 12678, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 19017, 16904, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_right.c b/lv_icon/x2/img_right.c deleted file mode 100644 index 59d06c90a..000000000 --- a/lv_icon/x2/img_right.c +++ /dev/null @@ -1,46 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_RIGHT != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_right [] = { /*Width = 19, Height = 30*/ -19, /*Width*/ -30, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 29582, 33808, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 21162, 10565, 14791, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 23243, 6371, 0, 32, 10565, 29582, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 23243, 6371, 0, 0, 0, 32, 12678, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -25356, 8452, 0, 0, 0, 0, 0, 32, 10597, 31695, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -21130, 2145, 0, 0, 0, 0, 0, 0, 2113, 14791, 31695, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 8452, 0, 0, 0, 0, 0, 0, 0, 2113, 10597, 29582, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 23275, 8452, 32, 0, 0, 0, 0, 0, 0, 32, 12678, 29582, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 31727, 8452, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29614, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 25356, 8452, 32, 0, 0, 0, 0, 0, 0, 32, 12710, 29614, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 31727, 8452, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29614, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 25356, 8452, 2113, 0, 0, 0, 0, 0, 0, 32, 12710, 29614, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 31727, 8452, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29614, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 23275, 8452, 32, 0, 0, 0, 0, 0, 0, 32, 12678, 29614, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 6371, 0, 0, 0, 0, 0, 0, 0, 0, 12678, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 6371, 0, 0, 0, 0, 0, 0, 0, 0, 8484, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 29582, 10597, 2113, 0, 0, 0, 0, 0, 0, 0, 6339, 23243, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 14791, 32, 0, 0, 0, 0, 0, 0, 0, 6371, 21162, 2016, -2016, 2016, 2016, 2016, 2016, 29614, 12710, 4226, 0, 0, 0, 0, 0, 0, 0, 6371, 21162, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 0, 0, 8452, 23243, 2016, 2016, 2016, -2016, 2016, 2016, 29614, 12710, 2145, 0, 0, 0, 0, 0, 0, 0, 6371, 23243, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 0, 0, 8452, 23243, 2016, 2016, 2016, 2016, 2016, -2016, 29614, 12710, 2145, 0, 0, 0, 0, 0, 0, 0, 6371, 23243, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 12710, 0, 0, 0, 0, 0, 0, 0, 0, 6371, 23243, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -19017, 4226, 0, 0, 0, 0, 0, 0, 0, 4258, 21130, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -19049, 4258, 0, 0, 0, 0, 0, 0, 6371, 21130, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 16904, 2113, 0, 0, 0, 0, 6371, 23243, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 16904, 4258, 0, 0, 8452, 23243, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 16904, 4258, 8452, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 31727, 21162, 25388, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_up.c b/lv_icon/x2/img_up.c deleted file mode 100644 index dec34790b..000000000 --- a/lv_icon/x2/img_up.c +++ /dev/null @@ -1,36 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_UP != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_up [] = { /*Width = 29, Height = 20*/ -29, /*Width*/ -20, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 14791, 6371, 12678, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 12710, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 12710, 2145, 0, 0, 0, 32, 10597, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 32, 12710, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 12710, 2145, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 12710, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 29614, 12710, 2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29614, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 12678, 29614, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 31695, 12710, 4226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 31695, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 14791, 32, 0, 0, 0, 0, 0, 0, 32, 4226, 8484, 8452, 2113, 0, 0, 0, 0, 0, 0, 2113, 14791, 31695, 2016, 2016, 2016, -2016, 2016, 29614, 12710, 4226, 0, 0, 0, 0, 0, 0, 32, 8452, 19049, 2016, 2016, 8484, 0, 0, 0, 0, 0, 0, 0, 2113, 10597, 29614, 2016, 2016, -2016, 2016, 12678, 0, 0, 0, 0, 0, 0, 0, 0, 6371, 23243, 2016, 2016, 2016, 25356, 8452, 32, 0, 0, 0, 0, 0, 0, 32, 12678, 29582, 2016, -29582, 12710, 2145, 0, 0, 0, 0, 0, 0, 0, 4258, 19049, 2016, 2016, 2016, 2016, 2016, 31695, 6371, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29582, -16936, 32, 0, 0, 0, 0, 0, 0, 0, 6371, 19049, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 23243, 6371, 32, 0, 0, 0, 0, 0, 0, 2113, 19049, -19049, 2145, 0, 0, 0, 0, 0, 0, 6339, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 8452, 0, 0, 0, 0, 0, 0, 2145, 23243, -33808, 16904, 4258, 0, 0, 0, 0, 6371, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25356, 8452, 32, 0, 0, 0, 2113, 12710, 2016, -2016, 2016, 16904, 2113, 0, 0, 6339, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 8452, 0, 0, 2113, 19017, 2016, 2016, -2016, 2016, 2016, 16904, 4258, 6371, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 23275, 8452, 4226, 12678, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 23243, 23275, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 31695, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_misc/anim.c b/lv_misc/anim.c deleted file mode 100644 index df97f8187..000000000 --- a/lv_misc/anim.c +++ /dev/null @@ -1,259 +0,0 @@ -/** - * @file anim.c - * - */ - -/********************* - * INCLUDES - *********************/ -#include -#include "anim.h" -#include "misc/math/math_base.h" -#include "misc/os/ptask.h" -#include "hal/systick/systick.h" - - -/********************* - * DEFINES - *********************/ -#define ANIM_PATH_LENGTH 129 /*Elements in a path array*/ -#define ANIM_PATH_START 64 /*In path array a value which corresponds to the start position*/ -#define ANIM_PATH_END 192 /* ... to the end position. Not required, just for clearance.*/ -#define ANIM_PATH_NORM_SHIFT 7 /*ANIM_PATH_START - ANIM_PATH_END. Must be 2^N. The exponent goes here. */ - -/********************** - * TYPEDEFS - **********************/ - -/********************** - * STATIC PROTOTYPES - **********************/ -static void anim_task (void * param); -static bool anim_ready_handler(anim_t * a); - -/********************** - * STATIC VARIABLES - **********************/ -static ll_dsc_t anim_ll; -static uint32_t last_task_run; -static bool anim_del_global_flag = false; - -static anim_path_t anim_path_lin[] = - {64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, - 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, - 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192}; - -static anim_path_t anim_path_step[] = - {64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, - 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, - 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, - 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 192,}; - -/********************** - * MACROS - **********************/ - -/********************** - * GLOBAL FUNCTIONS - **********************/ - -/** - * Init. the animation module - */ -void anim_init(void) -{ - ll_init(&anim_ll, sizeof(anim_t)); - last_task_run = systick_get(); - ptask_create(anim_task, LV_REFR_PERIOD, PTASK_PRIO_MID, NULL); -} - -/** - * Create an animation - * @param anim_p an initialized 'anim_t' variable. Not required after call. - */ -void anim_create(anim_t * anim_p) -{ - /*Add the new animation to the animation linked list*/ - anim_t * new_anim = ll_ins_head(&anim_ll); - dm_assert(new_anim); - - /*Initialize the animation descriptor*/ - anim_p->playback_now = 0; - memcpy(new_anim, anim_p, sizeof(anim_t)); - - /*Set the start value*/ - if(new_anim->fp != NULL) new_anim->fp(new_anim->var, new_anim->start); -} - -/** - * Delete an animation for a variable with a given animatior function - * @param var pointer to variable - * @param fp a function pointer which is animating 'var', - * or NULL to ignore it and delete all animation with 'var - * @return true: at least 1 animation is deleted, false: no animation is deleted - */ -bool anim_del(void * var, anim_fp_t fp) -{ - bool del = false; - anim_t * a; - anim_t * a_next; - a = ll_get_head(&anim_ll); - while(a != NULL) { - /*'a' might be deleted, so get the next object while 'a' is valid*/ - a_next = ll_get_next(&anim_ll, a); - - if(a->var == var && (a->fp == fp || fp == NULL)) { - ll_rem(&anim_ll, a); - dm_free(a); - del = true; - anim_del_global_flag = true; - } - - a = a_next; - } - - return del; -} - -/** - * Calculate the time of an animation with a given speed and the start and end values - * @param speed speed of animation in unit/sec - * @param start start value of the animation - * @param end end value of the animation - * @return the required time [ms] for the animation with the given parameters - */ -uint16_t anim_speed_to_time(uint16_t speed, int32_t start, int32_t end) -{ - int32_t d = MATH_ABS((int32_t) start - end); - uint16_t time = (int32_t)((int32_t)(d * 1000) / speed); - - if(time == 0) { - time++; - } - - return time; -} - -/** - * Get a predefine animation path - * @param name name of the path from 'anim_path_name_t' - * @return pointer to the path array - */ -anim_path_t * anim_get_path(anim_path_name_t name) -{ - switch (name) { - case ANIM_PATH_LIN: - return anim_path_lin; - break; - case ANIM_PATH_STEP: - return anim_path_step; - break; - default: - return NULL; - break; - } -} -/********************** - * STATIC FUNCTIONS - **********************/ - -/** - * Periodically handle the animations. - * @param param unused - */ -static void anim_task (void * param) -{ - uint32_t elaps; - elaps = systick_elaps(last_task_run); - - anim_t * a; - anim_t * a_next; - a = ll_get_head(&anim_ll); - while(a != NULL) { - /*'a' might be deleted, so get the next object while 'a' is valid*/ - a_next = ll_get_next(&anim_ll, a); - - a->act_time += elaps; - if(a->act_time >= 0) { - if(a->act_time > a->time) a->act_time = a->time; - - /* Get the index of the path array based on the elapsed time*/ - uint8_t path_i; - if(a->time == a->act_time) { - path_i = ANIM_PATH_LENGTH - 1; /*Use the last value id the time fully elapsed*/ - } else { - path_i = a->act_time * (ANIM_PATH_LENGTH - 1) / a->time; - } - /* Get the new value which will be proportional to the current element of 'path_p' - * and the 'start' and 'end' values*/ - int32_t new_val; - new_val = (int32_t)(a->path[path_i] - ANIM_PATH_START) * (a->end - a->start); - new_val = new_val >> ANIM_PATH_NORM_SHIFT; - new_val += a->start; - - if(a->fp != NULL) a->fp(a->var, new_val); /*Apply the calculated value*/ - - /*If the time is elapsed the animation is ready*/ - if(a->act_time >= a->time) { - bool invalid; - invalid = anim_ready_handler(a); - if(invalid != false) { - a_next = ll_get_head(&anim_ll); /*a_next might be invalid if animation delete occurred*/ - } - } - } - - a = a_next; - } - - last_task_run = systick_get(); -} - -/** - * Called when an animation is ready to do the necessary thinks - * e.g. repeat, play back, delete etc. - * @param a pointer to an animation descriptor - * @return true: animation delete occurred - * */ -static bool anim_ready_handler(anim_t * a) -{ - bool invalid = false; - - /*Delete the animation if - * - no repeat and no play back (simple one shot animation) - * - no repeat, play back is enabled and play back is ready */ - if((a->repeat == 0 && a->playback == 0) || - (a->repeat == 0 && a->playback == 1 && a->playback_now == 1)) { - void (*cb) (void *) = a->end_cb; - void * p = a->var; - ll_rem(&anim_ll, a); - dm_free(a); - - /*Call the callback function at the end*/ - /* Check if an animation is deleted in the cb function - * if yes then the caller function has to know this*/ - anim_del_global_flag = false; - if(cb != NULL) cb(p); - invalid = anim_del_global_flag; - } - /*If the animation is not deleted then restart it*/ - else { - a->act_time = - a->repeat_pause; /*Restart the animation*/ - /*Swap the start and end values in play back mode*/ - if(a->playback != 0) { - /*If now turning back use the 'playback_pause*/ - if(a->playback_now == 0) a->act_time = - a->playback_pause; - - /*Toggle the play back state*/ - a->playback_now = a->playback_now == 0 ? 1: 0; - /*Swap the start and end values*/ - int32_t tmp; - tmp = a->start; - a->start = a->end; - a->end = tmp; - } - } - - return invalid; -} diff --git a/lv_misc/anim.h b/lv_misc/anim.h deleted file mode 100644 index a617b57a7..000000000 --- a/lv_misc/anim.h +++ /dev/null @@ -1,95 +0,0 @@ -/** - * @file anim.h - * - */ - -#ifndef ANIM_H -#define ANIM_H - -/********************* - * INCLUDES - *********************/ -#include "lvgl/lvgl.h" - -/********************* - * DEFINES - *********************/ - -/********************** - * TYPEDEFS - **********************/ - -typedef enum -{ - ANIM_PATH_LIN, - ANIM_PATH_STEP, -}anim_path_name_t; - -typedef uint8_t anim_path_t; - -typedef void (*anim_fp_t)(void *, int32_t); -typedef void (*anim_cb_t)(void *); - -typedef struct -{ - void * var; /*Variable to animate*/ - anim_fp_t fp; /*Animator function*/ - anim_cb_t end_cb; /*Call it when the animation is ready*/ - anim_path_t * path; /*An array with the steps of animations*/ - int32_t start; /*Start value*/ - int32_t end; /*End value*/ - int16_t time; /*Animation time in ms*/ - int16_t act_time; /*Current time in animation. Set to negative to make delay.*/ - uint16_t playback_pause; /*Wait before play back*/ - uint16_t repeat_pause; /*Wait before repeat*/ - uint8_t playback :1; /*When the animation is ready play it back*/ - uint8_t repeat :1; /*Repeat the animation infinitely*/ - /*Animation system use these - user shouldn't set*/ - uint8_t playback_now :1; /*Play back is in progress*/ -}anim_t; - -/********************** - * GLOBAL PROTOTYPES - **********************/ - -/** - * Init. the animation module - */ -void anim_init(void); - -/** - * Create an animation - * @param anim_p an initialized 'anim_t' variable. Not required after call. - */ -void anim_create(anim_t * anim_p); - -/** - * Delete an animation for a variable with a given animatior function - * @param var pointer to variable - * @param fp a function pointer which is animating 'var', - * or NULL to ignore it and delete all animation with 'var - * @return true: at least 1 animation is deleted, false: no animation is deleted - */ -bool anim_del(void * var, anim_fp_t fp); - -/** - * Calculate the time of an animation with a given speed and the start and end values - * @param speed speed of animation in unit/sec - * @param start start value of the animation - * @param end end value of the animation - * @return the required time [ms] for the animation with the given parameters - */ -uint16_t anim_speed_to_time(uint16_t speed, int32_t start, int32_t end); - -/** - * Get a predefine animation path - * @param name name of the path from 'anim_path_name_t' - * @return pointer to the path array - */ -anim_path_t * anim_get_path(anim_path_name_t name); - -/********************** - * MACROS - **********************/ - -#endif diff --git a/lv_misc/area.c b/lv_misc/area.c deleted file mode 100644 index 21c398081..000000000 --- a/lv_misc/area.c +++ /dev/null @@ -1,233 +0,0 @@ -/** - * @file 2d.c - * - */ - -/********************* - * INCLUDES - *********************/ -#include -#include "misc/math/math_base.h" - -/********************* - * DEFINES - *********************/ - -/********************** - * TYPEDEFS - **********************/ - -/********************** - * STATIC PROTOTYPES - **********************/ - -/********************** - * STATIC VARIABLES - **********************/ - -/********************** - * MACROS - **********************/ - -/********************** - * GLOBAL FUNCTIONS - **********************/ - -/** - * Initialize an area - * @param area_p pointer to an area - * @param x1 left coordinate of the area - * @param y1 top coordinate of the area - * @param x2 right coordinate of the area - * @param y2 bottom coordinate of the area - */ -void area_set(area_t * area_p, cord_t x1, cord_t y1, cord_t x2, cord_t y2) -{ - area_p->x1 = x1; - area_p->y1 = y1; - area_p->x2 = x2; - area_p->y2 = y2; -} - -/** - * Set the width of an area - * @param area_p pointer to an area - * @param w the new width of the area (w == 1 makes x1 == x2) - */ -void area_set_width(area_t * area_p, cord_t w) -{ - area_p->x2 = area_p->x1 + w - 1; -} - -/** - * Set the height of an area - * @param area_p pointer to an area - * @param h the new height of the area (h == 1 makes y1 == y2) - */ -void area_set_height(area_t * area_p, cord_t h) -{ - area_p->y2 = area_p->y1 + h - 1; -} - -/** - * Set the position of an area (width and height will be kept) - * @param area_p pointer to an area - * @param x the new x coordinate of the area - * @param y the new y coordinate of the area - */ -void area_set_pos(area_t * area_p, cord_t x, cord_t y) -{ - cord_t w = area_get_width(area_p); - cord_t h = area_get_height(area_p); - area_p->x1 = x; - area_p->y1 = y; - area_set_width(area_p, w); - area_set_height(area_p, h); -} - -/** - * Return with area of an area (x * y) - * @param area_p pointer to an area - * @return size of area - */ -uint32_t area_get_size(const area_t * area_p) -{ - uint32_t size; - - size = (uint32_t)(area_p->x2 - area_p->x1 + 1) * - (area_p->y2 - area_p->y1 + 1); - - return size; -} - -/** - * Get the common parts of two areas - * @param res_p pointer to an area, the result will be stored her - * @param a1_p pointer to the first area - * @param a2_p pointer to the second area - * @return false: the two area has NO common parts, res_p is invalid - */ -bool area_union(area_t * res_p, const area_t * a1_p, const area_t * a2_p) -{ - /* Get the smaller area from 'a1_p' and 'a2_p' */ - res_p->x1 = MATH_MAX(a1_p->x1, a2_p->x1); - res_p->y1 = MATH_MAX(a1_p->y1, a2_p->y1); - res_p->x2 = MATH_MIN(a1_p->x2, a2_p->x2); - res_p->y2 = MATH_MIN(a1_p->y2, a2_p->y2); - - /*If x1 or y1 greater then x2 or y2 then the areas union is empty*/ - bool union_ok = true; - if((res_p->x1 > res_p->x2) || - (res_p->y1 > res_p->y2)) - { - union_ok = false; - } - - return union_ok; -} -/** - * Join two areas into a third which involves the other two - * @param res_p pointer to an area, the result will be stored here - * @param a1_p pointer to the first area - * @param a2_p pointer to the second area - */ -void area_join(area_t * a_res_p, const area_t * a1_p, const area_t * a2_p) -{ - a_res_p->x1 = MATH_MIN(a1_p->x1, a2_p->x1); - a_res_p->y1 = MATH_MIN(a1_p->y1, a2_p->y1); - a_res_p->x2 = MATH_MAX(a1_p->x2, a2_p->x2); - a_res_p->y2 = MATH_MAX(a1_p->y2, a2_p->y2); -} - -/** - * Check if a point is on an area - * @param a_p pointer to an area - * @param p_p pointer to a point - * @return false:the point is out of the area - */ -bool area_is_point_on(const area_t * a_p, const point_t * p_p) -{ - bool is_on = false; - - if((p_p->x >= a_p->x1 && p_p->x <= a_p->x2) && - ((p_p->y >= a_p->y1 && p_p->y <= a_p->y2))) - { - is_on = true; - } - - return is_on; -} - -/** - * Check if two area has common parts - * @param a1_p pointer to an area. - * @param a2_p pointer to an other area - * @return false: a1_p and a2_p has no common parts - */ -bool area_is_on(const area_t * a1_p, const area_t * a2_p) -{ - /*Two area are on each other if... */ - - point_t p; - /*a2 left-top corner is on a1*/ - p.x = a2_p->x1; - p.y = a2_p->y1; - if(area_is_point_on(a1_p, &p)) return true; - - /*a2 right-top corner is on a1*/ - p.x = a2_p->x1; - p.y = a2_p->y1; - if(area_is_point_on(a1_p, &p)) return true; - - /*a2 left-bottom corner is on a1*/ - p.x = a2_p->x1; - p.y = a2_p->y2; - if(area_is_point_on(a1_p, &p)) return true; - - /*a2 right-bottom corner is on a1*/ - p.x = a2_p->x2; - p.y = a2_p->y2; - if(area_is_point_on(a1_p, &p)) return true; - - /*a2 is horizontally bigger then a1 and covers it*/ - if((a2_p->x1 <= a1_p->x1 && a2_p->x2 >= a1_p->x2) && /*a2 hor. cover a1?*/ - ((a2_p->y1 <= a1_p->y1 && a2_p->y1 >= a1_p->y2) || /*upper edge is on a1?*/ - (a2_p->y2 <= a1_p->y1 && a2_p->y2 >= a1_p->y2) ||/* or lower edge is on a1?*/ - (a2_p->y1 <= a1_p->y1 && a2_p->y2 >= a1_p->y2))) /*or a2 vert bigger then a1*/ - return true; - - /*a2 is vertically bigger then a1 and covers it*/ - if((a2_p->y1 <= a1_p->y1 && a2_p->y2 >= a1_p->y2) && /*a2 vert. cover a1?*/ - ((a2_p->x1 <= a1_p->x1 && a2_p->x1 >= a1_p->x2) || /*left edge is on a1?*/ - (a2_p->x2 <= a1_p->x1 && a2_p->x2 >= a1_p->x2) ||/* or right edge is on a1?*/ - (a2_p->x1 <= a1_p->x1 && a2_p->x2 >= a1_p->x2))) /*or a2 hor. bigger then a1*/ - return true; - - /*Else no cover*/ - return false; -} - -/** - * Check if an area is fully on an other - * @param ain_p pointer to an area which could be on aholder_p - * @param aholder pointer to an area which could involve ain_p - * @return - */ -bool area_is_in(const area_t * ain_p, const area_t * aholder_p) -{ - bool is_in = false; - - if(ain_p->x1 >= aholder_p->x1 && - ain_p->y1 >= aholder_p->y1 && - ain_p->x2 <= aholder_p->x2 && - ain_p->y2 <= aholder_p->y2) - { - is_in = true; - } - - return is_in; -} - -/********************** - * STATIC FUNCTIONS - **********************/ diff --git a/lv_misc/area.h b/lv_misc/area.h deleted file mode 100644 index 96514fc6c..000000000 --- a/lv_misc/area.h +++ /dev/null @@ -1,158 +0,0 @@ -/** - * @file area.h - * - */ - -#ifndef AREA_H -#define AREA_H - -/********************* - * INCLUDES - *********************/ -#include "lv_conf.h" -#include -#include -#include - -/********************* - * DEFINES - *********************/ - -/********************** - * TYPEDEFS - **********************/ -typedef LV_CORD_TYPE cord_t; - -typedef struct -{ - cord_t x; - cord_t y; -}point_t; - -typedef struct -{ - cord_t x1; - cord_t y1; - cord_t x2; - cord_t y2; -}area_t; - -/********************** - * GLOBAL PROTOTYPES - **********************/ - -/** - * Initialize an area - * @param area_p pointer to an area - * @param x1 left coordinate of the area - * @param y1 top coordinate of the area - * @param x2 right coordinate of the area - * @param y2 bottom coordinate of the area - */ -void area_set(area_t * area_p, cord_t x1, cord_t y1, cord_t x2, cord_t y2); - -/** - * Copy an area - * @param dest pointer to the destination area - * @param src pointer to the source area - */ -static void inline area_cpy(area_t * dest, const area_t * src) -{ - memcpy(dest, src, sizeof(area_t)); -} - -/** - * Get the width of an area - * @param area_p pointer to an area - * @return the width of the area (if x1 == x2 -> width = 1) - */ -static inline cord_t area_get_width(const area_t * area_p) -{ - return area_p->x2 - area_p->x1 + 1; -} - -/** - * Get the height of an area - * @param area_p pointer to an area - * @return the height of the area (if y1 == y2 -> height = 1) - */ -static inline cord_t area_get_height(const area_t * area_p) -{ - return area_p->y2 - area_p->y1 + 1; -} - -/** - * Set the width of an area - * @param area_p pointer to an area - * @param w the new width of the area (w == 1 makes x1 == x2) - */ -void area_set_width(area_t * area_p, cord_t w); - -/** - * Set the height of an area - * @param area_p pointer to an area - * @param h the new height of the area (h == 1 makes y1 == y2) - */ -void area_set_height(area_t * area_p, cord_t h); - -/** - * Set the position of an area (width and height will be kept) - * @param area_p pointer to an area - * @param x the new x coordinate of the area - * @param y the new y coordinate of the area - */ -void area_set_pos(area_t * area_p, cord_t x, cord_t y); - -/** - * Return with area of an area (x * y) - * @param area_p pointer to an area - * @return size of area - */ -uint32_t area_get_size(const area_t * area_p); - -/** - * Get the common parts of two areas - * @param res_p pointer to an area, the result will be stored her - * @param a1_p pointer to the first area - * @param a2_p pointer to the second area - * @return false: the two area has NO common parts, res_p is invalid - */ -bool area_union(area_t * res_p, const area_t * a1_p, const area_t * a2_p); - -/** - * Join two areas into a third which involves the other two - * @param res_p pointer to an area, the result will be stored here - * @param a1_p pointer to the first area - * @param a2_p pointer to the second area - */ -void area_join(area_t * a_res_p, const area_t * a1_p, const area_t * a2_p); - -/** - * Check if a point is on an area - * @param a_p pointer to an area - * @param p_p pointer to a point - * @return false:the point is out of the area - */ -bool area_is_point_on(const area_t * a_p, const point_t * p_p); - -/** - * Check if two area has common parts - * @param a1_p pointer to an area. - * @param a2_p pointer to an other area - * @return false: a1_p and a2_p has no common parts - */ -bool area_is_on(const area_t * a1_p, const area_t * a2_p); - -/** - * Check if an area is fully on an other - * @param ain_p pointer to an area which could be on aholder_p - * @param aholder pointer to an area which could involve ain_p - * @return - */ -bool area_is_in(const area_t * ain_p, const area_t * aholder_p); - -/********************** - * MACROS - **********************/ - -#endif diff --git a/lv_misc/circ.c b/lv_misc/circ.c deleted file mode 100644 index 100474f96..000000000 --- a/lv_misc/circ.c +++ /dev/null @@ -1,79 +0,0 @@ -/** - * @file circ.c - * Circle drawing algorithm (with Bresenham) - * Only a 1/8 circle is calculated. Use CIRC_OCT1_X, CIRC_OCT1_Y macros to get - * the other octets. - */ - -/********************* - * INCLUDES - *********************/ -#include - -/********************* - * DEFINES - *********************/ - -/********************** - * TYPEDEFS - **********************/ - -/********************** - * STATIC PROTOTYPES - **********************/ - -/********************** - * STATIC VARIABLES - **********************/ - -/********************** - * MACROS - **********************/ - -/********************** - * GLOBAL FUNCTIONS - **********************/ - -/** - * Initialize the circle drawing - * @param c pointer to a point. The coordinates will be calculated here - * @param tmp point to a variable. It will store temporary data - * @param radius radius of the circle - */ -void circ_init(point_t * c, cord_t * tmp, cord_t radius) -{ - c->x = radius; - c->y = 0; - *tmp = 1 - radius; -} - -/** - * Test the circle drawing is ready or not - * @param c same as in circ_init - * @return true if the circle is not ready yet - */ -bool circ_cont(point_t * c) -{ - return c->y <= c->x ? true : false; -} - -/** - * Get the next point from the circle - * @param c same as in circ_init. The next point stored here. - * @param tmp same as in circ_init. - */ -void circ_next(point_t * c, cord_t * tmp) -{ - c->y++; - - if (*tmp <= 0) { - (*tmp) += 2 * c->y + 1; // Change in decision criterion for y -> y+1 - } else { - c->x--; - (*tmp) += 2 * (c->y - c->x) + 1; // Change for y -> y+1, x -> x-1 - } -} - -/********************** - * STATIC FUNCTIONS - **********************/ diff --git a/lv_misc/circ.h b/lv_misc/circ.h deleted file mode 100644 index 3fdcb0025..000000000 --- a/lv_misc/circ.h +++ /dev/null @@ -1,70 +0,0 @@ -/** - * @file circ.h - * - */ - -#ifndef CIRC_H -#define CIRC_H - -/********************* - * INCLUDES - *********************/ - -#include -#include - -/********************* - * DEFINES - *********************/ -#define CIRC_OCT1_X(p) (p.x) -#define CIRC_OCT1_Y(p) (p.y) -#define CIRC_OCT2_X(p) (p.y) -#define CIRC_OCT2_Y(p) (p.x) -#define CIRC_OCT3_X(p) (-p.y) -#define CIRC_OCT3_Y(p) (p.x) -#define CIRC_OCT4_X(p) (-p.x) -#define CIRC_OCT4_Y(p) (p.y) -#define CIRC_OCT5_X(p) (-p.x) -#define CIRC_OCT5_Y(p) (-p.y) -#define CIRC_OCT6_X(p) (-p.y) -#define CIRC_OCT6_Y(p) (-p.x) -#define CIRC_OCT7_X(p) (p.y) -#define CIRC_OCT7_Y(p) (-p.x) -#define CIRC_OCT8_X(p) (p.x) -#define CIRC_OCT8_Y(p) (-p.y) - -/********************** - * TYPEDEFS - **********************/ - -/********************** - * GLOBAL PROTOTYPES - **********************/ - -/** - * Initialize the circle drawing - * @param c pointer to a point. The coordinates will be calculated here - * @param tmp point to a variable. It will store temporary data - * @param radius radius of the circle - */ -void circ_init(point_t * c, cord_t * tmp, cord_t radius); - -/** - * Test the circle drawing is ready or not - * @param c same as in circ_init - * @return true if the circle is not ready yet - */ -bool circ_cont(point_t * c); - -/** - * Get the next point from the circle - * @param c same as in circ_init. The next point stored here. - * @param tmp same as in circ_init. - */ -void circ_next(point_t * c, cord_t * tmp); - -/********************** - * MACROS - **********************/ - -#endif diff --git a/lv_misc/font.c b/lv_misc/font.c deleted file mode 100644 index a0600d053..000000000 --- a/lv_misc/font.c +++ /dev/null @@ -1,163 +0,0 @@ -/** - * @file font.c - * - */ - -/********************* - * INCLUDES - *********************/ -#include -#include -#include "font.h" -#include "fonts/dejavu_8.h" -#include "fonts/dejavu_10.h" -#include "fonts/dejavu_14.h" -#include "fonts/dejavu_20.h" -#include "fonts/dejavu_30.h" -#include "fonts/dejavu_40.h" -#include "fonts/dejavu_60.h" -#include "fonts/dejavu_80.h" -#include "fonts/symbol_30.h" -#include "fonts/symbol_60.h" - -/********************* - * DEFINES - *********************/ - -/********************** - * TYPEDEFS - **********************/ - -/********************** - * STATIC PROTOTYPES - **********************/ - -/********************** - * STATIC VARIABLES - **********************/ - -/********************** - * GLOBAL PROTOTYPES - **********************/ - -/********************** - * MACROS - **********************/ - -/********************** - * GLOBAL FUNCTIONS - **********************/ - -/** - * Get the font from its id - * @param font_id: the id of a font (an element of font_types_t enum) - * @return pointer to a font descriptor - */ -const font_t * font_get(font_types_t font_id) -{ - const font_t * font_p = NULL; - - switch(font_id) - { -#if USE_FONT_DEJAVU_8 != 0 - case FONT_DEJAVU_8: - font_p = dejavu_8_get_dsc(); - break; -#endif -#if USE_FONT_DEJAVU_10 != 0 - case FONT_DEJAVU_10: - font_p = dejavu_10_get_dsc(); - break; -#endif -#if USE_FONT_DEJAVU_14 != 0 - case FONT_DEJAVU_14: - font_p = dejavu_14_get_dsc(); - break; -#endif -#if USE_FONT_DEJAVU_20 != 0 - case FONT_DEJAVU_20: - font_p = dejavu_20_get_dsc(); - break; -#endif - -#if USE_FONT_DEJAVU_30 != 0 - case FONT_DEJAVU_30: - font_p = dejavu_30_get_dsc(); - break; -#endif - -#if USE_FONT_DEJAVU_40 != 0 - case FONT_DEJAVU_40: - font_p = dejavu_40_get_dsc(); - break; -#endif - -#if USE_FONT_DEJAVU_60 != 0 - case FONT_DEJAVU_60: - font_p = dejavu_60_get_dsc(); - break; -#endif - -#if USE_FONT_DEJAVU_80 != 0 - case FONT_DEJAVU_80: - font_p = dejavu_80_get_dsc(); - break; -#endif - -#if USE_FONT_SYMBOL_30 != 0 - case FONT_SYMBOL_30: - font_p = symbol_30_get_dsc(); - break; -#endif - -#if USE_FONT_SYMBOL_60 != 0 - case FONT_SYMBOL_60: - font_p = symbol_60_get_dsc(); - break; -#endif - default: - font_p = NULL; - } - - return font_p; -} - -/** - * Return with the bitmap of a font. - * @param font_p pointer to a font - * @param letter a letter - * @return pointer to the bitmap of the letter - */ -const uint8_t * font_get_bitmap(const font_t * font_p, uint8_t letter) -{ - if(letter < font_p->start_ascii || letter >= font_p->start_ascii + font_p->letter_cnt) return NULL; - - uint32_t index = (letter - font_p->start_ascii) * font_p->height_row * font_p->width_byte; - return &font_p->bitmaps_a[index]; -} - -/** - * Get the width of a letter in a font - * @param font_p pointer to a font - * @param letter a letter - * @return the width of a letter - */ -uint8_t font_get_width(const font_t * font_p, uint8_t letter) -{ - if(letter < font_p->start_ascii) return 0; - - letter -= font_p->start_ascii; - uint8_t w = 0; - if(letter < font_p->letter_cnt) { - w = font_p->fixed_width != 0 ? font_p->fixed_width : - font_p->width_bit_a[letter]; - } - - return w; -} - -/********************** - * STATIC FUNCTIONS - **********************/ - - diff --git a/lv_misc/font.h b/lv_misc/font.h deleted file mode 100644 index 50755e401..000000000 --- a/lv_misc/font.h +++ /dev/null @@ -1,115 +0,0 @@ -/** - * @file font.h - * - */ - -#ifndef FONT_H -#define FONT_H - -/********************* - * INCLUDES - *********************/ -#include "lv_conf.h" -#include -#include - -/********************* - * DEFINES - *********************/ - -/********************** - * TYPEDEFS - **********************/ - -typedef enum -{ -#if USE_FONT_DEJAVU_8 != 0 - FONT_DEJAVU_8, -#endif -#if USE_FONT_DEJAVU_10 != 0 - FONT_DEJAVU_10, -#endif -#if USE_FONT_DEJAVU_14 != 0 - FONT_DEJAVU_14, -#endif -#if USE_FONT_DEJAVU_20 != 0 - FONT_DEJAVU_20, -#endif -#if USE_FONT_DEJAVU_30 != 0 - FONT_DEJAVU_30, -#endif -#if USE_FONT_DEJAVU_40 != 0 - FONT_DEJAVU_40, -#endif -#if USE_FONT_DEJAVU_60 != 0 - FONT_DEJAVU_60, -#endif -#if USE_FONT_DEJAVU_80 != 0 - FONT_DEJAVU_80, -#endif -#if USE_FONT_SYMBOL_30 != 0 - FONT_SYMBOL_30, -#endif -#if USE_FONT_SYMBOL_60 != 0 - FONT_SYMBOL_60, -#endif - FONT_TYPE_NUM, -}font_types_t; - -typedef struct -{ - uint8_t letter_cnt; - uint8_t start_ascii; - uint8_t width_byte; - uint8_t height_row; - uint8_t fixed_width; - const uint8_t * width_bit_a; - const uint8_t * bitmaps_a; -}font_t; - -/********************** - * GLOBAL PROTOTYPES - **********************/ - -/** - * Get the font from its id - * @param font_id: the id of a font (an element of font_types_t enum) - * @return pointer to a font descriptor - */ -const font_t * font_get(font_types_t font_id); - - -/** - * Return with the bitmap of a font. - * @param font_p pointer to a font - * @param letter a letter - * @return pointer to the bitmap of the letter - */ -const uint8_t * font_get_bitmap(const font_t * font_p, uint8_t letter); - -/** - * Get the height of a font - * @param font_p pointer to a font - * @return the height of a font - */ -static inline uint8_t font_get_height(const font_t * font_p) -{ - return font_p->height_row; -} - - -/** - * Get the width of a letter in a font - * @param font_p pointer to a font - * @param letter a letter - * @return the width of a letter - */ -uint8_t font_get_width(const font_t * font_p, uint8_t letter); - - -/********************** - * MACROS - **********************/ - - -#endif diff --git a/lv_misc/fonts/dejavu_10.c b/lv_misc/fonts/dejavu_10.c deleted file mode 100644 index 7dcfff35d..000000000 --- a/lv_misc/fonts/dejavu_10.c +++ /dev/null @@ -1,2780 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_10 != 0 - -#include -#include "../font.h" - -static const uint8_t dejavu_10_bitmaps[2240] = -{ - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 33, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 34, char width: 4 - 0x00, // ----.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 35, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x28, // --O-O--. - 0x7c, // -OOOOO-. - 0x28, // --O-O--. - 0x50, // -O-O---. - 0xf8, // OOOOO--. - 0x50, // -O-O---. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 36, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x70, // -OOO-... - 0xa0, // O-O--... - 0x60, // -OO--... - 0x30, // --OO-... - 0x28, // --O-O... - 0x70, // -OOO-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 37, char width: 8 - 0x00, // -------- - 0x42, // -O----O- - 0xa4, // O-O--O-- - 0x48, // -O--O--- - 0x10, // ---O---- - 0x24, // --O--O-- - 0x4a, // -O--O-O- - 0x84, // O----O-- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 38, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x40, // -O----.. - 0x40, // -O----.. - 0x64, // -OO--O.. - 0x94, // O--O-O.. - 0x88, // O---O-.. - 0x74, // -OOO-O.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 39, char width: 2 - 0x00, // --...... - 0x04, // -O...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 40, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - - // ASCII: 41, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - - // ASCII: 42, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 43, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x10, // ---O---. - 0x10, // ---O---. - 0x7c, // -OOOOO-. - 0x10, // ---O---. - 0x10, // ---O---. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 44, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x80, // O--..... - 0x00, // ---..... - - // ASCII: 45, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0xe0, // OOO..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 46, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 47, char width: 3 - 0x00, // ---..... - 0x20, // --O..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x00, // ---..... - - // ASCII: 48, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x50, // -O-O-... - 0x88, // O---O... - 0x88, // O---O... - 0x88, // O---O... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 49, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x60, // -OO--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 50, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x10, // ---O-... - 0x10, // ---O-... - 0x10, // ---O-... - 0x20, // --O--... - 0x40, // -O---... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 51, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x10, // ---O-... - 0x10, // ---O-... - 0x20, // --O--... - 0x10, // ---O-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 52, char width: 5 - 0x00, // -----... - 0x10, // ---O-... - 0x30, // --OO-... - 0x50, // -O-O-... - 0x50, // -O-O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 53, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x40, // -O---... - 0x40, // -O---... - 0x30, // --OO-... - 0x10, // ---O-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 54, char width: 5 - 0x00, // -----... - 0x30, // --OO-... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x48, // -O--O... - 0x48, // -O--O... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 55, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x10, // ---O-... - 0x10, // ---O-... - 0x20, // --O--... - 0x20, // --O--... - 0x40, // -O---... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 56, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x50, // -O-O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x50, // -O-O-... - 0x88, // O---O... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 57, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 58, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 59, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x80, // O--..... - 0x00, // ---..... - - // ASCII: 60, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x0c, // ----OO-. - 0x30, // --OO---. - 0x60, // -OO----. - 0x18, // ---OO--. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 61, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x7c, // -OOOOO-. - 0x00, // -------. - 0x7c, // -OOOOO-. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 62, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x60, // -OO----. - 0x18, // ---OO--. - 0x0c, // ----OO-. - 0x30, // --OO---. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 63, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x10, // ---O.... - 0x10, // ---O.... - 0x20, // --O-.... - 0x40, // -O--.... - 0x00, // ----.... - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 64, char width: 8 - 0x00, // -------- - 0x00, // -------- - 0x3c, // --OOOO-- - 0x42, // -O----O- - 0xbe, // O-OOOOO- - 0xa5, // O-O--O-O - 0xa6, // O-O--OO- - 0x5c, // -O-OOO-- - 0x20, // --O----- - 0x1c, // ---OOO-- - - // ASCII: 65, char width: 6 - 0x00, // ------.. - 0x20, // --O---.. - 0x20, // --O---.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0xf8, // OOOOO-.. - 0x88, // O---O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 66, char width: 6 - 0x00, // ------.. - 0x70, // -OOO--.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x70, // -OOO--.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x70, // -OOO--.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 67, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x80, // O-----.. - 0x80, // O-----.. - 0x80, // O-----.. - 0x40, // -O----.. - 0x38, // --OOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 68, char width: 6 - 0x00, // ------.. - 0x70, // -OOO--.. - 0x48, // -O--O-.. - 0x44, // -O---O.. - 0x44, // -O---O.. - 0x44, // -O---O.. - 0x48, // -O--O-.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 69, char width: 5 - 0x00, // -----... - 0x78, // -OOOO... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x40, // -O---... - 0x40, // -O---... - 0x78, // -OOOO... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 70, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x40, // -O---... - 0x40, // -O---... - 0x40, // -O---... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 71, char width: 6 - 0x00, // ------.. - 0x38, // --OOO-.. - 0x40, // -O----.. - 0x80, // O-----.. - 0x80, // O-----.. - 0x8c, // O---OO.. - 0x44, // -O---O.. - 0x38, // --OOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 72, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x78, // -OOOO-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 73, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 74, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x80, // O-...... - - // ASCII: 75, char width: 5 - 0x00, // -----... - 0x48, // -O--O... - 0x50, // -O-O-... - 0x60, // -OO--... - 0x40, // -O---... - 0x60, // -OO--... - 0x50, // -O-O-... - 0x48, // -O--O... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 76, char width: 5 - 0x00, // -----... - 0x40, // -O---... - 0x40, // -O---... - 0x40, // -O---... - 0x40, // -O---... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 77, char width: 7 - 0x00, // -------. - 0x44, // -O---O-. - 0x44, // -O---O-. - 0x6c, // -OO-OO-. - 0x6c, // -OO-OO-. - 0x54, // -O-O-O-. - 0x44, // -O---O-. - 0x44, // -O---O-. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 78, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x68, // -OO-O-.. - 0x68, // -OO-O-.. - 0x58, // -O-OO-.. - 0x58, // -O-OO-.. - 0x48, // -O--O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 79, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x44, // -O---O.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 80, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x50, // -O-O-... - 0x48, // -O--O... - 0x50, // -O-O-... - 0x60, // -OO--... - 0x40, // -O---... - 0x40, // -O---... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 81, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x44, // -O---O.. - 0x78, // -OOOO-.. - 0x08, // ----O-.. - 0x00, // ------.. - - // ASCII: 82, char width: 6 - 0x00, // ------.. - 0x70, // -OOO--.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x70, // -OOO--.. - 0x50, // -O-O--.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 83, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x80, // O----... - 0x80, // O----... - 0x70, // -OOO-... - 0x08, // ----O... - 0x08, // ----O... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 84, char width: 5 - 0x00, // -----... - 0xf8, // OOOOO... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 85, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x30, // --OO--.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 86, char width: 6 - 0x00, // ------.. - 0x88, // O---O-.. - 0x88, // O---O-.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x20, // --O---.. - 0x20, // --O---.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 87, char width: 8 - 0x00, // -------- - 0x81, // O------O - 0x99, // O--OO--O - 0x5a, // -O-OO-O- - 0x5a, // -O-OO-O- - 0x66, // -OO-_OO- - 0x66, // -OO--OO- - 0x24, // --O--O-- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 88, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x30, // --OO--.. - 0x30, // --OO--.. - 0x30, // --OO--.. - 0x50, // -O-O--.. - 0x88, // O---O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 89, char width: 5 - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 90, char width: 6 - 0x00, // ------.. - 0xf8, // OOOOO-.. - 0x08, // ----O-.. - 0x10, // ---O--.. - 0x20, // --O---.. - 0x20, // --O---.. - 0x40, // -O----.. - 0xf8, // OOOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 91, char width: 3 - 0x00, // ---..... - 0xC0, // OO-..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0xC0, // OO-..... - - // ASCII: 92, char width: 3 - 0x00, // ---..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x20, // --O..... - 0x00, // ---..... - - // ASCII: 93, char width: 3 - 0x00, // ---..... - 0xC0, // OO-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0xC0, // OO-..... - 0x00, // ---..... - - // ASCII: 94, char width: 7 - 0x00, // -------. - 0x10, // ---O---. - 0x28, // --O-O--. - 0x44, // -O---O-. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 95, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0xf0, // OOOO.... - - // ASCII: 96, char width: 4 - 0x80, // O---.... - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 97, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 98, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x80, // O----... - 0xb0, // O-OO-... - 0x48, // -O--O... - 0x88, // O---O... - 0x48, // -O--O... - 0xb0, // O-OO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 99, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x70, // -OOO.... - 0x80, // O---.... - 0x80, // O---.... - 0x80, // O---.... - 0x70, // -OOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 100, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 101, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0xf8, // OOOOO... - 0x80, // O----... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 102, char width: 3 - 0x00, // ---..... - 0x60, // -OO..... - 0x40, // -O-..... - 0xe0, // OOO..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 103, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x60, // -OO--... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - - // ASCII: 104, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x80, // O----... - 0xb0, // O-OO-... - 0x50, // -O-O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 105, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 106, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - - // ASCII: 107, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x80, // O----... - 0x90, // O--O-... - 0xa0, // O-O--... - 0x40, // -O---... - 0xa0, // O-O--... - 0x90, // O--O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 108, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 109, char width: 8 - 0x00, // -------- - 0x00, // -------- - 0x00, // -------- - 0x36, // --OO-OO- - 0x5a, // -O-OO-O- - 0x92, // O--O--O- - 0x92, // O--O--O- - 0x92, // O--O--O- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 110, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x30, // --OO-... - 0x50, // -O-O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 111, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x88, // O---O... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 112, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x30, // --OO-... - 0x48, // -O--O... - 0x88, // O---O... - 0x48, // -O--O... - 0xb0, // O-OO-... - 0x80, // O----... - 0x00, // -----... - - // ASCII: 113, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x60, // -OO--... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x00, // -----... - - // ASCII: 114, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x20, // --O..... - 0x40, // -O-..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 115, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x70, // -OOO.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x10, // ---O.... - 0xf0, // OOOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 116, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x80, // O--..... - 0xe0, // OOO..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x60, // -OO..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 117, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 118, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x80, // O----... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x60, // -OO--... - 0x20, // --O--... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 119, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x94, // O--O-O-. - 0x94, // O--O-O-. - 0x74, // -OOO-O-. - 0x68, // -OO-O--. - 0x48, // -O--O--. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 120, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x50, // -O-O-... - 0x60, // -OO--... - 0x20, // --O--... - 0x50, // -O-O-... - 0x90, // O--O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 121, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x80, // O----... - 0x50, // -O-O-... - 0x50, // -O-O-... - 0x60, // -OO--... - 0x20, // --O--... - 0x20, // --O--... - 0x40, // -O---... - - // ASCII: 122, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0xf0, // OOOO.... - 0x20, // --O-.... - 0x20, // --O-.... - 0x40, // -O--.... - 0xf0, // OOOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 123, char width: 5 - 0x00, // -----... - 0x10, // ---O-... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x60, // -OO--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x10, // ---O-... - - // ASCII: 124, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - - // ASCII: 125, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x10, // ---O-... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 126, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x7c, // -OOOOO-. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - - // No glyph for ASCII: 127, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 128, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 129, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 130, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 131, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 132, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 133, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 134, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 135, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 136, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 137, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 138, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 139, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 140, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 141, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 142, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 143, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 144, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 145, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 146, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 147, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 148, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 149, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 150, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 151, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 152, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 153, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 154, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 155, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 156, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 157, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 158, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 159, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 160, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 161, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 162, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x70, // -OOO-... - 0x60, // -OO--... - 0xa0, // O-O--... - 0x60, // -OO--... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 163, char width: 5 - 0x00, // -----... - 0x30, // --OO-... - 0x40, // -O---... - 0x40, // -O---... - 0x40, // -O---... - 0x60, // -OO--... - 0x40, // -O---... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 164, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x68, // -OO-O... - 0x50, // -O-O-... - 0x50, // -O-O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 165, char width: 5 - 0x00, // -----... - 0x88, // O---O... - 0x50, // -O-O-... - 0x50, // -O-O-... - 0x78, // -OOOO... - 0x78, // -OOOO... - 0x20, // --O--... - 0x20, // --O--... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 166, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - - // ASCII: 167, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x40, // -O--.... - 0xa0, // O-O-.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0x00, // ----.... - - // ASCII: 168, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 169, char width: 8 - 0x00, // -------- - 0x00, // -------- - 0x3c, // --OOOO-- - 0x7a, // -OOOO-O- - 0x62, // -OO---O- - 0x62, // -OO---O- - 0x5a, // -O-OO-O- - 0x3c, // --OOOO-- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 170, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 171, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x50, // -O-O-... - 0xa0, // O-O--... - 0x50, // -O-O-... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 172, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x7c, // -OOOOO-. - 0x04, // -----O-. - 0x04, // -----O-. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 173, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0xe0, // OOO..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 174, char width: 8 - 0x00, // -------- - 0x00, // -------- - 0x3c, // --OOOO-- - 0x7a, // -OOOO-O- - 0x7a, // -OOOO-O- - 0x6a, // -OO-O-O- - 0x46, // -O---OO- - 0x3c, // --OOOO-- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 175, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 176, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 177, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x10, // ---O---. - 0x10, // ---O---. - 0x7c, // -OOOOO-. - 0x10, // ---O---. - 0x10, // ---O---. - 0x7c, // -OOOOO-. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 178, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x20, // --O..... - 0x40, // -O-..... - 0x80, // O--..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 179, char width: 3 - 0x00, // ---..... - 0xc0, // OO-..... - 0x20, // --O..... - 0x20, // --O..... - 0xa0, // O-O..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 180, char width: 4 - 0x00, // ----.... - 0x20, // --O-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 181, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x78, // -OOOO... - 0x80, // O----... - 0x00, // -----... - - // ASCII: 182, char width: 5 - 0x00, // -----... - 0x30, // --OO-... - 0x70, // -OOO-... - 0x70, // -OOO-... - 0x70, // -OOO-... - 0x30, // --OO-... - 0x30, // --OO-... - 0x30, // --OO-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 183, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 184, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x20, // --O-.... - 0x60, // -OO-.... - - // ASCII: 185, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 186, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 187, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x20, // --O--... - 0x50, // -O-O-... - 0x30, // --OO-... - 0x60, // -OO--... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 188, char width: 8 - 0x00, // -------- - 0x44, // -O---O-- - 0x48, // -O--O--- - 0x48, // -O--O--- - 0x50, // -O-O---- - 0x12, // ---O--O- - 0x26, // --O--OO- - 0x42, // -O----O- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 189, char width: 8 - 0x00, // -------- - 0x44, // -O---O-- - 0x48, // -O--O--- - 0x48, // -O--O--- - 0x52, // -O-O--O- - 0x11, // ---O---O - 0x22, // --O---O- - 0x44, // -O---O-- - 0x02, // ------O- - 0x00, // -------- - - // ASCII: 190, char width: 8 - 0x00, // -------- - 0xc4, // OO---O-- - 0x28, // --O-O--- - 0x28, // --O-O--- - 0xb0, // O-OO---- - 0x52, // -O-O--O- - 0x26, // --O--OO- - 0x42, // -O----O- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 191, char width: 4 - 0x00, // ----.... - 0x20, // --O-.... - 0x20, // --O-.... - 0x20, // --O-.... - 0x20, // --O-.... - 0x40, // -O--.... - 0x80, // O---.... - 0x70, // -OOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 192, char width: 6 - 0x00, // ------.. - 0x20, // --O---.. - 0x30, // --OO--.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x48, // -O--O-.. - 0xb8, // O-OOO-.. - 0x88, // O---O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 193, char width: 6 - 0x00, // ------.. - 0x20, // --O---.. - 0x30, // --OO--.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x48, // -O--O-.. - 0xb8, // O-OOO-.. - 0x88, // O---O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 194, char width: 6 - 0x00, // ------.. - 0x20, // --O---.. - 0x30, // --OO--.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x48, // -O--O-.. - 0xb8, // O-OOO-.. - 0x88, // O---O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 195, char width: 6 - 0x10, // ---O--.. - 0x20, // --O---.. - 0x30, // --OO--.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x48, // -O--O-.. - 0xb8, // O-OOO-.. - 0x88, // O---O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 196, char width: 6 - 0x00, // ------.. - 0x20, // --O---.. - 0x30, // --OO--.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x48, // -O--O-.. - 0xb8, // O-OOO-.. - 0x88, // O---O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 197, char width: 6 - 0x70, // -OOO--.. - 0x30, // --OO--.. - 0x30, // --OO--.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x48, // -O--O-.. - 0xb8, // O-OOO-.. - 0x88, // O---O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 198, char width: 8 - 0x00, // -------- - 0x3e, // --OOOOO- - 0x30, // --OO---- - 0x30, // --OO---- - 0x4e, // -O--OOO- - 0x50, // -O-O---- - 0xb0, // O-OO---- - 0x8e, // O---OOO- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 199, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x80, // O-----.. - 0x80, // O-----.. - 0x80, // O-----.. - 0x40, // -O----.. - 0x38, // --OOO-.. - 0x10, // ---O--.. - 0x30, // --OO--.. - - // ASCII: 200, char width: 5 - 0x00, // -----... - 0x78, // -OOOO... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x40, // -O---... - 0x40, // -O---... - 0x78, // -OOOO... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 201, char width: 5 - 0x00, // -----... - 0x78, // -OOOO... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x40, // -O---... - 0x40, // -O---... - 0x78, // -OOOO... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 202, char width: 5 - 0x00, // -----... - 0x78, // -OOOO... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x40, // -O---... - 0x40, // -O---... - 0x78, // -OOOO... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 203, char width: 5 - 0x00, // -----... - 0x78, // -OOOO... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x40, // -O---... - 0x40, // -O---... - 0x78, // -OOOO... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 204, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 205, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 206, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 207, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 208, char width: 6 - 0x00, // ------.. - 0x60, // -OO---.. - 0x58, // -O-OO-.. - 0x44, // -O---O.. - 0xe4, // OOO--O.. - 0x44, // -O---O.. - 0x48, // -O--O-.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 209, char width: 6 - 0x10, // ---O--.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x68, // -OO-O-.. - 0x68, // -OO-O-.. - 0x58, // -O-OO-.. - 0x58, // -O-OO-.. - 0x48, // -O--O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 210, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x44, // -O---O.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 211, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x44, // -O---O.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 212, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x44, // -O---O.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 213, char width: 6 - 0x10, // ---O--.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x44, // -O---O.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 214, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x44, // -O---O.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 215, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x48, // -O--O--. - 0x30, // --OO---. - 0x10, // ---O---. - 0x28, // --O-O--. - 0x40, // -O-----. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 216, char width: 6 - 0x00, // ------.. - 0x34, // --OO-O.. - 0x48, // -O--O-.. - 0x94, // O--O-O.. - 0x94, // O--O-O.. - 0xa4, // O-O--O.. - 0x44, // -O---O.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 217, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 218, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 219, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 220, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 221, char width: 5 - 0x00, // -----... - 0x88, // O---O... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 222, char width: 5 - 0x00, // -----... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x48, // -O--O... - 0x50, // -O-O-... - 0x60, // -OO--... - 0x40, // -O---... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 223, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x50, // -O-O-... - 0xa0, // O-O--... - 0xa0, // O-O--... - 0x90, // O--O-... - 0x88, // O---O... - 0xb0, // O-OO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 224, char width: 5 - 0x00, // -----... - 0x40, // -O---... - 0x00, // -----... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 225, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x00, // -----... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 226, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x00, // -----... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 227, char width: 5 - 0x00, // -----... - 0x40, // -O---... - 0x20, // --O--... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 228, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x00, // -----... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 229, char width: 5 - 0x60, // -OO--... - 0xa0, // O-O--... - 0x40, // -O---... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 230, char width: 8 - 0x00, // -------- - 0x00, // -------- - 0x00, // -------- - 0x7e, // -OOOOOO- - 0x12, // ---O--O- - 0x7f, // -OOOOOOO - 0x90, // O--O---- - 0x6e, // -OO-OOO- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 231, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x70, // -OOO.... - 0x80, // O---.... - 0x80, // O---.... - 0x80, // O---.... - 0x70, // -OOO.... - 0x10, // ---O.... - 0x30, // --OO.... - - // ASCII: 232, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0xf8, // OOOOO... - 0x80, // O----... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 233, char width: 5 - 0x00, // -----... - 0x10, // ---O-... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0xf8, // OOOOO... - 0x80, // O----... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 234, char width: 5 - 0x00, // -----... - 0x30, // --OO-... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0xf8, // OOOOO... - 0x80, // O----... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 235, char width: 5 - 0x00, // -----... - 0x30, // --OO-... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0xf8, // OOOOO... - 0x80, // O----... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 236, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 237, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 238, char width: 2 - 0x00, // --...... - 0xc0, // OO...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 239, char width: 2 - 0x00, // --...... - 0xc0, // OO...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 240, char width: 5 - 0x00, // -----... - 0x10, // ---O-... - 0x60, // -OO--... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x88, // O---O... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 241, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x10, // ---O-... - 0x30, // --OO-... - 0x50, // -O-O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 242, char width: 5 - 0x00, // -----... - 0x40, // -O---... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x88, // O---O... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 243, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x88, // O---O... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 244, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x88, // O---O... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 245, char width: 5 - 0x00, // -----... - 0x40, // -O---... - 0x20, // --O--... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x88, // O---O... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 246, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x88, // O---O... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 247, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x10, // ---O---. - 0x00, // -------. - 0x7c, // -OOOOO-. - 0x10, // ---O---. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 248, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0xa8, // O-O-O... - 0x50, // -O-O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 249, char width: 5 - 0x00, // -----... - 0x40, // -O---... - 0x00, // -----... - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 250, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x00, // -----... - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 251, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x00, // -----... - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 252, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x00, // -----... - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 253, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x00, // -----... - 0x80, // O----... - 0x50, // -O-O-... - 0x50, // -O-O-... - 0x60, // -OO--... - 0x20, // --O--... - 0x20, // --O--... - 0x40, // -O---... - - // ASCII: 254, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x80, // O----... - 0xb0, // O-OO-... - 0x48, // -O--O... - 0x88, // O---O... - 0x48, // -O--O... - 0xb0, // O-OO-... - 0x80, // O----... - 0x00, // -----... - - // ASCII: 255, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x00, // -----... - 0x80, // O----... - 0x50, // -O-O-... - 0x50, // -O-O-... - 0x60, // -OO--... - 0x20, // --O--... - 0x20, // --O--... - 0x40, // -O---... -}; - -static const uint8_t dejavu_10_widths[224] = -{ - 3, 3, 4, 7, 5, 8, 6, 2, - 3, 3, 4, 7, 3, 3, 3, 3, - 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 3, 3, 7, 7, 7, 4, - 8, 6, 6, 6, 6, 5, 5, 6, - 6, 2, 2, 5, 5, 7, 6, 6, - 5, 6, 6, 5, 5, 6, 6, 8, - 6, 5, 6, 3, 3, 3, 7, 4, - 4, 5, 5, 4, 5, 5, 3, 5, - 5, 2, 2, 5, 2, 8, 5, 5, - 5, 5, 3, 4, 3, 5, 5, 7, - 5, 5, 4, 5, 3, 5, 7, 3, - 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 5, 5, 5, 5, 3, 4, - 4, 8, 4, 5, 7, 3, 8, 4, - 4, 7, 3, 3, 4, 5, 5, 3, - 4, 3, 4, 5, 8, 8, 8, 4, - 6, 6, 6, 6, 6, 6, 8, 6, - 5, 5, 5, 5, 2, 2, 2, 2, - 6, 6, 6, 6, 6, 6, 6, 7, - 6, 6, 6, 6, 6, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 8, 4, - 5, 5, 5, 5, 2, 2, 2, 2, - 5, 5, 5, 5, 5, 5, 5, 7, - 5, 5, 5, 5, 5, 5, 5, 5, -}; - -static const font_t dejavu_10_dsc = -{ - 224, // Letter count - 32, // First ascii code - 1, // Letters width (bytes) - 10, // Letters height (row) - 0, // Fixed width or 0 if variable - dejavu_10_widths, - dejavu_10_bitmaps -}; - -const font_t * dejavu_10_get_dsc(void) -{ - return &dejavu_10_dsc; -} - - -#endif \ No newline at end of file diff --git a/lv_misc/fonts/dejavu_10.h b/lv_misc/fonts/dejavu_10.h deleted file mode 100644 index 4135ed0b2..000000000 --- a/lv_misc/fonts/dejavu_10.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef DEJAVU_10_H -#define DEJAVU_10_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_DEJAVU_10 != 0 - - -#include -#include "../font.h" - - -const font_t * dejavu_10_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/dejavu_14.c b/lv_misc/fonts/dejavu_14.c deleted file mode 100644 index 30dd5b5bd..000000000 --- a/lv_misc/fonts/dejavu_14.c +++ /dev/null @@ -1,3679 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_14 != 0 - -#include -#include "../font.h" - -static const uint8_t dejavu_14_bitmaps[6272] = -{ - // ASCII: 32, char width: 2 //white space - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - - // ASCII: 33, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x40, 0x00, // -O--............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 34, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x50, 0x00, // -O-O-........... - 0x50, 0x00, // -O-O-........... - 0x50, 0x00, // -O-O-........... - 0x50, 0x00, // -O-O-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 35, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x14, 0x00, // ---O-O---....... - 0x14, 0x00, // ---O-O---....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x24, 0x00, // --O--O---....... - 0x24, 0x00, // --O--O---....... - 0xfe, 0x00, // OOOOOOO--....... - 0x48, 0x00, // -O--O----....... - 0x48, 0x00, // -O--O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 36, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x20, 0x00, // --O----......... - 0x78, 0x00, // -OOOO--......... - 0x80, 0x00, // O------......... - 0xc0, 0x00, // OO-----......... - 0x70, 0x00, // -OOO---......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0xf8, 0x00, // OOOOO--......... - 0x20, 0x00, // --O----......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 37, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x60, 0x80, // -OO-----O-...... - 0x91, 0x00, // O--O---O--...... - 0x92, 0x00, // O--O--O---...... - 0x94, 0x00, // O--O-O----...... - 0x69, 0x80, // -OO-O--OO-...... - 0x0a, 0x40, // ----O-O--O...... - 0x12, 0x40, // ---O--O--O...... - 0x20, 0x40, // --O---O--O...... - 0x41, 0x80, // -O-----OO-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 38, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x38, 0x00, // --OOO---........ - 0x40, 0x00, // -O------........ - 0x40, 0x00, // -O------........ - 0x60, 0x00, // -OO-----........ - 0x72, 0x00, // -OOO--O-........ - 0x92, 0x00, // O--O--O-........ - 0x8e, 0x00, // O---OOO-........ - 0xc4, 0x00, // OO---O--........ - 0x7a, 0x00, // -OOOO-O-........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 39, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 40, char width: 4 - 0x00, 0x00, // ----............ - 0x20, 0x00, // --O-............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 41, char width: 4 - 0x00, 0x00, // ----............ - 0x80, 0x00, // O---............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x80, 0x00, // O---............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 42, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0xf8, 0x00, // OOOOO........... - 0x20, 0x00, // --O--........... - 0x50, 0x00, // -O-O-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 43, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 44, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x80, 0x00, // O--............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 45, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0xe0, 0x00, // OOO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 46, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 47, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x20, 0x00, // --O............. - 0x20, 0x00, // --O............. - 0x20, 0x00, // --O............. - 0x20, 0x00, // --O............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 48, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO---......... - 0x48, 0x00, // -O--O--......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x48, 0x00, // -O--O--......... - 0x30, 0x00, // --OO---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 49, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO---......... - 0x50, 0x00, // -O-O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 50, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x70, 0x00, // -OOO---......... - 0x88, 0x00, // O---O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x10, 0x00, // ---O---......... - 0x20, 0x00, // --O----......... - 0x40, 0x00, // -O-----......... - 0xf8, 0x00, // OOOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 51, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x70, 0x00, // -OOO---......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x30, 0x00, // --OO---......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0xf0, 0x00, // OOOO---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 52, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x08, 0x00, // ----O--......... - 0x18, 0x00, // ---OO--......... - 0x28, 0x00, // --O-O--......... - 0x48, 0x00, // -O--O--......... - 0x48, 0x00, // -O--O--......... - 0x88, 0x00, // O---O--......... - 0xfc, 0x00, // OOOOOO-......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - - - // ASCII: 53, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0xf8, 0x00, // OOOOO--......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0xf0, 0x00, // OOOO---......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0xf0, 0x00, // OOOO---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 54, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x38, 0x00, // --OOO--......... - 0x40, 0x00, // -O-----......... - 0x80, 0x00, // O------......... - 0xf0, 0x00, // OOOO---......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x44, 0x00, // -O---O-......... - 0x38, 0x00, // --OOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 55, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0xf8, 0x00, // OOOOOO-......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x20, 0x00, // --O----......... - 0x20, 0x00, // --O----......... - 0x20, 0x00, // --O----......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 56, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO---......... - 0x48, 0x00, // -O--O--......... - 0x48, 0x00, // -O--O--......... - 0x48, 0x00, // -O--O--......... - 0x78, 0x00, // -OOOO--......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x78, 0x00, // -OOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 57, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x78, 0x00, // -OOOO--......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O---.O-......... - 0x84, 0x00, // O----O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x04, 0x00, // -----O-......... - 0x08, 0x00, // ----O--......... - 0x70, 0x00, // -OOO---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 58, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 59, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x80, 0x00, // O--............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 60, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x07, 0x00, // -----OOO-....... - 0x18, 0x00, // ---OO----....... - 0x60, 0x00, // -OO------....... - 0x18, 0x00, // ---OO----....... - 0x07, 0x00, // -----OOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 61, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x00, 0x00, // ---------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 62, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x70, 0x00, // -OOO-----....... - 0x0c, 0x00, // ----OO---....... - 0x03, 0x00, // ------OO-....... - 0x0c, 0x00, // ----OO---....... - 0x70, 0x00, // -OOO-----....... - 0x40, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 63, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x90, 0x00, // O--O-........... - 0x10, 0x00, // ---O-........... - 0x10, 0x00, // ---O-........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 64, char width: 11 - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x1e, 0x00, // ---OOOO----..... - 0x21, 0x00, // --O----O---..... - 0x40, 0x80, // -O------O--..... - 0x99, 0x00, // O---OO---O-..... - 0x92, 0x40, // O--O--O--O-..... - 0x92, 0x40, // O--O--O--O-..... - 0x92, 0x80, // O--O--O-O--..... - 0x8f, 0x00, // O---OOOO---..... - 0x40, 0x00, // -O---------..... - 0x21, 0x00, // --O----O---..... - 0x1e, 0x00, // ---OOOO----..... - 0x00, 0x00, // -----------..... - - // ASCII: 65, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x28, 0x00, // --O-O--......... - 0x28, 0x00, // --O-O--......... - 0x44, 0x00, // -O---O-......... - 0x44, 0x00, // -O---O-......... - 0x44, 0x00, // -O---O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x82, 0x00, // O-----O......... - 0x82, 0x00, // O-----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 66, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0xf0, 0x00, // OOOO---......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0xf8, 0x00, // OOOOO--......... - 0x84, 0x00, // O----O-........ - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0xf8, 0x00, // OOOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 67, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x38, 0x00, // --OOO--......... - 0x84, 0x00, // -O---O-......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x40, 0x00, // -O-----......... - 0x3c, 0x00, // --OOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 68, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0xf8, 0x00, // OOOOO---........ - 0x84, 0x00, // O----O--........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x84, 0x00, // O----O-........ - 0xf8, 0x00, // OOOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 69, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 70, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x78, 0x00, // -OOOO-.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x78, 0x00, // -OOOO-.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 71, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x3c, 0x00, // --OOOO--........ - 0x42, 0x00, // -O----O-........ - 0x80, 0x00, // O-------........ - 0x80, 0x00, // O-------........ - 0x86, 0x00, // O----OO-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x42, 0x00, // -O----O-........ - 0x3e, 0x00, // --OOOOO-........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 72, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x7e, 0x00, // -OOOOOO-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 73, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 74, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - - // ASCII: 75, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x42, 0x00, // -O----O......... - 0x44, 0x00, // -O---O-......... - 0x48, 0x00, // -O--O--......... - 0x70, 0x00, // -OOO---......... - 0x60, 0x00, // -OO----......... - 0x50, 0x00, // -O-O---......... - 0x48, 0x00, // -O--O--......... - 0x44, 0x00, // -O---O-......... - 0x42, 0x00, // -O----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 76, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x7c, 0x00, // -OOOOO.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 77, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x41, 0x00, // -O-----O-....... - 0x63, 0x00, // -OO---OO-....... - 0x63, 0x00, // -OO---OO-....... - 0x55, 0x00, // -O-O-O-O-....... - 0x55, 0x00, // -O-O-O-O-....... - 0x5d, 0x00, // -O-OOO-O-....... - 0x49, 0x00, // -O--O--O-....... - 0x41, 0x00, // -O-----O-....... - 0x41, 0x00, // -O-----O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 78, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x42, 0x00, // -O----O-........ - 0x62, 0x00, // -OO---O-........ - 0x52, 0x00, // -O-O--O-........ - 0x52, 0x00, // -O-O--O-........ - 0x5a, 0x00, // -O-OO-O-........ - 0x4a, 0x00, // -O--O-O-........ - 0x4A, 0x00, // -O--O-O-........ - 0x46, 0x00, // -O---OO-........ - 0x46, 0x00, // -O---OO-........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 79, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x3c, 0x00, // --OOOO--........ - 0x66, 0x00, // -OO--OO-........ - 0xc3, 0x00, // OO----OO........ - 0x81, 0x00, // O------O........ - 0x81, 0x00, // O------O........ - 0x81, 0x00, // O------O........ - 0xc3, 0x00, // OO----OO........ - 0x66, 0x00, // -OO--OO-........ - 0x3c, 0x00, // --OOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 80, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x78, 0x00, // -OOOO-.......... - 0x4c, 0x00, // -O--OO.......... - 0x44, 0x00, // -O---O.......... - 0x44, 0x00, // -O---O.......... - 0x7c, 0x00, // -OOOOO.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 81, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x38, 0x00, // --OOO---........ - 0x44, 0x00, // -O---O--........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x44, 0x00, // -O----O-........ - 0x3c, 0x00, // --OOOO--........ - 0x0c, 0x00, // ----OO--........ - 0x02, 0x00, // ------O-........ - 0x00, 0x00, // --------........ - - // ASCII: 82, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x78, 0x00, // -OOOO--......... - 0x4c, 0x00, // -O--OO-......... - 0x44, 0x00, // -O---O-......... - 0x44, 0x00, // -O---O-......... - 0x78, 0x00, // -OOOO--......... - 0x48, 0x00, // -O--O--......... - 0x44, 0x00, // -O---O-......... - 0x42, 0x00, // -O----O......... - 0x42, 0x00, // -O----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 83, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x78, 0x00, // -OOOO--......... - 0xc0, 0x00, // OO-----......... - 0x80, 0x00, // O------......... - 0xc0, 0x00, // OO-----......... - 0x78, 0x00, // -OOOO--......... - 0x0c, 0x00, // ----OO-......... - 0x04, 0x00, // -----O-......... - 0x0c, 0x00, // ----OO-......... - 0xf8, 0x00, // OOOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 84, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0xfc, 0x00, // OOOOOO.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 85, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x3c, 0x00, // --OOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 86, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x82, 0x00, // O-----O......... - 0x82, 0x00, // O-----O......... - 0x44, 0x00, // -O---O......... - 0x44, 0x00, // -O---O-......... - 0x44, 0x00, // -O---O-......... - 0x28, 0x00, // --O-O--......... - 0x28, 0x00, // --O-O--......... - 0x38, 0x00, // --OOO--......... - 0x10, 0x00, // ---O---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 87, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x44, 0x40, // -O---O---O...... - 0x44, 0x40, // -O---O---O...... - 0x44, 0x40, // -O---O---O...... - 0x44, 0x40, // -O---O---O...... - 0x44, 0x40, // -O---O---O...... - 0x2a, 0x80, // --O-O-O-O-...... - 0x20, 0x80, // --O-----O-...... - 0x20, 0x80, // --O-----O-...... - 0x20, 0x80, // --O-----O-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 88, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x84, 0x00, // O----O-......... - 0x48, 0x00, // -O--O-......... - 0x48, 0x00, // -O--O--......... - 0x30, 0x00, // --OO---......... - 0x30, 0x00, // --OO---......... - 0x30, 0x00, // --OO---......... - 0x48, 0x00, // -O--O--......... - 0x48, 0x00, // -O--O--......... - 0x84, 0x00, // O----O-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 89, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x84, 0x00, // O----O.......... - 0x84, 0x00, // O----O.......... - 0x48, 0x00, // -O--O-.......... - 0x30, 0x00, // --OO--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 90, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x7e, 0x00, // -OOOOOO......... - 0x02, 0x00, // ------O......... - 0x04, 0x00, // -----O-......... - 0x08, 0x00, // ----O--......... - 0x10, 0x00, // ---O---......... - 0x30, 0x00, // --O----......... - 0x40, 0x00, // -O-----......... - 0x80, 0x00, // O------......... - 0xfe, 0x00, // OOOOOOO......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 91, char width: 4 - 0x00, 0x00, // ----............ - 0xe0, 0x00, // OOO-............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0xe0, 0x00, // OOO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 92, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x20, 0x00, // --O............. - 0x20, 0x00, // --O............. - 0x20, 0x00, // --O............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 93, char width: 4 - 0x00, 0x00, // ----............ - 0xe0, 0x00, // OOO-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0xe0, 0x00, // OOO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 94, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x14, 0x00, // ---O-O---....... - 0x22, 0x00, // --O---O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 95, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x7c, 0x00, // -OOOOO.......... - 0x00, 0x00, // -----........... - - // ASCII: 96, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x40, 0x00, // -O---........... - 0x20, 0x00, // --O--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 97, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0xf0, 0x00, // OOOO--.......... - 0x08, 0x00, // ----O-.......... - 0x08, 0x00, // ----O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 98, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0xf8, 0x00, // OOOOO--......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0xf8, 0x00, // OOOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 99, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x38, 0x00, // --OOO-.......... - 0x40, 0x00, // -O----.......... - 0x80, 0x00, // O-----.......... - 0x80, 0x00, // O-----.......... - 0x80, 0x00, // O-----.......... - 0x80, 0x00, // O-----.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 100, char width: 7 - 0x00, 0x00, // -------......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x78, 0x00, // -OOOO--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x78, 0x00, // -OOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 101, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x38, 0x00, // --OOO-.......... - 0x44, 0x00, // -O---O.......... - 0x84, 0x00, // O----O.......... - 0xfC, 0x00, // OOOOOO.......... - 0x80, 0x00, // O-----.......... - 0x80, 0x00, // O-----.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 102, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x30, 0x00, // --OO............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0xf0, 0x00, // OOOO............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 103, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO---......... - 0x48, 0x00, // -O--O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x78, 0x00, // -OOOO--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x70, 0x00, // -OOO---......... - 0x00, 0x00, // -------......... - - // ASCII: 104, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0xf0, 0x00, // OOOO---......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 105, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x80, 0x00, // O--............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 106, char width: 3 - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O--............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x80, 0x00, // O--............. - 0x00, 0x00, // ---............. - - // ASCII: 107, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x80, 0x00, // O-----.......... - 0x80, 0x00, // O-----.......... - 0x80, 0x00, // O-----.......... - 0x90, 0x00, // O--O--.......... - 0xa0, 0x00, // O-O---.......... - 0xe0, 0x00, // OOO---.......... - 0xa0, 0x00, // O-O---.......... - 0x89, 0x00, // O--O--.......... - 0x88, 0x00, // O---O-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 108, char width: 2 - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x80, 0x00, // O-.............. - 0x80, 0x00, // O-.............. - 0x80, 0x00, // O-.............. - 0x80, 0x00, // O-.............. - 0x80, 0x00, // O-.............. - 0x80, 0x00, // O-.............. - 0x80, 0x00, // O-.............. - 0x80, 0x00, // O-.............. - 0x80, 0x00, // O-.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - - // ASCII: 109, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0xb3, 0x00, // O-OO--OO--...... - 0xcd, 0x80, // OO--OO--O-...... - 0x88, 0x80, // O---O---O-...... - 0x88, 0x80, // O---O---O-...... - 0x88, 0x80, // O---O---O-...... - 0x88, 0x80, // O---O---O-...... - 0x88, 0x80, // O---O---O-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 110, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0xb0, 0x00, // O-OO---......... - 0xc8, 0x00, // OO--O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 111, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x70, 0x00, // -OOO--.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x70, 0x00, // -OOO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 112, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0xb0, 0x00, // O-OO---......... - 0xc8, 0x00, // OO--O--......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x88, 0x00, // O---O--......... - 0xf0, 0x00, // OOOO---......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - - // ASCII: 113, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO--......... - 0x48, 0x00, // -O--O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x78, 0x00, // -OOOO--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x00, 0x00, // -------......... - - // ASCII: 114, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0xb0, 0x00, // O-OO-........... - 0xc0, 0x00, // OO---........... - 0x80, 0x00, // O----........... - 0x80, 0x00, // O----........... - 0x80, 0x00, // O----........... - 0x80, 0x00, // O----........... - 0x80, 0x00, // O----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 115, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x70, 0x00, // -OOO-........... - 0x80, 0x00, // O----........... - 0x80, 0x00, // O----........... - 0x60, 0x00, // -OO--........... - 0x10, 0x00, // ---O-........... - 0x10, 0x00, // ---O-........... - 0xe0, 0x00, // OOO--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 116, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0xf0, 0x00, // OOOO............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 117, char width: 7 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-........... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 118, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x48, 0x00, // -O--O--......... - 0x48, 0x00, // -O--O--......... - 0x48, 0x00, // -O--O--......... - 0x30, 0x00, // --OO---......... - 0x30, 0x00, // --OO---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 119, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x49, 0x00, // -O--O--O-....... - 0x49, 0x00, // -O--O--O-....... - 0x49, 0x00, // -O--O--O-....... - 0x55, 0x00, // -O-O-O-O-....... - 0x22, 0x00, // --O---O--....... - 0x22, 0x00, // --O---O--....... - 0x22, 0x00, // --O---O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 120, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x88, 0x00, // O---O-.......... - 0x50, 0x00, // -O-O--.......... - 0x20, 0x00, // --O---.......... - 0x20, 0x00, // --O---.......... - 0x50, 0x00, // -O-O--.......... - 0x88, 0x00, // O---O-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 121, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x84, 0x00, // O----O.......... - 0x44, 0x00, // -O---O.......... - 0x44, 0x00, // -O---O.......... - 0x44, 0x00, // -O---O.......... - 0x28, 0x00, // --O-O-.......... - 0x30, 0x00, // --OO--.......... - 0x20, 0x00, // --O---.......... - 0x20, 0x00, // --O---.......... - 0x40, 0x00, // -O----.......... - 0x00, 0x00, // ------.......... - - // ASCII: 122, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0xf8, 0x00, // OOOOO........... - 0x08, 0x00, // ----O........... - 0x08, 0x00, // ----O........... - 0x10, 0x00, // ---O-........... - 0x20, 0x00, // --O--........... - 0x40, 0x00, // -O---........... - 0xf8, 0x00, // OOOOO........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 123, char width: 7 - 0x00, 0x00, // -------......... - 0x08, 0x00, // ----O--......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x30, 0x00, // --OO---......... - 0x30, 0x00, // --OO---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x08, 0x00, // ----O--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 124, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - - // ASCII: 125, char width: 7 - 0x00, 0x00, // -------......... - 0x20, 0x00, // --O----......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x18, 0x00, // ---OO--......... - 0x18, 0x00, // ---OO--......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x20, 0x00, // --O----......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 126, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x31, 0x00, // --OO---O-....... - 0x4e, 0x00, // -O--OOO--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // No glyph for ASCII: 127, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 128, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 129, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 130, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 131, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 132, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 133, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 134, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 135, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 136, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 137, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 138, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 139, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 140, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 141, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 142, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 143, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 144, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 145, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 146, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 147, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 148, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 149, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 150, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 151, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 152, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 153, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 154, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 155, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 156, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 157, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 158, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 159, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 160, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 161, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x00, 0x00, // ----............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 162, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x78, 0x00, // -OOOO--......... - 0x50, 0x00, // -O-O---......... - 0xd0, 0x00, // OO-O---......... - 0x90, 0x00, // O--O---......... - 0xd0, 0x00, // OO-O---......... - 0x50, 0x00, // -O-O---......... - 0x38, 0x00, // --OOO--......... - 0x10, 0x00, // ---O---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 163, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x38, 0x00, // --OOO--......... - 0x20, 0x00, // --O----......... - 0x60, 0x00, // -OO----......... - 0x40, 0x00, // -O-----......... - 0x70, 0x00, // -OOO---......... - 0x60, 0x00, // -OO----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0xf8, 0x00, // OOOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 164, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x7c, 0x00, // -OOOOO-......... - 0x68, 0x00, // -OO-O--......... - 0x44, 0x00, // -O---O-......... - 0x44, 0x00, // -O---O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x44, 0x00, // -O---O-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 165, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x04, 0x00, // -----O-......... - 0x44, 0x00, // -O---O-......... - 0x68, 0x00, // -OO-O--......... - 0x28, 0x00, // --O-O--......... - 0x38, 0x00, // --OOO--......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 166, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 167, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x70, 0x00, // -OOO-........... - 0x40, 0x00, // -O---........... - 0x40, 0x00, // -O---........... - 0x70, 0x00, // -OOO-........... - 0x98, 0x00, // O--OO........... - 0x48, 0x00, // -O--O........... - 0x78, 0x00, // -OOOO........... - 0x10, 0x00, // ---O-........... - 0x18, 0x00, // ---OO........... - 0x70, 0x00, // -OOO-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 168, char width: 5 - 0x00, 0x00, // -----........... - 0x50, 0x00, // -O-O-........... - 0x50, 0x00, // -O-O-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 169, char width: 11 - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x0e, 0x00, // ----OOO----..... - 0x11, 0x00, // ---O---O---..... - 0x2e, 0x80, // --O-OOO-O--..... - 0x10, 0x00, // ---O-------..... - 0x50, 0x00, // -O-O-------..... - 0x10, 0x00, // ---O-------..... - 0x0a, 0x80, // ----O-O-O--..... - 0x20, 0x00, // --O--------..... - 0x1e, 0x00, // ---OOOO----..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 170, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x10, 0x00, // ---O-........... - 0xf0, 0x00, // OOOO-........... - 0x90, 0x00, // O--O-........... - 0xf0, 0x00, // OOOO-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 171, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x28, 0x00, // --O-O-.......... - 0x50, 0x00, // -O-O--.......... - 0x50, 0x00, // -O-O--.......... - 0x68, 0x00, // -OO-O-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 172, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x03, 0x00, // ------OO-....... - 0x01, 0x00, // -------O-....... - 0x01, 0x00, // -------O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 173, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0xe0, 0x00, // OOO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 174, char width: 11 - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x0e, 0x00, // ----OOO----..... - 0x11, 0x00, // ---O---O---..... - 0x2e, 0x80, // --O-OOO-O--..... - 0x0a, 0x00, // ----O-O----..... - 0x4e, 0x00, // -O--OOO----..... - 0x0a, 0x00, // ----O-O----..... - 0x0a, 0x80, // ----O-O-O--..... - 0x21, 0x00, // --O----O---..... - 0x1e, 0x00, // ---OOOO----..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 175, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x70, 0x00, // -OOO-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 176, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x10, 0x00, // ---O-........... - 0x10, 0x00, // ---O-........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 177, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 178, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x10, 0x00, // ---O............ - 0x20, 0x00, // --O-............ - 0x40, 0x00, // -O--............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 179, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x10, 0x00, // ---O............ - 0x20, 0x00, // --O-............ - 0x10, 0x00, // ---O............ - 0x70, 0x00, // -OOO............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 180, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 181, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0xc8, 0x00, // OO--O--......... - 0xfc, 0x00, // OOOOOO-......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x00, 0x00, // -------......... - - // ASCII: 182, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x38, 0x00, // --OOO--......... - 0x68, 0x00, // -OO-O--......... - 0xe8, 0x00, // OOO-O--......... - 0xe8, 0x00, // OOO-O--......... - 0x68, 0x00, // -OO-O--......... - 0x28, 0x00, // --O-O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 183, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 184, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - - // ASCII: 185, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0xc0, 0x00, // OO--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 186, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x70, 0x00, // -OOO-........... - 0x50, 0x00, // -O-O-........... - 0x88, 0x00, // O---O........... - 0x50, 0x00, // -O-O-........... - 0x70, 0x00, // -OOO-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 187, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x50, 0x00, // -O-O--.......... - 0x28, 0x00, // --O-O-.......... - 0x28, 0x00, // --O-O-.......... - 0x50, 0x00, // -O-O--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 188, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0xc1, 0x00, // OO-----O--...... - 0x42, 0x00, // -O----O---...... - 0x40, 0x00, // -O--------...... - 0x44, 0x00, // -O---O----...... - 0x68, 0x80, // -OO-O---O-...... - 0x09, 0x80, // ----O--OO-...... - 0x12, 0x80, // ---O--O-O-...... - 0x13, 0x80, // ---O--OOO-...... - 0x20, 0x80, // --O-----O-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 189, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0xc1, 0x00, // OO-----O--...... - 0x42, 0x00, // -O----O---...... - 0x40, 0x00, // -O--------...... - 0x44, 0x00, // -O---O----...... - 0x6b, 0x80, // -OO-O-OOO-...... - 0x08, 0x80, // ----O---O-...... - 0x10, 0x80, // ---O----O-...... - 0x11, 0x00, // ---O---O--...... - 0x23, 0x80, // --O---OOO-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 190, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x61, 0x00, // -OO----O--...... - 0x11, 0x00, // ---O---O--...... - 0x22, 0x00, // --O---O---...... - 0x10, 0x00, // ---O------...... - 0x74, 0x80, // -OOO-O--O-...... - 0x08, 0x80, // ----O---O-...... - 0x08, 0x80, // ----O---O-...... - 0x13, 0xc0, // ---O--OOOO...... - 0x10, 0x80, // ---O----O-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 191, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x40, 0x00, // -O---........... - 0xc0, 0x00, // OO---........... - 0x80, 0x00, // O----........... - 0x70, 0x00, // -OOO-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 192, char width: 7 - 0x10, 0x00, // ---O---......... - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x18, 0x00, // ---OO--......... - 0x28, 0x00, // --O-O--......... - 0x28, 0x00, // --O-O--......... - 0x24, 0x00, // --O--O-......... - 0x64, 0x00, // -OO--O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x42, 0x00, // -O----O......... - 0x82, 0x00, // O-----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 193, char width: 7 - 0x08, 0x00, // ----O--......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x18, 0x00, // ---OO--......... - 0x28, 0x00, // --O-O--......... - 0x28, 0x00, // --O-O--......... - 0x24, 0x00, // --O--O-......... - 0x64, 0x00, // -OO--O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x42, 0x00, // -O----O......... - 0x82, 0x00, // O-----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 194, char width: 7 - 0x18, 0x00, // ---OO--......... - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x18, 0x00, // ---OO--......... - 0x28, 0x00, // --O-O--......... - 0x28, 0x00, // --O-O--......... - 0x24, 0x00, // --O--O-......... - 0x64, 0x00, // -OO--O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x42, 0x00, // -O----O......... - 0x82, 0x00, // O-----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 195, char width: 7 - 0x30, 0x00, // --OO---......... - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x18, 0x00, // ---OO--......... - 0x28, 0x00, // --O-O--......... - 0x28, 0x00, // --O-O--......... - 0x24, 0x00, // --O--O-......... - 0x64, 0x00, // -OO--O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x42, 0x00, // -O----O......... - 0x82, 0x00, // O-----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 196, char width: 7 - 0x28, 0x00, // --O-O--......... - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x18, 0x00, // ---OO--......... - 0x28, 0x00, // --O-O--......... - 0x28, 0x00, // --O-O--......... - 0x24, 0x00, // --O--O-......... - 0x64, 0x00, // -OO--O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x42, 0x00, // -O----O......... - 0x82, 0x00, // O-----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 197, char width: 7 - 0x10, 0x00, // ---O---......... - 0x28, 0x00, // --O-O--......... - 0x28, 0x00, // --O-O--......... - 0x18, 0x00, // ---OO--......... - 0x38, 0x00, // --OOO--......... - 0x28, 0x00, // --O-O--......... - 0x2c, 0x00, // --O-OO-......... - 0x64, 0x00, // -OO--O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x46, 0x00, // -O---OO......... - 0xc2, 0x00, // OO----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 198, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x1f, 0xc0, // ---OOOOOOO...... - 0x14, 0x00, // ---O-O----...... - 0x34, 0x00, // --OO-O----...... - 0x24, 0x00, // --O--O----...... - 0x27, 0x80, // --O--OOOO-...... - 0x64, 0x00, // -OO--O----...... - 0x7c, 0x00, // -OOOOO----...... - 0x44, 0x00, // -O---O----...... - 0x87, 0xc0, // O----OOOOO...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 199, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x3c, 0x00, // --OOOO-......... - 0x64, 0x00, // -OO--O-......... - 0xc0, 0x00, // OO-----......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0xc0, 0x00, // OO-----......... - 0x40, 0x00, // -O-----......... - 0x3c, 0x00, // --OOOO-......... - 0x08, 0x00, // ----O--......... - 0x18, 0x00, // ---OO--......... - 0x00, 0x00, // -------......... - - // ASCII: 200, char width: 7 - 0x20, 0x00, // --O----......... - 0x10, 0x00, // ---O---......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 201, char width: 7 - 0x10, 0x00, // ---O---......... - 0x00, 0x00, // -------......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 202, char width: 7 - 0x30, 0x00, // --OO---......... - 0x00, 0x00, // -------......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 203, char width: 7 - 0x28, 0x00, // --O-O--......... - 0x00, 0x00, // -------......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 204, char width: 3 - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 205, char width: 3 - 0x20, 0x00, // --O............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 206, char width: 3 - 0x60, 0x00, // -OO............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 207, char width: 3 - 0xa0, 0x00, // O-O............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 208, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x78, 0x00, // -OOOO---........ - 0x46, 0x00, // -O---OO-........ - 0x42, 0x00, // -O----O-........ - 0x43, 0x00, // -O----OO........ - 0xf1, 0x00, // OOOO---O........ - 0x43, 0x00, // -O----OO........ - 0x42, 0x00, // -O----O-........ - 0x46, 0x00, // -O---OO-........ - 0x7c, 0x00, // -OOOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 209, char width: 8 - 0x30, 0x00, // --OO----........ - 0x00, 0x00, // --------........ - 0x42, 0x00, // -O----O-........ - 0x62, 0x00, // -OO---O-........ - 0x72, 0x00, // -OOO--O-........ - 0x52, 0x00, // -O-O--O-........ - 0x5a, 0x00, // -O-OO-O-........ - 0x4a, 0x00, // -O--O-O-........ - 0x4e, 0x00, // -O--OOO-........ - 0x46, 0x00, // -O---OO-........ - 0x46, 0x00, // -O---OO-........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 210, char width: 8 - 0x10, 0x00, // ---O----........ - 0x00, 0x00, // --------........ - 0x38, 0x00, // --OOO---........ - 0x66, 0x00, // -OO--OO-........ - 0xc2, 0x00, // OO----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0xc2, 0x00, // OO----O-........ - 0x46, 0x00, // -O---OO-........ - 0x3c, 0x00, // --OOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 211, char width: 8 - 0x08, 0x00, // ----O---........ - 0x10, 0x00, // ---O----........ - 0x38, 0x00, // --OOO---........ - 0x66, 0x00, // -OO--OO-........ - 0xc2, 0x00, // OO----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0xc2, 0x00, // OO----O-........ - 0x46, 0x00, // -O---OO-........ - 0x3c, 0x00, // --OOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 212, char width: 8 - 0x18, 0x00, // ---OO---........ - 0x00, 0x00, // --------........ - 0x38, 0x00, // --OOO---........ - 0x66, 0x00, // -OO--OO-........ - 0xc2, 0x00, // OO----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0xc2, 0x00, // OO----O-........ - 0x46, 0x00, // -O---OO-........ - 0x3c, 0x00, // --OOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 213, char width: 8 - 0x30, 0x00, // --OO----........ - 0x00, 0x00, // --------........ - 0x38, 0x00, // --OOO---........ - 0x66, 0x00, // -OO--OO-........ - 0xc2, 0x00, // OO----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0xc2, 0x00, // OO----O-........ - 0x46, 0x00, // -O---OO-........ - 0x3c, 0x00, // --OOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 214, char width: 8 - 0x28, 0x00, // --O-O---........ - 0x00, 0x00, // --------........ - 0x38, 0x00, // --OOO---........ - 0x66, 0x00, // -OO--OO-........ - 0xc2, 0x00, // OO----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0xc2, 0x00, // OO----O-........ - 0x46, 0x00, // -O---OO-........ - 0x3c, 0x00, // --OOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 215, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x22, 0x00, // --O---O--....... - 0x14, 0x00, // ---O-O---....... - 0x08, 0x00, // ----O----....... - 0x1c, 0x00, // ---OOO---....... - 0x36, 0x00, // --OO-OO--....... - 0x22, 0x00, // --O---O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 216, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x7e, 0x00, // -OOOOOO-........ - 0x46, 0x00, // -O---OO-........ - 0x8e, 0x00, // O---OOO-........ - 0x8a, 0x00, // O---O-O-........ - 0x92, 0x00, // O--O--O-........ - 0xa2, 0x00, // O-O---O-........ - 0xc2, 0x00, // OO----O-........ - 0x64, 0x00, // -OO--O--........ - 0x98, 0x00, // O--OO---........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 217, char width: 8 - 0x20, 0x00, // --O-----........ - 0x10, 0x00, // ---O----........ - 0x04, 0x00, // -----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0xc4, 0x00, // OO---O--........ - 0x44, 0x00, // -O---O--........ - 0x7c, 0x00, // -OOOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 218, char width: 8 - 0x10, 0x00, // ---O----........ - 0x00, 0x00, // --------........ - 0x04, 0x00, // -----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0xc4, 0x00, // OO---O--........ - 0x44, 0x00, // -O---O--........ - 0x7c, 0x00, // -OOOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 219, char width: 8 - 0x30, 0x00, // --OO----........ - 0x00, 0x00, // --------........ - 0x04, 0x00, // -----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0xc4, 0x00, // OO---O--........ - 0x44, 0x00, // -O---O--........ - 0x7c, 0x00, // -OOOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 220, char width: 8 - 0x28, 0x00, // --O-O---........ - 0x00, 0x00, // --------........ - 0x04, 0x00, // -----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0xc4, 0x00, // OO---O--........ - 0x44, 0x00, // -O---O--........ - 0x7c, 0x00, // -OOOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 221, char width: 6 - 0x10, 0x00, // ---O--.......... - 0x00, 0x00, // ------.......... - 0x84, 0x00, // O----O.......... - 0x44, 0x00, // -O---O.......... - 0x48, 0x00, // -O--O-.......... - 0x38, 0x00, // --OOO-.......... - 0x30, 0x00, // --OO--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 222, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x78, 0x00, // -OOOO-.......... - 0x44, 0x00, // -O---O.......... - 0x44, 0x00, // -O---O.......... - 0x44, 0x00, // -O---O.......... - 0x78, 0x00, // -OOOO-.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 223, char width: 7 - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO---......... - 0x58, 0x00, // -O-OO--......... - 0xc8, 0x00, // OO--O--......... - 0x90, 0x00, // O--O---......... - 0xb0, 0x00, // O-OO---......... - 0x90, 0x00, // O--O---......... - 0x88, 0x00, // O---O--......... - 0x84, 0x00, // O----O-......... - 0x8c, 0x00, // O---OO-......... - 0x38, 0x00, // --OOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 224, char width: 6 - 0x00, 0x00, // ------.......... - 0x40, 0x00, // -O----.......... - 0x20, 0x00, // --O---.......... - 0x00, 0x00, // ------.......... - 0x70, 0x00, // -OOO--.......... - 0x18, 0x00, // ---OO-.......... - 0x08, 0x00, // ----O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 225, char width: 6 - 0x00, 0x00, // ------.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x20, 0x00, // --O---.......... - 0x70, 0x00, // -OOO--.......... - 0x18, 0x00, // ---OO-.......... - 0x08, 0x00, // ----O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 226, char width: 6 - 0x00, 0x00, // ------.......... - 0x20, 0x00, // --O---.......... - 0x30, 0x00, // --OO--.......... - 0x40, 0x00, // -O----.......... - 0x70, 0x00, // -OOO--.......... - 0x18, 0x00, // ---OO-.......... - 0x08, 0x00, // ----O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 227, char width: 6 - 0x00, 0x00, // ------.......... - 0x60, 0x00, // -OO---.......... - 0x50, 0x00, // -O-O--.......... - 0x00, 0x00, // ------.......... - 0x70, 0x00, // -OOO--.......... - 0x08, 0x00, // ----O-.......... - 0x38, 0x00, // --OOO-.......... - 0xc8, 0x00, // OO--O-.......... - 0x88, 0x00, // O---O-.......... - 0xd8, 0x00, // OO-OO-.......... - 0x60, 0x00, // -OO---.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 228, char width: 6 - 0x00, 0x00, // ------.......... - 0x50, 0x00, // -O-O--.......... - 0x50, 0x00, // -O-O--.......... - 0x00, 0x00, // ------.......... - 0x70, 0x00, // -OOO--.......... - 0x08, 0x00, // ----O-.......... - 0x38, 0x00, // --OOO-.......... - 0xc8, 0x00, // OO--O-.......... - 0x88, 0x00, // O---O-.......... - 0xd8, 0x00, // OO-OO-.......... - 0x60, 0x00, // -OO---.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 229, char width: 6 - 0x20, 0x00, // --O---.......... - 0x50, 0x00, // -O-O--.......... - 0x50, 0x00, // -O-O--.......... - 0x20, 0x00, // --O---.......... - 0x70, 0x00, // -OOO--.......... - 0x18, 0x00, // ---OO-.......... - 0x08, 0x00, // ----O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 230, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x73, 0x00, // -OOO--OO--...... - 0x1c, 0x80, // ---OOO--O-...... - 0x08, 0x80, // ----O---O-...... - 0x7f, 0xc0, // -OOOOOOOOO...... - 0x88, 0x00, // O---O-----...... - 0x8c, 0x00, // O---OO----...... - 0x77, 0x80, // -OOO-OOOO-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 231, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x30, 0x00, // --OO--.......... - 0x40, 0x00, // -O----.......... - 0x80, 0x00, // O-----.......... - 0x80, 0x00, // O-----.......... - 0x80, 0x00, // O-----.......... - 0xc0, 0x00, // OO----.......... - 0x78, 0x00, // -OOOO-.......... - 0x10, 0x00, // ---O--.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - - // ASCII: 232, char width: 6 - 0x00, 0x00, // ------.......... - 0x40, 0x00, // -O----.......... - 0x20, 0x00, // --O---.......... - 0x00, 0x00, // ------.......... - 0x30, 0x00, // --OO--.......... - 0x48, 0x00, // -O--O-.......... - 0x88, 0x00, // O---O-.......... - 0xfc, 0x00, // OOOOOO.......... - 0x80, 0x00, // O-----.......... - 0xc0, 0x00, // OO----.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 233, char width: 6 - 0x00, 0x00, // ------.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x20, 0x00, // --O---.......... - 0x30, 0x00, // --OO--.......... - 0x48, 0x00, // -O--O-.......... - 0x88, 0x00, // O---O-.......... - 0xfc, 0x00, // OOOOOO.......... - 0x80, 0x00, // O-----.......... - 0xc0, 0x00, // OO----.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 234, char width: 6 - 0x00, 0x00, // ------.......... - 0x20, 0x00, // --O---.......... - 0x30, 0x00, // --OO--.......... - 0x40, 0x00, // -O----.......... - 0x30, 0x00, // --OO--.......... - 0x48, 0x00, // -O--O-.......... - 0x88, 0x00, // O---O-.......... - 0xfc, 0x00, // OOOOOO.......... - 0x80, 0x00, // O-----.......... - 0xc0, 0x00, // OO----.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 235, char width: 6 - 0x00, 0x00, // ------.......... - 0x50, 0x00, // -O-O--.......... - 0x50, 0x00, // -O-O--.......... - 0x00, 0x00, // ------.......... - 0x78, 0x00, // -OOOO-.......... - 0xc8, 0x00, // OO--O-.......... - 0x8c, 0x00, // O---OO.......... - 0xf8, 0x00, // OOOOO-.......... - 0x80, 0x00, // O-----.......... - 0x40, 0x00, // -O----.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 236, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 237, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 238, char width: 3 - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x60, 0x00, // -OO............. - 0x80, 0x00, // O--............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 239, char width: 3 - 0x00, 0x00, // ---............. - 0xa0, 0x00, // O-O............. - 0xa0, 0x00, // O-O............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 240, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x30, 0x00, // --OO--.......... - 0x10, 0x00, // ---O--.......... - 0x78, 0x00, // -OOOO-.......... - 0xc8, 0x00, // OO--O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x48, 0x00, // -O--O-.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 241, char width: 7 - 0x00, 0x00, // -------......... - 0x28, 0x00, // --O-O--......... - 0x18, 0x00, // ---OO--......... - 0x00, 0x00, // -------......... - 0xf8, 0x00, // OOOOO--......... - 0xc8, 0x00, // OO--O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 242, char width: 6 - 0x00, 0x00, // ------.......... - 0x40, 0x00, // -O----.......... - 0x20, 0x00, // --O---.......... - 0x00, 0x00, // ------.......... - 0x30, 0x00, // --OO--.......... - 0x58, 0x00, // -O-OO-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0xc8, 0x00, // OO--O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 243, char width: 6 - 0x00, 0x00, // ------.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x20, 0x00, // --O---.......... - 0x30, 0x00, // --OO--.......... - 0x58, 0x00, // -O-OO-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0xc8, 0x00, // OO--O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 244, char width: 6 - 0x00, 0x00, // ------.......... - 0x20, 0x00, // --O---.......... - 0x30, 0x00, // --OO--.......... - 0x40, 0x00, // -O----.......... - 0x30, 0x00, // --OO--.......... - 0x58, 0x00, // -O-OO-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0xc8, 0x00, // OO--O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 245, char width: 6 - 0x00, 0x00, // ------.......... - 0x60, 0x00, // -OO---.......... - 0x50, 0x00, // -O-O--.......... - 0x00, 0x00, // ------.......... - 0x78, 0x00, // -OOOO-.......... - 0xc8, 0x00, // OO--O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x48, 0x00, // -O--O-.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 246, char width: 6 - 0x00, 0x00, // ------.......... - 0x50, 0x00, // -O-O--.......... - 0x50, 0x00, // -O-O--.......... - 0x00, 0x00, // ------.......... - 0x78, 0x00, // -OOOO-.......... - 0xc8, 0x00, // OO--O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x48, 0x00, // -O--O-.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 247, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 248, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x7c, 0x00, // -OOOOO.......... - 0x4c, 0x00, // -O--OO.......... - 0x54, 0x00, // -O-O-O.......... - 0x54, 0x00, // -O-O-O.......... - 0x64, 0x00, // -OO--O.......... - 0x68, 0x00, // -OO-O-.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 249, char width: 7 - 0x00, 0x00, // -------......... - 0x40, 0x00, // -O-----......... - 0x20, 0x00, // --O----......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0xc8, 0x00, // OO--O--......... - 0x78, 0x00, // -OOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 250, char width: 7 - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x20, 0x00, // --O----......... - 0x00, 0x00, // -------......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0xc8, 0x00, // OO--O--......... - 0x78, 0x00, // -OOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 251, char width: 7 - 0x00, 0x00, // -------......... - 0x20, 0x00, // --O----......... - 0x30, 0x00, // --OO---......... - 0x40, 0x00, // -O-----......... - 0x00, 0x00, // -------......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0xc8, 0x00, // OO--O--......... - 0x78, 0x00, // -OOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 252, char width: 7 - 0x00, 0x00, // -------......... - 0x50, 0x00, // -O-O---......... - 0x50, 0x00, // -O-O---......... - 0x00, 0x00, // -------......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x58, 0x00, // -O-OO--......... - 0x20, 0x00, // --O----......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 253, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x10, 0x00, // ---O--.......... - 0x00, 0x00, // ------.......... - 0x04, 0x00, // -----O.......... - 0x44, 0x00, // -O---O.......... - 0x48, 0x00, // -O--O-.......... - 0x48, 0x00, // -O--O-.......... - 0x28, 0x00, // --O-O-.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x60, 0x00, // -OO---.......... - 0x00, 0x00, // ------.......... - - // ASCII: 254, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0xf8, 0x00, // OOOOO--......... - 0xc8, 0x00, // OO--O--......... - 0xc4, 0x00, // OO---O-......... - 0x84, 0x00, // O----O-......... - 0xc4, 0x00, // OO---O-......... - 0xc8, 0x00, // OO--O--......... - 0xb0, 0x00, // O-OO---......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x00, 0x00, // -------......... - - // ASCII: 255, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0xc4, 0x00, // OO---O.......... - 0x4c, 0x00, // -O--OO.......... - 0x48, 0x00, // -O--O-.......... - 0x28, 0x00, // --O-O-.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x10, 0x00, // ---O--.......... - 0x20, 0x00, // --O---.......... - 0x60, 0x00, // -OO---.......... - 0x00, 0x00, // ------.......... -}; - -static const uint8_t dejavu_14_widths[224] = -{ - 2, 4, 5, 9, 7, 10, 8, 3, - 4, 4, 5, 9, 3, 4, 3, 3, - 7, 7, 7, 7, 7, 7, 7, 7, - 7, 7, 3, 3, 9, 9, 9, 5, - 11, 7, 7, 7, 8, 7, 6, 8, - 8, 3, 3, 7, 6, 9, 8, 8, - 6, 8, 7, 7, 6, 8, 7, 10, - 7, 6, 7, 4, 3, 4, 9, 5, - 5, 6, 7, 6, 7, 6, 4, 7, - 7, 3, 3, 6, 2, 10, 7, 6, - 7, 7, 5, 5, 4, 6, 7, 9, - 6, 6, 5, 7, 3, 7, 9, 3, - 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, - 3, 4, 7, 7, 7, 7, 3, 5, - 5, 11, 5, 6, 9, 4, 11, 5, - 5, 9, 4, 4, 5, 7, 7, 3, - 5, 4, 5, 6, 10, 10, 10, 5, - 7, 7, 7, 7, 7, 7, 10, 7, - 7, 7, 7, 7, 3, 3, 3, 3, - 8, 8, 8, 8, 8, 8, 8, 9, - 8, 8, 8, 8, 8, 6, 6, 7, - 6, 6, 6, 6, 6, 6, 10, 6, - 6, 6, 6, 6, 3, 3, 3, 3, - 6, 7, 6, 6, 6, 6, 6, 9, - 6, 7, 7, 7, 7, 6, 7, 6, -}; - -static const font_t dejavu_14_dsc = -{ - 224, // Letter count - 32, // First ascii code - 2, // Letters width (bytes) - 14, // Letters height (row) - 0, // Fixed width or 0 if variable - dejavu_14_widths, - dejavu_14_bitmaps -}; - - -const font_t * dejavu_14_get_dsc(void) -{ - return &dejavu_14_dsc; -} - - -#endif diff --git a/lv_misc/fonts/dejavu_14.h b/lv_misc/fonts/dejavu_14.h deleted file mode 100644 index 109af8bab..000000000 --- a/lv_misc/fonts/dejavu_14.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef DEJAVU_14_H -#define DEJAVU_14_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_DEJAVU_14 != 0 - - -#include -#include "../font.h" - - -const font_t * dejavu_14_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/dejavu_20.c b/lv_misc/fonts/dejavu_20.c deleted file mode 100644 index b680ebc0e..000000000 --- a/lv_misc/fonts/dejavu_20.c +++ /dev/null @@ -1,5020 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_20 != 0 - -#include -#include "../font.h" - -static const uint8_t dejavu_20_bitmaps[8960] = -{ - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 33, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x10, 0x00, // ---O--.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 34, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x28, 0x00, // --O-O--......... - 0x6c, 0x00, // -OO-OO-......... - 0x6c, 0x00, // -OO-OO-......... - 0x6c, 0x00, // -OO-OO-......... - 0x28, 0x00, // --O-O--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 35, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x40, // ---------O---... - 0x04, 0x40, // -----O---O---... - 0x04, 0xc0, // -----O--OO---... - 0x04, 0xc0, // -----O--OO---... - 0x3f, 0xf0, // --OOOOOOOOOO-... - 0x0c, 0x80, // ----OO--O----... - 0x09, 0x80, // ----O--OO----... - 0x09, 0x80, // ----O--OO----... - 0x7f, 0xe0, // -OOOOOOOOOO--... - 0x19, 0x00, // ---OO--O-----... - 0x11, 0x00, // ---O---O-----... - 0x13, 0x00, // ---O--OO-----... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 36, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x1e, 0x00, // ---OOOO--....... - 0x3b, 0x00, // --OOO-OO-....... - 0x68, 0x00, // -OO-O----....... - 0x68, 0x00, // -OO-O----....... - 0x38, 0x00, // --OOO----....... - 0x1e, 0x00, // ---OOOO--....... - 0x0f, 0x00, // ----OOOO-....... - 0x09, 0x00, // ----O--O-....... - 0x09, 0x00, // ----O--O-....... - 0x6b, 0x00, // -OO-O-OO-....... - 0x3e, 0x00, // --OOOOO--....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 37, char width: 14 - 0x00, 0x00, // --------------.. - 0x00, 0x00, // --------------.. - 0x00, 0x00, // --------------.. - 0x00, 0x00, // --------------.. - 0x70, 0x40, // -OOO-----O----.. - 0xc8, 0xc0, // O---O---OO----.. - 0x88, 0x80, // O---O---O-----.. - 0x89, 0x80, // O---O--OO-----.. - 0x89, 0x00, // O---O--O------.. - 0x73, 0x00, // -OOO--OO------.. - 0x02, 0x70, // ------O--OOO--.. - 0x04, 0x88, // -----O--O---O-.. - 0x04, 0x88, // -----O--O---O-.. - 0x08, 0x88, // ----O---O---O-.. - 0x08, 0x88, // ----O---O---O-.. - 0x10, 0x70, // ---O-----OOO--.. - 0x00, 0x00, // --------------.. - 0x00, 0x00, // --------------.. - 0x00, 0x00, // --------------.. - 0x00, 0x00, // --------------.. - - // ASCII: 38, char width: 12 - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x0c, 0x00, // ----OO------.... - 0x1e, 0x00, // ---OOOO-----.... - 0x20, 0x00, // --O---------.... - 0x20, 0x00, // --O---------.... - 0x30, 0x00, // --OO--------.... - 0x30, 0x00, // --OO--------.... - 0x78, 0x40, // -OOOO----O--.... - 0x4c, 0x40, // -O--OO---O--.... - 0xc6, 0x40, // OO---OO--O--.... - 0xc3, 0xc0, // OO----OOOO--.... - 0x41, 0x80, // -O-----OO---.... - 0x63, 0xc0, // -OO---OOOO--.... - 0x3e, 0x60, // --OOOOO--OO-.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 39, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x20, 0x00, // --O-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 40, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x30, 0x00, // --OO--.......... - 0x20, 0x00, // --O---.......... - 0x20, 0x00, // --O---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x20, 0x00, // --O---.......... - 0x20, 0x00, // --O---.......... - 0x30, 0x00, // --OO--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 41, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x60, 0x00, // -OO---.......... - 0x20, 0x00, // --O---.......... - 0x30, 0x00, // --OO--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x30, 0x00, // --OO--.......... - 0x20, 0x00, // --O---.......... - 0x20, 0x00, // --O---.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 42, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x52, 0x00, // -O-O--O......... - 0x3c, 0x00, // --OOOO-......... - 0x18, 0x00, // ---OO--......... - 0x54, 0x00, // -O-O-O-......... - 0x12, 0x00, // ---O--O......... - 0x10, 0x00, // ---O---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 43, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x7f, 0xe0, // -OOOOOOOOOO--... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 44, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x40, 0x00, // -O---........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 45, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0xf0, 0x00, // OOOO-........... - 0xf0, 0x00, // OOOO-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 46, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 47, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x08, 0x00, // ----O........... - 0x18, 0x00, // ---OO........... - 0x18, 0x00, // ---OO........... - 0x10, 0x00, // ---O-........... - 0x10, 0x00, // ---O-........... - 0x30, 0x00, // --OO-........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x60, 0x00, // -OO--........... - 0x40, 0x00, // -O---........... - 0x40, 0x00, // -O---........... - 0xc0, 0x00, // OO---........... - 0x80, 0x00, // O----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 48, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1C, 0x00, // ---OOO---....... - 0x44, 0x00, // --O---O--....... - 0x82, 0x00, // -O-----O-....... - 0x81, 0x00, // O-------O-....... - 0x81, 0x00, // O-------O-....... - 0x81, 0x00, // O-------O-....... - 0x81, 0x00, // O-------O-....... - 0x81, 0x00, // O-------O-....... - 0x81, 0x00, // O-------O-....... - 0x81, 0x00, // O-------O....... - 0x42, 0x00, // -O-----O-....... - 0x24, 0x00, // --O---O--....... - 0x1c, 0x00, // ---OOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 49, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x38, 0x00, // --OOO----....... - 0x68, 0x00, // -OO-O----....... - 0x88, 0x00, // O---O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 50, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x18, 0x00, // ---OO----....... - 0x7e, 0x00, // -OOOOOO--....... - 0x43, 0x00, // -O----OO-....... - 0x03, 0x00, // ------OO-....... - 0x01, 0x00, // -------O-....... - 0x03, 0x00, // ------OO-....... - 0x06, 0x00, // -----OO--....... - 0x06, 0x00, // -----OO--....... - 0x0c, 0x00, // ----OO---....... - 0x18, 0x00, // ---OO----....... - 0x30, 0x00, // --OO-----....... - 0x70, 0x00, // -OOO-----....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 51, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1c, 0x00, // ---OOO---....... - 0x66, 0x00, // -OO--OO--....... - 0x03, 0x00, // ------OO-....... - 0x01, 0x00, // -------O-....... - 0x01, 0x00, // -------O-....... - 0x03, 0x00, // ------OO-....... - 0x1e, 0x00, // ---OOOO--....... - 0x03, 0x00, // ------OO-....... - 0x01, 0x00, // -------O-....... - 0x01, 0x00, // -------O-....... - 0x01, 0x00, // -------O-....... - 0x43, 0x00, // -O----OO-....... - 0x3e, 0x00, // --OOOOO--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 52, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x06, 0x00, // -----OO--....... - 0x0e, 0x00, // ----OOO--....... - 0x1e, 0x00, // ---OOOO--....... - 0x16, 0x00, // ---O-OO--....... - 0x36, 0x00, // --OO-OO--....... - 0x26, 0x00, // --O--OO--....... - 0x46, 0x00, // -O---OO--....... - 0xc6, 0x00, // OO---OO--....... - 0xc7, 0x00, // OO---OOO-....... - 0xff, 0x00, // OOOOOOOO-....... - 0x06, 0x00, // -----OO--....... - 0x06, 0x00, // -----OO--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 53, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x3e, 0x00, // --OOOOO--....... - 0x20, 0x00, // --O------....... - 0x20, 0x00, // --O------....... - 0x3c, 0x00, // --OOOO---....... - 0x3e, 0x00, // --OOOOO--....... - 0x03, 0x00, // ------OO-....... - 0x01, 0x00, // -------O-....... - 0x01, 0x00, // -------O-....... - 0x01, 0x00, // -------O-....... - 0x03, 0x00, // ------OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 54, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x06, 0x00, // -----OO--....... - 0x1f, 0x00, // ---OOOOO-....... - 0x30, 0x00, // --OO-----....... - 0x20, 0x00, // --O------....... - 0x60, 0x00, // -OO------....... - 0x7e, 0x00, // -OOOOOO--....... - 0x73, 0x00, // -OOO--OO-....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x21, 0x80, // --O----OO....... - 0x33, 0x00, // --OO--OO-....... - 0x1e, 0x00, // ---OOOO--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 55, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x03, 0x00, // ------OO-....... - 0x03, 0x00, // ------OO-....... - 0x02, 0x00, // ------O--....... - 0x06, 0x00, // -----OO--....... - 0x04, 0x00, // -----O---....... - 0x0c, 0x00, // ----OO---....... - 0x0c, 0x00, // ----OO---....... - 0x08, 0x00, // ----O----....... - 0x18, 0x00, // ---OO----....... - 0x18, 0x00, // ---OO----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 56, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x38, 0x00, // --OOO----....... - 0x6c, 0x00, // -OO-OO---....... - 0xc6, 0x00, // OO---OO--....... - 0xc6, 0x00, // OO---OO--....... - 0xc6, 0x00, // OO---OO--....... - 0x6c, 0x00, // -OO-OO---....... - 0x3c, 0x00, // --OOOO---....... - 0x66, 0x00, // -OO--OO--....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 57, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1c, 0x00, // ---OOO---....... - 0x3e, 0x00, // --OOOOO--....... - 0x63, 0x00, // -OO---OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0x6f, 0x00, // -OO-OOOO-....... - 0x3b, 0x00, // --OOO-OO-....... - 0x03, 0x00, // ------OO-....... - 0x02, 0x00, // ------O--....... - 0x46, 0x00, // -O---OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 58, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 59, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x60, 0x00, // -OO--........... - 0x40, 0x00, // -O---........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 60, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x20, // ----------O--... - 0x01, 0xe0, // -------OOOO--... - 0x07, 0x80, // -----OOOO----... - 0x3c, 0x00, // --OOOO-------... - 0x70, 0x00, // -OOO---------... - 0x78, 0x00, // -OOOO--------... - 0x0f, 0x00, // ----OOOO-----... - 0x03, 0xc0, // ------OOOO---... - 0x00, 0x60, // ---------OO--... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 61, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x7f, 0xe0, // -OOOOOOOOOO--... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x7f, 0xe0, // -OOOOOOOOOO--... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 62, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x40, 0x00, // -O-----------... - 0x70, 0x00, // -OOO---------... - 0x1e, 0x00, // ---OOOO------... - 0x03, 0x80, // ------OOO----... - 0x00, 0xe0, // --------OOO--... - 0x01, 0xc0, // -------OOO---... - 0x0f, 0x00, // ----OOOO-----... - 0x38, 0x00, // --OOO--------... - 0x60, 0x00, // -OO----------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 63, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x18, 0x00, // ---OO---........ - 0x7c, 0x00, // -OOOOO--........ - 0x46, 0x00, // -O---OO-........ - 0x06, 0x00, // -----OO-........ - 0x06, 0x00, // -----OO-........ - 0x0c, 0x00, // ----OO--........ - 0x18, 0x00, // ---OO---........ - 0x18, 0x00, // ---OO---........ - 0x10, 0x00, // ---O----........ - 0x10, 0x00, // ---O----........ - 0x00, 0x00, // --------........ - 0x10, 0x00, // ---O----........ - 0x10, 0x00, // ---O----........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 64, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x0f, 0xe0, // ----OOOOOOO----. - 0x18, 0x30, // ---OO-----OO---. - 0x20, 0x18, // --O--------OO--. - 0x63, 0x08, // -OO---OO----O--. - 0x47, 0xcc, // -O---OOOOO--OO-. - 0x4c, 0x44, // -O--OO---O---O-. - 0xc8, 0x44, // OO--O----O---O-. - 0xc8, 0x4c, // OO--O----O--OO-. - 0x4c, 0x48, // -O--OO---O--O--. - 0x46, 0xf8, // -O---OO-OOOOO--. - 0x43, 0x60, // -O----OO-OO----. - 0x20, 0x00, // --O------------. - 0x18, 0x20, // ---OO-----O----. - 0x0f, 0xe0, // ----OOOOOOO----. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 65, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x04, 0x00, // -----O----...... - 0x0e, 0x00, // ----OOO---...... - 0x0e, 0x00, // ----OOO---...... - 0x1a, 0x00, // ---OO-O---...... - 0x13, 0x00, // ---O--OO--...... - 0x33, 0x00, // --OO--OO--...... - 0x31, 0x00, // --OO---O--...... - 0x21, 0x80, // --O----OO-...... - 0x7f, 0x80, // -OOOOOOOO-...... - 0x60, 0x80, // -OO-----O-...... - 0x40, 0xc0, // -O------OO...... - 0xc0, 0xc0, // OO------OO...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 66, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x3e, 0x00, // --OOOOO---...... - 0x7f, 0x00, // -OOOOOOO--...... - 0x61, 0x80, // -OO----OO-...... - 0x61, 0x80, // -OO----OO-...... - 0x61, 0x80, // -OO----OO-...... - 0x7f, 0x00, // -OOOOOOO--...... - 0x7f, 0x00, // -OOOOOOO--...... - 0x61, 0x80, // -OO----OO-...... - 0x60, 0x80, // -OO-----O-...... - 0x60, 0x80, // -OO-----O-...... - 0x60, 0x80, // -OO-----O-...... - 0x61, 0x80, // -OO----OO-...... - 0x7f, 0x00, // -OOOOOOO--...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 67, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x0e, 0x00, // ----OOO---...... - 0x3f, 0x00, // --OOOOOO--...... - 0x70, 0x80, // -OOO----O-...... - 0x60, 0x00, // -OO-------...... - 0x40, 0x00, // -O--------...... - 0xc0, 0x00, // OO--------...... - 0xc0, 0x00, // OO--------...... - 0xc0, 0x00, // OO--------...... - 0xc0, 0x00, // OO--------...... - 0x40, 0x00, // -O--------...... - 0x60, 0x00, // -OO-------...... - 0x30, 0x80, // --OO----O-...... - 0x1f, 0x00, // ---OOOOO--...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 68, char width: 12 - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x3e, 0x00, // --OOOOO-----.... - 0x7f, 0x80, // -OOOOOOOO---.... - 0x60, 0xc0, // -OO-----OO--.... - 0x60, 0x40, // -OO------O--.... - 0x60, 0x60, // -OO------OO-.... - 0x60, 0x60, // -OO------OO-.... - 0x60, 0x60, // -OO------OO-.... - 0x60, 0x60, // -OO------OO-.... - 0x60, 0x60, // -OO------OO-.... - 0x60, 0xc0, // -OO-----OO--.... - 0x61, 0xc0, // -OO----OOO--.... - 0x7f, 0x80, // -OOOOOOOO---.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 69, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 70, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3f, 0x00, // --OOOOOO-....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7e, 0x00, // -OOOOOO--....... - 0x7e, 0x00, // -OOOOOO--....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 71, char width: 12 - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x0f, 0x00, // ----OOOO----.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x60, 0x40, // -OO------O--.... - 0x60, 0x00, // -OO---------.... - 0x40, 0x00, // -O----------.... - 0xc0, 0x00, // OO----------.... - 0xc0, 0x00, // OO----------.... - 0xc3, 0xc0, // OO----OOOO--.... - 0xc0, 0x40, // OO-------O--.... - 0x40, 0x40, // -O-------O--.... - 0x60, 0x40, // -OO------O--.... - 0x30, 0xc0, // --OO----OO--.... - 0x1f, 0x80, // ---OOOOOO---.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 72, char width: 11 - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x60, 0xC0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x7f, 0xc0, // -OOOOOOOOO-..... - 0x7f, 0xc0, // -OOOOOOOOO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 73, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 74, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0xc0, 0x00, // OO--............ - 0xc0, 0x00, // OO--............ - 0x00, 0x00, // ----............ - - // ASCII: 75, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x60, 0x80, // -OO-----O-...... - 0x61, 0x80, // -OO----OO-...... - 0x63, 0x00, // -OO---OO--...... - 0x66, 0x00, // -OO--OO---...... - 0x6c, 0x00, // -OO-OO----...... - 0x78, 0x00, // -OOOO-----...... - 0x78, 0x00, // -OOOO-----...... - 0x6c, 0x00, // -OO-OO----...... - 0x66, 0x00, // -OO--OO---...... - 0x63, 0x00, // -OO---OO--...... - 0x61, 0x80, // -OO----OO-...... - 0x60, 0x80, // -OO-----O-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 76, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x7f, 0x00, // -OOOOOOO........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 77, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x70, 0x70, // -OOO-----OOO-... - 0x70, 0x70, // -OOO-----OOO-... - 0x78, 0x70, // -OOOO----OOO-... - 0x68, 0xf0, // -OO-O---OOOO-... - 0x68, 0xb0, // -OO-O---O-OO-... - 0x6c, 0xb0, // -OO-OO--O-OO-... - 0x65, 0xb0, // -OO--O-OO-OO-... - 0x65, 0x30, // -OO--O-O--OO-... - 0x67, 0x30, // -OO--OOO--OO-... - 0x63, 0x30, // -OO---OO--OO-... - 0x60, 0x30, // -OO-------OO-... - 0x60, 0x30, // -OO-------OO-... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 78, char width: 11 - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x70, 0x40, // -OOO-----O-..... - 0x70, 0xc0, // -OOO----OO-..... - 0x78, 0xc0, // -OOOO---OO-..... - 0x68, 0xc0, // -OO-O---OO-..... - 0x6c, 0xc0, // -OO-OO--OO-..... - 0x64, 0xc0, // -OO--O--OO-..... - 0x66, 0xc0, // -OO--OO-OO-..... - 0x66, 0xc0, // -OO--OO-OO-..... - 0x63, 0xc0, // -OO---OOOO-..... - 0x63, 0xc0, // -OO---OOOO-..... - 0x61, 0xc0, // -OO----OOO-..... - 0x61, 0xc0, // -OO----OOO-..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 79, char width: 12 - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x0e, 0x00, // ----OOO-----.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x71, 0xc0, // -OOO---OOO--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x40, 0x40, // -O-------O--.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0x40, 0x40, // -O-------O--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x31, 0x80, // --OO---OO---.... - 0x1f, 0x00, // ---OOOOO----.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 80, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x63, 0x00, // -OO---OO-....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x7c, 0x00, // -OOOOO---....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 81, char width: 12 - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x0e, 0x00, // ----OOO-----.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x71, 0xc0, // -OOO---OOO--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x40, 0x40, // -O-------O--.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0x40, 0x40, // -O-------O--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x31, 0x80, // --OO---OO---.... - 0x1f, 0x00, // ---OOOOO----.... - 0x03, 0x00, // ------OO----.... - 0x01, 0x80, // -------OO---.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 82, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x3e, 0x00, // --OOOOO---...... - 0x7f, 0x00, // -OOOOOOO--...... - 0x61, 0x80, // -OO----OO-...... - 0x61, 0x80, // -OO----OO-...... - 0x61, 0x80, // -OO----OO-...... - 0x63, 0x00, // -OO---OO--...... - 0x7e, 0x00, // -OOOOOO---...... - 0x63, 0x00, // -OO---OO--...... - 0x61, 0x00, // -OO----O--...... - 0x61, 0x80, // -OO----OO-...... - 0x60, 0x80, // -OO-----O-...... - 0x60, 0xc0, // -OO-----OO...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 83, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1c, 0x00, // ---OOO---....... - 0x77, 0x00, // -OOO-OOO-....... - 0x60, 0x00, // -OO------....... - 0xc0, 0x00, // OO-------....... - 0xc0, 0x00, // OO-------....... - 0x60, 0x00, // -OO------....... - 0x3c, 0x00, // --OOOO---....... - 0x0e, 0x00, // ----OOO--....... - 0x03, 0x00, // ------OO-....... - 0x01, 0x00, // -------O-....... - 0x01, 0x00, // -------O-....... - 0x43, 0x00, // -O----OO-....... - 0x3e, 0x00, // --OOOOO--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 84, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0xff, 0x80, // OOOOOOOOO....... - 0xff, 0x80, // OOOOOOOOO....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 85, char width: 11 - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x30, 0x80, // --OO----O--..... - 0x3f, 0x80, // --OOOOOOO--..... - 0x0e, 0x00, // ----OOO----..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 86, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x80, 0x40, // O--------O...... - 0xc0, 0xc0, // OO------OO...... - 0x40, 0xc0, // -O------OO...... - 0x60, 0x80, // -OO-----O-...... - 0x21, 0x80, // --O----OO-...... - 0x31, 0x80, // --OO---OO-...... - 0x31, 0x00, // --OO---O--...... - 0x13, 0x00, // ---O--OO--...... - 0x1a, 0x00, // ---OO-O---...... - 0x1a, 0x00, // ---OO-O---...... - 0x0e, 0x00, // ----OOO---...... - 0x0c, 0x00, // ----OO----...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 87, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x41, 0x04, // -O-----O-----O-. - 0x43, 0x84, // -O----OOO----O-. - 0x63, 0x84, // -OO---OOO----O-. - 0x62, 0x8c, // -OO---O-O---OO-. - 0x62, 0x8c, // -OO---O-O---OO-. - 0x26, 0xc8, // --O--OO-OO--O--. - 0x26, 0x48, // --O--OO--O--O--. - 0x34, 0x58, // --OO-O---O-OO--. - 0x34, 0x58, // --OO-O---O-OO--. - 0x1c, 0x70, // ---OOO---OOO---. - 0x1c, 0x70, // ---OOO---OOO---. - 0x18, 0x30, // ---OO-----OO---. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 88, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x60, 0x80, // -OO-----O-...... - 0x21, 0x80, // --O----OO-...... - 0x31, 0x00, // --OO---O--...... - 0x1b, 0x00, // ---OO-OO--...... - 0x0e, 0x00, // ----OOO---...... - 0x0e, 0x00, // ----OOO---...... - 0x0c, 0x00, // ----OO----...... - 0x1e, 0x00, // ---OOOO---...... - 0x13, 0x00, // ---O--OO--...... - 0x31, 0x00, // --OO---O--...... - 0x21, 0x80, // --O----OO-...... - 0x60, 0x80, // -OO-----O-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 89, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0xc0, 0x80, // OO------O....... - 0x41, 0x80, // -O-----OO....... - 0x63, 0x00, // -OO---OO-....... - 0x32, 0x00, // --OO--O--....... - 0x16, 0x00, // ---O-OO--....... - 0x1c, 0x00, // ---OOO---....... - 0x0c, 0x00, // ----OO---....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 90, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0xff, 0x80, // OOOOOOOOO-...... - 0x7f, 0x80, // -OOOOOOOO-...... - 0x03, 0x00, // ------OO--...... - 0x03, 0x00, // ------OO--...... - 0x06, 0x00, // -----OO---...... - 0x0c, 0x00, // ----OO----...... - 0x08, 0x00, // ----O-----...... - 0x18, 0x00, // ---OO-----...... - 0x30, 0x00, // --OO------...... - 0x60, 0x00, // -OO-------...... - 0x40, 0x00, // -O--------...... - 0xff, 0x80, // OOOOOOOOO-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 91, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0xf0, 0x00, // -OOOO-.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0xf0, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 92, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x80, 0x00, // O----........... - 0xc0, 0x00, // OO---........... - 0x40, 0x00, // -O---........... - 0x40, 0x00, // -O---........... - 0x40, 0x00, // -O---........... - 0x60, 0x00, // -OO--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x30, 0x00, // --OO-........... - 0x10, 0x00, // ---O-........... - 0x10, 0x00, // ---O-........... - 0x10, 0x00, // ---O-........... - 0x18, 0x00, // ---OO........... - 0x08, 0x00, // ----O........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 93, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0xf8, 0x00, // OOOOO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0xf8, 0x00, // OOOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 94, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x06, 0x00, // -----OO------... - 0x0f, 0x00, // ----OOOO-----... - 0x19, 0x80, // ---OO--OO----... - 0x30, 0xc0, // --OO----OO---... - 0x20, 0x40, // --O------O---... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 95, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x7f, 0x00, // -OOOOOOO........ - 0x00, 0x00, // -------......... - - // ASCII: 96, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x20, 0x00, // --O----......... - 0x20, 0x00, // --O----......... - 0x10, 0x00, // ---O---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 97, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7c, 0x00, // -OOOOO---....... - 0x06, 0x00, // -----OO--....... - 0x02, 0x00, // ------O--....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0xc2, 0x00, // OO----O--....... - 0xc2, 0x00, // OO----O--....... - 0x46, 0x00, // -O---OO--....... - 0x7a, 0x00, // -OOOO-O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 98, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x71, 0x00, // -OOO---O-....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x73, 0x00, // -OOO--OO-....... - 0x7e, 0x00, // -OOOOOO--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 99, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x1e, 0x00, // ---OOOO-........ - 0x60, 0x00, // -OO-----........ - 0x40, 0x00, // -O------........ - 0xc0, 0x00, // OO------........ - 0xc0, 0x00, // OO------........ - 0xc0, 0x00, // OO------........ - 0x40, 0x00, // -O------........ - 0x60, 0x00, // -OO-----........ - 0x1e, 0x00, // ---OOOO-........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 100, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x03, 0x00, // ------OO-....... - 0x03, 0x00, // ------OO-....... - 0x03, 0x00, // ------OO-....... - 0x03, 0x00, // ------OO-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x63, 0x00, // -OO---OO-....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x67, 0x00, // -OO--OOO-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 101, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1e, 0x00, // ---OOOO--....... - 0x63, 0x00, // -OO---OO-....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xff, 0x00, // OOOOOOOO-....... - 0xc0, 0x00, // OO-------....... - 0x40, 0x00, // -O-------....... - 0x61, 0x00, // -OO----O-....... - 0x3e, 0x00, // --OOOOO--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 102, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x1c, 0x00, // ---OOO.......... - 0x30, 0x00, // --OO-........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0xf8, 0x00, // OOOOO........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 103, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1f, 0x00, // ---OOOOO-....... - 0x63, 0x00, // -OO---OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x67, 0x00, // -OO--OOO-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x03, 0x00, // ------OO-....... - 0x02, 0x00, // ------O--....... - 0x7c, 0x00, // -OOOOO---....... - 0x00, 0x00, // ---------....... - - // ASCII: 104, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7e, 0x00, // -OOOOOO--....... - 0x73, 0x00, // -OOO--OO-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 105, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 106, char width: 5 - 0x00, 0x00, // -----............ - 0x00, 0x00, // -----............ - 0x00, 0x00, // -----............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x00, 0x00, // -----............ - 0x00, 0x00, // -----............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x60, 0x00, // -OO--............ - 0xc0, 0x00, // OO--............ - 0x00, 0x00, // -----............ - - // ASCII: 107, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x63, 0x00, // -OO---OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x6c, 0x00, // -OO-OO---....... - 0x78, 0x00, // -OOOO----....... - 0x78, 0x00, // -OOOO----....... - 0x6c, 0x00, // -OO-OO---....... - 0x64, 0x00, // -OO--O---....... - 0x62, 0x00, // -OO---O--....... - 0x61, 0x00, // -OO----O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 108, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 109, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x5b, 0x38, // -O-OOO---OOO---. - 0x73, 0x88, // -OOO--OOO---O--. - 0x61, 0x0c, // -OO----O----OO-. - 0x61, 0x0c, // -OO----O----OO-. - 0x61, 0x0c, // -OO----O----OO-. - 0x61, 0x0c, // -OO----O----OO-. - 0x61, 0x0c, // -OO----O----OO-. - 0x61, 0x0c, // -OO----O----OO-. - 0x61, 0x0c, // -OO----O----OO-. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 110, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x5f, 0x00, // -O-OOOOO-....... - 0x73, 0x00, // -OOO--OO-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 111, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3c, 0x00, // --OOOO---....... - 0x62, 0x00, // -OO---O--....... - 0x43, 0x00, // -O----OO-....... - 0xc1, 0x00, // OO-----O-....... - 0xc1, 0x00, // OO-----O-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 112, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x71, 0x00, // -OOO---O-....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x73, 0x00, // -OOO--OO-....... - 0x7e, 0x00, // -OOOOOO--....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x00, 0x00, // ---------....... - - // ASCII: 113, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1f, 0x00, // ---OOOOO-....... - 0x63, 0x00, // -OO---OO-....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x67, 0x00, // -OO--OOO-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x03, 0x00, // ------OO-....... - 0x03, 0x00, // ------OO-....... - 0x03, 0x00, // ------OO-....... - 0x00, 0x00, // ---------....... - - // ASCII: 114, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x6c, 0x00, // -OO-OO.......... - 0x70, 0x00, // -OOO--.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 115, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x7c, 0x00, // -OOOOO--........ - 0xc0, 0x00, // OO------........ - 0xc0, 0x00, // OO------........ - 0x60, 0x00, // -OO-----........ - 0x3c, 0x00, // --OOOO--........ - 0x06, 0x00, // -----OO-........ - 0x06, 0x00, // -----OO-........ - 0x86, 0x00, // O----OO-........ - 0x7c, 0x00, // -OOOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 116, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0xfc, 0x00, // OOOOOO.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x20, 0x00, // -OO---.......... - 0x3c, 0x00, // --OOOO.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 117, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x63, 0x00, // -OO---OO-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 118, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x41, 0x00, // -O-----O-....... - 0x41, 0x00, // -O-----O-....... - 0x63, 0x00, // -OO---OO-....... - 0x22, 0x00, // --O---O--....... - 0x22, 0x00, // --O---O--....... - 0x36, 0x00, // --OO-OO--....... - 0x14, 0x00, // ---O-O---....... - 0x1c, 0x00, // ---OOO---....... - 0x1c, 0x00, // ---OOO---....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 119, char width: 12 - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x86, 0x20, // O----OO---O-.... - 0x86, 0x20, // O----OO---O-.... - 0x4e, 0x60, // OO--OOO--OO-.... - 0x4a, 0x60, // OO--O-O--OO-.... - 0x6b, 0x40, // -OO-O-OO-O--.... - 0x69, 0x40, // -OO-O--O-O--.... - 0x39, 0xc0, // --OOO--OOO--.... - 0x31, 0xc0, // --OO---OOO--.... - 0x31, 0x80, // --OO---OO---.... - 0x11, 0x00, // ---O---O----.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 120, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x41, 0x00, // -O-----O-....... - 0x63, 0x00, // -OO---OO-....... - 0x36, 0x00, // --OO-OO--....... - 0x1c, 0x00, // ---OOO---....... - 0x1c, 0x00, // ---OOO---....... - 0x1c, 0x00, // ---OOO---....... - 0x36, 0x00, // --OO-OO--....... - 0x22, 0x00, // --O---O--....... - 0x63, 0x00, // -OO---OO-....... - 0x80, 0x10, // O-------O....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 121, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x41, 0x00, // -O-----O-....... - 0x41, 0x00, // -O-----O-....... - 0x63, 0x00, // -OO---OO-....... - 0x22, 0x00, // --O---O--....... - 0x22, 0x00, // --O---O--....... - 0x36, 0x00, // --OO-OO--....... - 0x14, 0x00, // ---O-O---....... - 0x1c, 0x00, // ---OOO---....... - 0x1c, 0x00, // ---OOO---....... - 0x08, 0x00, // ----O----....... - 0x18, 0x00, // ---OO----....... - 0x10, 0x00, // ---O-----....... - 0x70, 0x00, // -OOO-----....... - 0x00, 0x00, // ---------....... - - // ASCII: 122, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0xfe, 0x00, // OOOOOOO-........ - 0x06, 0x00, // -----OO-........ - 0x0c, 0x00, // ----OO--........ - 0x08, 0x00, // ----O---........ - 0x18, 0x00, // ---OO---........ - 0x30, 0x00, // --OO----........ - 0x60, 0x00, // -OO-----........ - 0xc0, 0x00, // OO------........ - 0x80, 0x00, // O-------........ - 0xfe, 0x00, // OOOOOOO-........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 123, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x06, 0x00, // -----OO--....... - 0x0c, 0x00, // ----OO---....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x18, 0x00, // ---OO----....... - 0x30, 0x00, // --OO-----....... - 0x38, 0x00, // --OOO----....... - 0x18, 0x00, // ---OO----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x0e, 0x00, // ----OOO--....... - 0x06, 0x00, // -----OO--....... - 0x00, 0x00, // ---------....... - - // ASCII: 124, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - - // ASCII: 125, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x70, 0x00, // -OOO-----....... - 0x18, 0x00, // ---OO----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x0e, 0x00, // ----OOO--....... - 0x0e, 0x00, // ----OOO--....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x18, 0x00, // ---OO----....... - 0x38, 0x00, // --OOO----....... - 0x30, 0x00, // --OO-----....... - 0x00, 0x00, // ---------....... - - // ASCII: 126, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x18, 0x00, // ---OO--------... - 0x67, 0x40, // -OO--OOO--O--... - 0x43, 0xc0, // -O----OOOO---... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // No glyph for ASCII: 127, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 128, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 129, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 130, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 131, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 132, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 133, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 134, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 135, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 136, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 137, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 138, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 139, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 140, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 141, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 142, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 143, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 144, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 145, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 146, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 147, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 148, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 149, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 150, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 151, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 152, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 153, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 154, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 155, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 156, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 157, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 158, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 159, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 160, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 161, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 162, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x04, 0x00, // -----O---....... - 0x04, 0x00, // -----O---....... - 0x04, 0x00, // -----O---....... - 0x1f, 0x00, // ---OOOOO-....... - 0x34, 0x00, // --OO-O---....... - 0x64, 0x00, // -OO--O---....... - 0x64, 0x00, // -OO--O---....... - 0x64, 0x00, // -OO--O---....... - 0x64, 0x00, // -OO--O---....... - 0x24, 0x00, // --O--O---....... - 0x35, 0x00, // --OO-O-O-....... - 0x1f, 0x00, // ---OOOOO-....... - 0x04, 0x00, // -----O---....... - 0x04, 0x00, // -----O---....... - 0x04, 0x00, // -----O---....... - 0x00, 0x00, // ---------....... - - // ASCII: 163, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x04, 0x00, // -----O---....... - 0x1f, 0x00, // ---OOOOO-....... - 0x30, 0x00, // --OO-----....... - 0x30, 0x00, // --OO-----....... - 0x30, 0x00, // --OO-----....... - 0x30, 0x00, // --OO-----....... - 0x30, 0x00, // --OO-----....... - 0x7e, 0x00, // -OOOOOO--....... - 0x30, 0x00, // --OO-----....... - 0x30, 0x00, // --OO-----....... - 0x30, 0x00, // --OO-----....... - 0x30, 0x00, // --OO-----....... - 0xff, 0x00, // OOOOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 164, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0xc1, 0x00, // OO-----O-....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x22, 0x00, // --O---O--....... - 0x42, 0x00, // -O----O--....... - 0x43, 0x00, // -O----OO-....... - 0x62, 0x00, // -OO---O--....... - 0x7e, 0x00, // -OOOOOO--....... - 0xdf, 0x00, // OO-OOOOO-....... - 0x01, 0x00, // -------O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 165, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0xc1, 0x00, // OO-----O-....... - 0x43, 0x00, // -O----OO-....... - 0x62, 0x00, // -OO---O--....... - 0x22, 0x00, // --O---O--....... - 0x36, 0x00, // --OO-OO--....... - 0xff, 0x00, // OOOOOOOO-....... - 0x1c, 0x00, // ---OOO---....... - 0x18, 0x00, // ---OO----....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 166, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - - // ASCII: 167, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO---......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x70, 0x00, // -OOO---......... - 0x58, 0x00, // -O-OO--......... - 0x8c, 0x00, // O---OO-......... - 0xc4, 0x00, // OO---O-......... - 0x64, 0x00, // -OO--O-......... - 0x3c, 0x00, // --OOOO-......... - 0x18, 0x00, // ---OO--......... - 0x0c, 0x00, // ----OO-......... - 0x0c, 0x00, // ----OO-......... - 0x7c, 0x00, // -OOOOO-......... - 0x30, 0x00, // --OO---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 168, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x68, 0x00, // -OO-O--......... - 0x68, 0x00, // -OO-O--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 169, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x03, 0x80, // ------OOO------. - 0x0c, 0x60, // ----OO---OO----. - 0x10, 0x10, // ---O-------O---. - 0x17, 0xc8, // ---O-OOOOO--O--. - 0x24, 0x08, // --O--O------O--. - 0x2c, 0x08, // --O-OO------O--. - 0x2c, 0x08, // --O-OO------O--. - 0x2c, 0x08, // --O-OO------O--. - 0x24, 0x08, // --O--O------O--. - 0x13, 0xd0, // ---O--OOOO-O---. - 0x18, 0x10, // ---OO------O---. - 0x06, 0x60, // -----OO--OO----. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 170, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO---......... - 0x58, 0x00, // -O-OO--......... - 0x0c, 0x00, // ----OO-......... - 0x7c, 0x00, // -OOOOO-......... - 0xcc, 0x00, // OO--OO-......... - 0xcc, 0x00, // OO--OO-......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 171, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x19, 0x00, // ---OO--O-....... - 0x32, 0x00, // --OO--O--....... - 0x64, 0x00, // -OO--O---....... - 0x64, 0x00, // -OO--O---....... - 0x36, 0x00, // --OO-OO--....... - 0x19, 0x00, // ---OO--O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 172, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x7f, 0xc0, // -OOOOOOOOO---... - 0x7f, 0xe0, // -OOOOOOOOOO--... - 0x00, 0x60, // ---------OO--... - 0x00, 0x60, // ---------OO--... - 0x00, 0x60, // ---------OO--... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 173, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0xf0, 0x00, // OOOO-........... - 0x70, 0x00, // -OOO-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 174, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x03, 0x80, // ------OOO------. - 0x0c, 0x60, // ----OO---OO----. - 0x10, 0x10, // ---O-------O---. - 0x17, 0xc8, // ---O-OOOOO--O--. - 0x26, 0x48, // --O--OO--O--O--. - 0x26, 0x48, // --O--OO--O--O--. - 0x27, 0x88, // --O--OOOO---O--. - 0x26, 0x88, // --O--OO-O---O--. - 0x26, 0x48, // --O--OO--O--O--. - 0x14, 0x50, // ---O-O---O-O---. - 0x18, 0x10, // ---OO------O---. - 0x06, 0x60, // -----OO--OO----. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 175, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x78, 0x00, // -OOOO--......... - 0x78, 0x00, // -OOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 176, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x3c, 0x00, // --OOOO-......... - 0x64, 0x00, // -OO--O-......... - 0x64, 0x00, // -OO--O-......... - 0x2c, 0x00, // --O-OO-......... - 0x18, 0x00, // ---OO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 177, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x04, 0x00, // -----O-------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x7f, 0xe0, // -OOOOOOOOOO--... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x7f, 0xe0, // -OOOOOOOOOO--... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 178, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x60, 0x00, // -OO---.......... - 0x90, 0x00, // O--O--.......... - 0x18, 0x00, // ---OO-.......... - 0x10, 0x00, // ---O--.......... - 0x30, 0x00, // --OO--.......... - 0x60, 0x00, // -OO---.......... - 0xe0, 0x00, // OOO---.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 179, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x60, 0x00, // -OO---.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x30, 0x00, // --OO--.......... - 0x18, 0x00, // ---OO-.......... - 0x08, 0x00, // ----O-.......... - 0x18, 0x00, // ---OO-.......... - 0x60, 0x00, // -OO---.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 180, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x10, 0x00, // ---O---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 181, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x63, 0x00, // -OO---OO-....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x6c, 0x80, // -OO-OO--O....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x00, 0x00, // ---------....... - - // ASCII: 182, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1f, 0x00, // ---OOOOO-....... - 0x3d, 0x00, // --OOOO-O-....... - 0x7d, 0x00, // -OOOOO-O-....... - 0x7d, 0x00, // -OOOOO-O-....... - 0x7d, 0x00, // -OOOOO-O-....... - 0x3d, 0x00, // --OOOO-O-....... - 0x3d, 0x00, // --OOOO-O-....... - 0x0d, 0x00, // ----OO-O-....... - 0x05, 0x00, // -----O-O-....... - 0x05, 0x00, // -----O-O-....... - 0x05, 0x00, // -----O-O-....... - 0x05, 0x00, // -----O-O-....... - 0x05, 0x00, // -----O-O-....... - 0x05, 0x00, // -----O-O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 183, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 184, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x38, 0x00, // --OOO--......... - 0x00, 0x00, // -------......... - - // ASCII: 185, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x60, 0x00, // -OO---.......... - 0x20, 0x00, // --O---.......... - 0x20, 0x00, // --O---.......... - 0x20, 0x00, // --O---.......... - 0x20, 0x00, // --O---.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 186, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO---......... - 0x68, 0x00, // -OO-O--......... - 0xc4, 0x00, // OO---O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0xcc, 0x00, // OO--OO-......... - 0x78, 0x00, // -OOOO--......... - 0x00, 0x00, // -------......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 187, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x64, 0x00, // -OO--O---....... - 0x36, 0x00, // --OO-OO--....... - 0x1b, 0x00, // ---OO-OO-....... - 0x1b, 0x00, // ---OO-OO-....... - 0x36, 0x00, // --OO-OO--....... - 0x64, 0x00, // -OO--O---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 188, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x60, 0x40, // -OO------O-----. - 0x20, 0xc0, // --O-----OO-----. - 0x20, 0x80, // --O-----O------. - 0x21, 0x80, // --O----OO------. - 0x21, 0x00, // --O----O-------. - 0x33, 0x18, // --OO--OO---OO--. - 0x02, 0x38, // ------O---OOO--. - 0x04, 0x28, // -----O----O-O--. - 0x04, 0x48, // -----O---O--O--. - 0x08, 0xd8, // ----O---OO-OO--. - 0x08, 0x18, // ----O------OO--. - 0x10, 0x08, // ---O--------O--. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 189, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x60, 0x40, // -OO------O-----. - 0x20, 0xc0, // --O-----OO-----. - 0x20, 0x80, // --O-----O------. - 0x21, 0x80, // --O----OO------. - 0x21, 0x00, // --O----O-------. - 0x33, 0x70, // --OO--OO-OOO---. - 0x02, 0x08, // ------O-----O--. - 0x04, 0x08, // -----O------O--. - 0x04, 0x10, // -----O-----O---. - 0x08, 0x30, // ----O-----OO---. - 0x08, 0x60, // ----O----OO----. - 0x10, 0x78, // ---O-----OOOO--. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 190, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x60, 0x00, // -OO------------. - 0x18, 0x40, // ---OO----O-----. - 0x18, 0xc0, // ---OO---OO-----. - 0x30, 0x80, // --OO----O------. - 0x19, 0x80, // ---OO--OO------. - 0x09, 0x00, // ----O--O-------. - 0x1b, 0x18, // ---OO-OO---OO--. - 0x62, 0x38, // -OO---O---OOO--. - 0x04, 0x28, // -----O----O-O--. - 0x04, 0x48, // -----O---O--O--. - 0x08, 0xd8, // ----O---OO-OO--. - 0x08, 0x18, // ----O------OO--. - 0x10, 0x08, // ---O--------O--. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 191, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x08, 0x00, // ----O---........ - 0x08, 0x00, // ----O---........ - 0x00, 0x00, // --------........ - 0x08, 0x00, // ----O---........ - 0x08, 0x00, // ----O---........ - 0x08, 0x00, // ----O---........ - 0x18, 0x00, // ---OO---........ - 0x30, 0x00, // --OO----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x7e, 0x00, // -OOOOOO-........ - 0x1c, 0x00, // ---OOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 192, char width: 10 - 0x08, 0x00, // ----O-----...... - 0x0c, 0x00, // ----OO----...... - 0x04, 0x00, // -----O----...... - 0x00, 0x00, // ----------...... - 0x0c, 0x00, // ----OO----...... - 0x0e, 0x00, // ----OOO---...... - 0x1a, 0x00, // ---OO-O---...... - 0x1a, 0x00, // ---OO-O---...... - 0x13, 0x00, // ---O--OO--...... - 0x31, 0x00, // --OO---O--...... - 0x31, 0x00, // --OO---O--...... - 0x3f, 0x80, // --OOOOOOO-...... - 0x7f, 0x80, // -OOOOOOOO-...... - 0x60, 0xc0, // -OO-----OO...... - 0x40, 0xc0, // -O------OO...... - 0xc0, 0x40, // OO-------O...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 193, char width: 10 - 0x02, 0x00, // ------O---...... - 0x04, 0x00, // -----O----...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x0c, 0x00, // ----OO----...... - 0x0e, 0x00, // ----OOO---...... - 0x1a, 0x00, // ---OO-O---...... - 0x1a, 0x00, // ---OO-O---...... - 0x13, 0x00, // ---O--OO--...... - 0x31, 0x00, // --OO---O--...... - 0x31, 0x00, // --OO---O--...... - 0x3f, 0x80, // --OOOOOOO-...... - 0x7f, 0x80, // -OOOOOOOO-...... - 0x60, 0xc0, // -OO-----OO...... - 0x40, 0xc0, // -O------OO...... - 0xc0, 0x40, // OO-------O...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 194, char width: 10 - 0x0c, 0x00, // ----OO----...... - 0x0e, 0x00, // ----OOO---...... - 0x10, 0x00, // ---O------...... - 0x00, 0x00, // ----------...... - 0x0c, 0x00, // ----OO----...... - 0x0e, 0x00, // ----OOO---...... - 0x1a, 0x00, // ---OO-O---...... - 0x1a, 0x00, // ---OO-O---...... - 0x13, 0x00, // ---O--OO--...... - 0x31, 0x00, // --OO---O--...... - 0x31, 0x00, // --OO---O--...... - 0x3f, 0x80, // --OOOOOOO-...... - 0x7f, 0x80, // -OOOOOOOO-...... - 0x60, 0xc0, // -OO-----OO...... - 0x40, 0xc0, // -O------OO...... - 0xc0, 0x40, // OO-------O...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 195, char width: 10 - 0x08, 0x00, // ----O-----...... - 0x1e, 0x00, // ---OOOO---...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x0c, 0x00, // ----OO----...... - 0x0e, 0x00, // ----OOO---...... - 0x1a, 0x00, // ---OO-O---...... - 0x1a, 0x00, // ---OO-O---...... - 0x13, 0x00, // ---O--OO--...... - 0x31, 0x00, // --OO---O--...... - 0x31, 0x00, // --OO---O--...... - 0x3f, 0x80, // --OOOOOOO-...... - 0x7f, 0x80, // -OOOOOOOO-...... - 0x60, 0xc0, // -OO-----OO...... - 0x40, 0xc0, // -O------OO...... - 0xc0, 0x40, // OO-------O...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 196, char width: 10 - 0x12, 0x00, // ---O--O---...... - 0x12, 0x00, // ---O--O---...... - 0x00, 0x00, // ----------...... - 0x0c, 0x00, // ----OO----...... - 0x0e, 0x00, // ----OOO---...... - 0x0e, 0x00, // ----OOO---...... - 0x1a, 0x00, // ---OO-O---...... - 0x13, 0x00, // ---O--OO--...... - 0x33, 0x00, // --OO--OO--...... - 0x31, 0x00, // --OO---O--...... - 0x21, 0x80, // --O----OO-...... - 0x7f, 0x80, // -OOOOOOOO-...... - 0x60, 0x80, // -OO-----O-...... - 0x40, 0xc0, // -O------OO...... - 0xc0, 0xc0, // OO------OO...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 197, char width: 10 - 0x0c, 0x00, // ----OO----...... - 0x1a, 0x00, // ---OO-O---...... - 0x12, 0x00, // ---O--O---...... - 0x1a, 0x00, // ---OO-O---...... - 0x0e, 0x00, // ----OOO---...... - 0x0e, 0x00, // ----OOO---...... - 0x1a, 0x00, // ---OO-O---...... - 0x1a, 0x00, // ---OO-O---...... - 0x13, 0x00, // ---O--OO--...... - 0x31, 0x00, // --OO---O--...... - 0x31, 0x00, // --OO---O--...... - 0x3f, 0x80, // --OOOOOOO-...... - 0x7f, 0x80, // -OOOOOOOO-...... - 0x60, 0xc0, // -OO-----OO...... - 0x40, 0xc0, // -O------OO...... - 0xc0, 0x40, // OO-------O...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 198, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x07, 0xfc, // -----OOOOOOOOO-. - 0x0f, 0xf8, // ----OOOOOOOOO--. - 0x09, 0x00, // ----O--O-------. - 0x19, 0x00, // ---OO--O-------. - 0x19, 0x00, // ---OO--O-------. - 0x11, 0xf8, // ---O---OOOOOO--. - 0x31, 0xf8, // --OO---OOOOOO--. - 0x31, 0x00, // --OO---O-------. - 0x3f, 0x00, // --OOOOOO-------. - 0x63, 0x00, // -OO---OO-------. - 0x41, 0x00, // -O-----O-------. - 0xc1, 0xfc, // OO-----OOOOOOO-. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 199, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x06, 0x00, // -----OO---...... - 0x3f, 0x80, // --OOOOOOO-...... - 0x70, 0x80, // -OOO----O-...... - 0x60, 0x00, // -OO-------...... - 0x40, 0x00, // -O--------...... - 0xc0, 0x00, // OO--------...... - 0xc0, 0x00, // OO--------...... - 0xc0, 0x00, // OO--------...... - 0xc0, 0x00, // OO--------...... - 0x40, 0x00, // -O--------...... - 0x60, 0x00, // -OO-------...... - 0x30, 0x80, // --OO----O-...... - 0x1f, 0x80, // ---OOOOOO-...... - 0x02, 0x00, // ------O---...... - 0x02, 0x00, // ------O---...... - 0x0e, 0x00, // ----OOO---...... - 0x00, 0x00, // ----------...... - - // ASCII: 200, char width: 9 - 0x08, 0x00, // ----O----....... - 0x0c, 0x00, // ----OO---....... - 0x04, 0x00, // -----O---....... - 0x00, 0x00, // ---------....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 201, char width: 9 - 0x02, 0x00, // ------O--....... - 0x04, 0x00, // -----O---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 202, char width: 9 - 0x0c, 0x00, // ----OO---....... - 0x0e, 0x00, // ----OOO--....... - 0x10, 0x00, // ---O-----....... - 0x00, 0x00, // ---------....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 203, char width: 9 - 0x12, 0x00, // ---O--O--....... - 0x12, 0x00, // ---O--O--....... - 0x00, 0x00, // ---------....... - 0x3f, 0x00, // --OOOOOO-....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 204, char width: 4 - 0x40, 0x00, // -O--............ - 0x60, 0x00, // -OO-............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 205, char width: 4 - 0x10, 0x00, // ---O............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 206, char width: 4 - 0x20, 0x00, // --O-............ - 0x50, 0x00, // -O-O............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 207, char width: 4 - 0xd8, 0x00, // OO-OO........... - 0x58, 0x00, // -O-OO........... - 0x00, 0x00, // ----............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 208, char width: 12 - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x3f, 0x00, // --OOOOOO----.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x20, 0xc0, // --O-----OO--.... - 0x20, 0x60, // --O------OO-.... - 0x20, 0x60, // --O------OO-.... - 0x70, 0x60, // -OOO-----OO-.... - 0xf8, 0x60, // OOOOO----OO-.... - 0x20, 0x60, // --O------OO-.... - 0x20, 0x60, // --O------OO-.... - 0x20, 0x40, // --O------O--.... - 0x20, 0xc0, // --O-----OO--.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 209, char width: 11 - 0x08, 0x00, // ----O------..... - 0x1f, 0x00, // ---OOOOO---..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x70, 0xc0, // -OOO----OO-..... - 0x70, 0xc0, // -OOO----OO-..... - 0x78, 0xc0, // -OOOO---OO-..... - 0x68, 0xc0, // -OO-O---OO-..... - 0x6c, 0xc0, // -OO-OO--OO-..... - 0x64, 0xc0, // -OO--O--OO-..... - 0x66, 0xc0, // -OO--OO-OO-..... - 0x62, 0xc0, // -OO---O-OO-..... - 0x63, 0xc0, // -OO---OOOO-..... - 0x61, 0xc0, // -OO----OOO-..... - 0x61, 0xc0, // -OO----OOO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 210, char width: 12 - 0x08, 0x00, // ----O-------.... - 0x04, 0x00, // -----O------.... - 0x00, 0x00, // ------------.... - 0x0e, 0x00, // ----OOO-----.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x71, 0xc0, // -OOO---OOO--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x40, 0x40, // -O-------O--.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0x40, 0x40, // -O-------O--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x31, 0x80, // --OO---OO---.... - 0x1f, 0x00, // ---OOOOO----.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 211, char width: 12 - 0x02, 0x00, // ------O-----.... - 0x06, 0x00, // -----OO-----.... - 0x04, 0x00, // -----O------.... - 0x0e, 0x00, // ----OOO-----.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x71, 0xc0, // -OOO---OOO--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x40, 0x40, // -O-------O--.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0x40, 0x40, // -O-------O--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x31, 0x80, // --OO---OO---.... - 0x1f, 0x00, // ---OOOOO----.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 212, char width: 12 - 0x04, 0x00, // -----O------.... - 0x0a, 0x00, // ----O-O-----.... - 0x00, 0x00, // ------------.... - 0x0e, 0x00, // ----OOO-----.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x71, 0xc0, // -OOO---OOO--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x40, 0x40, // -O-------O--.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0x40, 0x40, // -O-------O--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x31, 0x80, // --OO---OO---.... - 0x1f, 0x00, // ---OOOOO----.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 213, char width: 12 - 0x08, 0x00, // ----O-------.... - 0x1f, 0x00, // ---OOOOO----.... - 0x00, 0x00, // ------------.... - 0x0e, 0x00, // ----OOO-----.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x71, 0xc0, // -OOO---OOO--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x40, 0x40, // -O-------O--.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0x40, 0x40, // -O-------O--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x31, 0x80, // --OO---OO---.... - 0x1f, 0x00, // ---OOOOO----.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 214, char width: 12 - 0x1b, 0x00, // ---OO-OO----.... - 0x1b, 0x00, // ---OO-OO----.... - 0x00, 0x00, // ------------.... - 0x1f, 0x00, // ---OOOOO----.... - 0x31, 0x80, // --OO---OO---.... - 0x60, 0xc0, // -OO-----OO--.... - 0x40, 0x40, // -O-------O--.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0x40, 0x40, // -O-------O--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x0e, 0x00, // ----OOO-----.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 215, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x30, 0x60, // --OO-----OO--... - 0x18, 0xc0, // ---OO---OO---... - 0x0d, 0x80, // ----OO-OO----... - 0x07, 0x00, // -----OOO-----... - 0x07, 0x00, // -----OOO-----... - 0x0f, 0x00, // ----OOOO-----... - 0x18, 0x80, // ---OO---O----... - 0x30, 0xc0, // --OO----OO---... - 0x00, 0x40, // ---------O---... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 216, char width: 12 - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x0e, 0x00, // ----OOO-----.... - 0x3f, 0xc0, // --OOOOOOOO--.... - 0x71, 0xc0, // -OOO---OOO--.... - 0x61, 0xc0, // -OO----OOO--.... - 0x41, 0x40, // -O-----O-O--.... - 0xc2, 0x60, // OO----O--OO-.... - 0xc4, 0x60, // OO---O---OO-.... - 0xcc, 0x60, // OO--OO---OO-.... - 0xc8, 0x60, // OO--O----OO-.... - 0x70, 0x40, // -OOO-----O--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x71, 0x80, // -OOO---OO---.... - 0x5f, 0x00, // -O-OOOOO----.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 217, char width: 11 - 0x08, 0x00, // ----O------..... - 0x04, 0x00, // -----O-----..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x20, 0xc0, // --O-----OO-..... - 0x31, 0x80, // --OO---OO--..... - 0x1f, 0x00, // ---OOOOO---..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 218, char width: 11 - 0x02, 0x00, // ------O----..... - 0x06, 0x00, // -----OO----..... - 0x04, 0x00, // -----O-----..... - 0x00, 0x00, // -----------..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x20, 0xc0, // --O-----OO-..... - 0x31, 0x80, // --OO---OO--..... - 0x1f, 0x00, // ---OOOOO---..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 219, char width: 11 - 0x04, 0x00, // -----O-----..... - 0x0a, 0x00, // ----O-O----..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x20, 0xc0, // --O-----OO-..... - 0x31, 0x80, // --OO---OO--..... - 0x1f, 0x00, // ---OOOOO---..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 220, char width: 11 - 0x1b, 0x00, // ---OO-OO---..... - 0x1b, 0x00, // ---OO-OO---..... - 0x00, 0x00, // -----------..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x30, 0x80, // --OO----O--..... - 0x3f, 0x80, // --OOOOOOO--..... - 0x0e, 0x00, // ----OOO----..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 221, char width: 9 - 0x04, 0x00, // -----O---....... - 0x0c, 0x00, // ----OO---....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x41, 0x80, // -O-----OO....... - 0x61, 0x00, // -OO----O-....... - 0x23, 0x00, // --O---OO-....... - 0x36, 0x00, // --OO-OO--....... - 0x1c, 0x00, // ---OOO---....... - 0x1c, 0x00, // ---OOO---....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 222, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x20, 0x00, // --O------....... - 0x60, 0x00, // -OO------....... - 0x7c, 0x00, // -OOOOO---....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x00, // -OO----O-....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x7e, 0x00, // -OOOOOO--....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 223, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1c, 0x00, // ---OOO---....... - 0x36, 0x00, // --OO-OO--....... - 0x63, 0x00, // -OO---OO-....... - 0x63, 0x00, // -OO---OO-....... - 0x64, 0x00, // -OO--O---....... - 0x6c, 0x00, // -OO-OO---....... - 0x6c, 0x00, // -OO-OO---....... - 0x66, 0x00, // -OO--OO--....... - 0x63, 0x00, // -OO---OO-....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x6f, 0x00, // -OO-OOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 224, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x20, 0x00, // --O------....... - 0x20, 0x00, // --O------....... - 0x10, 0x00, // ---O-----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7c, 0x00, // -OOOOO---....... - 0x06, 0x00, // -----OO--....... - 0x02, 0x00, // ------O--....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0xc2, 0x00, // OO----O--....... - 0xc2, 0x00, // OO----O--....... - 0x46, 0x00, // -O---OO--....... - 0x7a, 0x00, // -OOOO-O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 225, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x04, 0x00, // -----O---....... - 0x0c, 0x00, // ----OO---....... - 0x18, 0x00, // ---OO----....... - 0x10, 0x00, // ---O-----....... - 0x00, 0x00, // ---------....... - 0x7c, 0x00, // -OOOOO---....... - 0x06, 0x00, // -----OO--....... - 0x02, 0x00, // ------O--....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0xc2, 0x00, // OO----O--....... - 0xc2, 0x00, // OO----O--....... - 0x46, 0x00, // -O---OO--....... - 0x7a, 0x00, // -OOOO-O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 226, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x10, 0x00, // ---O-----....... - 0x18, 0x00, // ---OO----....... - 0x2c, 0x00, // --O-OO---....... - 0x04, 0x00, // -----O---....... - 0x00, 0x00, // ---------....... - 0x7c, 0x00, // -OOOOO---....... - 0x06, 0x00, // -----OO--....... - 0x02, 0x00, // ------O--....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0xc2, 0x00, // OO----O--....... - 0xc2, 0x00, // OO----O--....... - 0x46, 0x00, // -O---OO--....... - 0x7a, 0x00, // -OOOO-O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 227, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x20, 0x00, // --O------....... - 0x7c, 0x00, // -OOOOO---....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x7c, 0x00, // -OOOOO---....... - 0x46, 0x00, // -O---OO--....... - 0x02, 0x00, // ------O--....... - 0x02, 0x00, // ------O--....... - 0x7e, 0x00, // -OOOOOO--....... - 0x42, 0x00, // -O----O--....... - 0xc2, 0x00, // OO----O--....... - 0xc6, 0x00, // OO---OO--....... - 0x7e, 0x00, // -OOOOOO--....... - 0x38, 0x00, // --OOO----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 228, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x24, 0x00, // --O--O---....... - 0x24, 0x00, // --O--O---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7c, 0x00, // -OOOOO---....... - 0x06, 0x00, // -----OO--....... - 0x02, 0x00, // ------O--....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0xc2, 0x00, // OO----O--....... - 0xc2, 0x00, // OO----O--....... - 0x46, 0x00, // -O---OO--....... - 0x7a, 0x00, // -OOOO-O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 229, char width: 9 - 0x00, 0x00, // ---------....... - 0x18, 0x00, // ---OO----....... - 0x2c, 0x00, // --O-OO---....... - 0x24, 0x00, // --O--O---....... - 0x2c, 0x00, // --O-OO---....... - 0x18, 0x00, // ---OO----....... - 0x00, 0x00, // ---------....... - 0x7c, 0x00, // -OOOOO---....... - 0x06, 0x00, // -----OO--....... - 0x02, 0x00, // ------O--....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0xc2, 0x00, // OO----O--....... - 0xc2, 0x00, // OO----O--....... - 0x46, 0x00, // -O---OO--....... - 0x7a, 0x00, // -OOOO-O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 230, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x7f, 0xf8, // -OOOOOOOOOOOO--. - 0x07, 0x08, // -----OOO----O--. - 0x03, 0x0c, // ------OO----OO-. - 0x3f, 0x0c, // --OOOOOO----OO-. - 0x63, 0xfc, // -OO---OOOOOOOO-. - 0xc2, 0x00, // OO----O--------. - 0xc3, 0x00, // OO----OO-------. - 0x47, 0x80, // -O---OOOO------. - 0x7c, 0xf8, // -OOOOO--OOOOO--. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 231, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x3e, 0x00, // --OOOOO-........ - 0x60, 0x00, // -OO-----........ - 0x40, 0x00, // -O------........ - 0xc0, 0x00, // OO------........ - 0xc0, 0x00, // OO------........ - 0xc0, 0x00, // OO------........ - 0x40, 0x00, // -O------........ - 0x60, 0x00, // -OO-----........ - 0x3e, 0x00, // --OOOOO-........ - 0x08, 0x00, // ----O---........ - 0x04, 0x00, // -----O--........ - 0x1c, 0x00, // ---OOO--........ - 0x00, 0x00, // --------........ - - // ASCII: 232, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x20, 0x00, // --O------....... - 0x10, 0x00, // ---O-----....... - 0x18, 0x00, // ---OO----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x63, 0x00, // -OO---OO-....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xff, 0x00, // OOOOOOOO-....... - 0xc0, 0x00, // OO-------....... - 0x40, 0x00, // -O-------....... - 0x61, 0x00, // -OO----O-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 233, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x04, 0x00, // -----O---....... - 0x04, 0x00, // -----O---....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x63, 0x00, // -OO---OO-....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xff, 0x00, // OOOOOOOO-....... - 0xc0, 0x00, // OO-------....... - 0x40, 0x00, // -O-------....... - 0x61, 0x00, // -OO----O-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 234, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x1c, 0x00, // ---OOO---....... - 0x34, 0x00, // --OO-O---....... - 0x20, 0x00, // --O------....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x63, 0x00, // -OO---OO-....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xff, 0x00, // OOOOOOOO-....... - 0xc0, 0x00, // OO-------....... - 0x40, 0x00, // -O-------....... - 0x61, 0x00, // -OO----O-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 235, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x34, 0x00, // --OO-O---....... - 0x34, 0x00, // --OO-O---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x63, 0x00, // -OO---OO-....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xff, 0x00, // OOOOOOOO-....... - 0xc0, 0x00, // OO-------....... - 0x40, 0x00, // -O-------....... - 0x61, 0x00, // -OO----O-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 236, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 237, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x10, 0x00, // ---O............ - 0x10, 0x00, // ---O............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 238, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x20, 0x00, // --O-............ - 0x30, 0x00, // --OO............ - 0x58, 0x00, // -O-OO........... - 0x08, 0x00, // ----O........... - 0x00, 0x00, // ----............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 239, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0xd0, 0x00, // OO-O............ - 0xd0, 0x00, // OO-O............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 240, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x30, 0x00, // --OO-----....... - 0x1c, 0x00, // ---OOO---....... - 0x78, 0x00, // -OOOO----....... - 0x0c, 0x00, // ----OO---....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc1, 0x00, // OO-----O-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 241, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x10, 0x00, // ---O-----....... - 0x3e, 0x00, // --OOOOO--....... - 0x04, 0x00, // -----O---....... - 0x00, 0x00, // ---------....... - 0x6e, 0x00, // -OO-OOO--....... - 0x73, 0x00, // -OOO--OO-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 242, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x20, 0x00, // --O------....... - 0x10, 0x00, // ---O-----....... - 0x18, 0x00, // ---OO----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc1, 0x00, // OO-----O-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 243, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x04, 0x00, // -----O---....... - 0x04, 0x00, // -----O---....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc1, 0x00, // OO-----O-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 244, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x1c, 0x00, // ---OOO---....... - 0x34, 0x00, // --OO-O---....... - 0x20, 0x00, // --O------....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc1, 0x00, // OO-----O-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 245, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x12, 0x00, // ---O--O--....... - 0x3e, 0x00, // --OOOOO--....... - 0x24, 0x00, // --O--O---....... - 0x00, 0x00, // ---------....... - 0x3c, 0x00, // --OOOO---....... - 0x66, 0x00, // -OO--OO--....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x7e, 0x00, // -OOOOOO--....... - 0x1c, 0x00, // ---OOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 246, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x34, 0x00, // --OO-O---....... - 0x34, 0x00, // --OO-O---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc1, 0x00, // OO-----O-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 247, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x00, 0x00, // -------------... - 0x7f, 0xc0, // -OOOOOOOOO---... - 0x7f, 0xe0, // -OOOOOOOOOO--... - 0x00, 0x00, // -------------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 248, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3d, 0x00, // --OOOO-O-....... - 0x66, 0x00, // -OO--OO--....... - 0x47, 0x00, // -O---OOO-....... - 0xc7, 0x00, // OO---OOO-....... - 0xcb, 0x00, // OO--O-OO-....... - 0xd3, 0x00, // OO-O--OO-....... - 0xf3, 0x00, // OOOO--OO-....... - 0x63, 0x00, // -OO---OO-....... - 0x7e, 0x00, // -OOOOOO--....... - 0x9c, 0x00, // O--OOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 249, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x10, 0x00, // ---O-----....... - 0x10, 0x00, // ---O-----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x23, 0x00, // --O---OO-....... - 0x3d, 0x00, // --OOOO-O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 250, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x02, 0x00, // ------O--....... - 0x06, 0x00, // -----OO--....... - 0x0c, 0x00, // ----OO---....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x23, 0x00, // --O---OO-....... - 0x3d, 0x00, // --OOOO-O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 251, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x0c, 0x00, // ----OO---....... - 0x16, 0x00, // ---O-OO--....... - 0x02, 0x00, // ------O--....... - 0x00, 0x00, // ---------....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x23, 0x00, // --O---OO-....... - 0x3d, 0x00, // --OOOO-O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 252, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x12, 0x00, // ---O--O--....... - 0x12, 0x00, // ---O--O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x23, 0x00, // --O---OO-....... - 0x3d, 0x00, // --OOOO-O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 253, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x04, 0x00, // -----O---....... - 0x04, 0x00, // -----O---....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x41, 0x00, // -O-----O-....... - 0x63, 0x00, // -OO---OO-....... - 0x63, 0x00, // -OO---OO-....... - 0x22, 0x00, // --O---O--....... - 0x36, 0x00, // --OO-OO--....... - 0x16, 0x00, // ---O-OO--....... - 0x1c, 0x00, // ---OOO---....... - 0x1c, 0x00, // ---OOO---....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x18, 0x00, // ---OO----....... - 0x70, 0x00, // -OOO-----....... - 0x20, 0x00, // --O------....... - - // ASCII: 254, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x71, 0x00, // -OOO---O-....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x73, 0x00, // -OOO--OO-....... - 0x7e, 0x00, // -OOOOOO--....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x00, 0x00, // ---------....... - - // ASCII: 255, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x34, 0x00, // --OO-O---....... - 0x34, 0x00, // --OO-O---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x41, 0x00, // -O-----O-....... - 0x63, 0x00, // -OO---OO-....... - 0x63, 0x00, // -OO---OO-....... - 0x22, 0x00, // --O---O--....... - 0x36, 0x00, // --OO-OO--....... - 0x16, 0x00, // ---O-OO--....... - 0x1c, 0x00, // ---OOO---....... - 0x1c, 0x00, // ---OOO---....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x18, 0x00, // ---OO----....... - 0x70, 0x00, // -OOO-----....... - 0x20, 0x00, // --O------....... -}; - -static const uint8_t dejavu_20_widths[224] = -{ - 5, 6, 7, 13, 9, 14, 12, 4, - 6, 6, 7, 13, 5, 5, 5, 5, - 9, 9, 9, 9, 9, 9, 9, 9, - 9, 9, 5, 5, 13, 13, 13, 8, - 15, 10, 10, 10, 12, 9, 9, 12, - 11, 4, 4, 10, 8, 13, 11, 12, - 9, 12, 10, 9, 9, 11, 10, 15, - 10, 9, 10, 6, 5, 6, 13, 7, - 7, 9, 9, 8, 9, 9, 5, 9, - 9, 4, 5, 9, 4, 15, 9, 9, - 9, 9, 6, 8, 6, 9, 9, 12, - 9, 9, 8, 9, 5, 9, 13, 5, - 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, - 5, 6, 9, 9, 9, 9, 5, 7, - 7, 15, 7, 9, 13, 5, 15, 7, - 7, 13, 6, 6, 7, 9, 9, 5, - 7, 6, 7, 9, 15, 15, 15, 8, - 10, 10, 10, 10, 10, 10, 15, 10, - 9, 9, 9, 9, 4, 4, 4, 4, - 12, 11, 12, 12, 12, 12, 12, 13, - 12, 11, 11, 11, 11, 9, 9, 9, - 9, 9, 9, 9, 9, 9, 15, 8, - 9, 9, 9, 9, 4, 4, 4, 4, - 9, 9, 9, 9, 9, 9, 9, 13, - 9, 9, 9, 9, 9, 9, 9, 9, -}; - -static const font_t dejavu_20_dsc = -{ - 224, // Letter count - 32, // First ascii code - 2, // Letters width (bytes) - 20, // Letters height (row) - 0, // Fixed width or 0 if variable - dejavu_20_widths, - dejavu_20_bitmaps -}; - -const font_t * dejavu_20_get_dsc(void) -{ - return &dejavu_20_dsc; -} - - -#endif diff --git a/lv_misc/fonts/dejavu_20.h b/lv_misc/fonts/dejavu_20.h deleted file mode 100644 index 3b10471e2..000000000 --- a/lv_misc/fonts/dejavu_20.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef DEJAVU_20_H -#define DEJAVU_20_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "misc_conf.h" -#if USE_FONT_DEJAVU_20 != 0 - - -#include -#include "../font.h" - - -const font_t * dejavu_20_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/dejavu_30.c b/lv_misc/fonts/dejavu_30.c deleted file mode 100644 index 690df514a..000000000 --- a/lv_misc/fonts/dejavu_30.c +++ /dev/null @@ -1,7260 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_30 != 0 - -#include -#include "../font.h" - -static const uint8_t dejavu_30_bitmaps[26880] = -{ - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 33, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 34, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x31, 0x80, 0x00, 0x00, // --OO---OO---.................... - 0x31, 0x80, 0x00, 0x00, // --OO---OO---.................... - 0x31, 0x80, 0x00, 0x00, // --OO---OO---.................... - 0x31, 0x80, 0x00, 0x00, // --OO---OO---.................... - 0x31, 0x80, 0x00, 0x00, // --OO---OO---.................... - 0x31, 0x80, 0x00, 0x00, // --OO---OO---.................... - 0x31, 0x80, 0x00, 0x00, // --OO---OO---.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 35, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x61, 0x80, 0x00, // ---------OO----OO-----.......... - 0x00, 0x61, 0x80, 0x00, // ---------OO----OO-----.......... - 0x00, 0x61, 0x80, 0x00, // ---------OO----OO-----.......... - 0x00, 0xe3, 0x00, 0x00, // --------OOO---OO------.......... - 0x00, 0xc3, 0x00, 0x00, // --------OO----OO------.......... - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO--.......... - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO--.......... - 0x01, 0xc6, 0x00, 0x00, // -------OOO---OO-------.......... - 0x01, 0x86, 0x00, 0x00, // -------OO----OO-------.......... - 0x01, 0x86, 0x00, 0x00, // -------OO----OO-------.......... - 0x01, 0x8e, 0x00, 0x00, // -------OO---OOO-------.......... - 0x3f, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOO---.......... - 0x3f, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOO---.......... - 0x03, 0x0c, 0x00, 0x00, // ------OO----OO--------.......... - 0x03, 0x1c, 0x00, 0x00, // ------OO---OOO--------.......... - 0x06, 0x18, 0x00, 0x00, // -----OO----OO---------.......... - 0x06, 0x18, 0x00, 0x00, // -----OO----OO---------.......... - 0x06, 0x18, 0x00, 0x00, // -----OO----OO---------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 36, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x01, 0x00, 0x00, 0x00, // -------O---------............... - 0x01, 0x00, 0x00, 0x00, // -------O---------............... - 0x01, 0x00, 0x00, 0x00, // -------O---------............... - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO------............... - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO----............... - 0x1d, 0x18, 0x00, 0x00, // ---OOO-O---OO----............... - 0x39, 0x00, 0x00, 0x00, // --OOO--O---------............... - 0x39, 0x00, 0x00, 0x00, // --OOO--O---------............... - 0x39, 0x00, 0x00, 0x00, // --OOO--O---------............... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO---------............... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO------............... - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO-----............... - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO----............... - 0x01, 0x3c, 0x00, 0x00, // -------O--OOOO---............... - 0x01, 0x1c, 0x00, 0x00, // -------O---OOO---............... - 0x01, 0x1c, 0x00, 0x00, // -------O---OOO---............... - 0x01, 0x1c, 0x00, 0x00, // -------O---OOO---............... - 0x31, 0x38, 0x00, 0x00, // --OO---O--OOO----............... - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO------............... - 0x01, 0x00, 0x00, 0x00, // -------O---------............... - 0x01, 0x00, 0x00, 0x00, // -------O---------............... - 0x01, 0x00, 0x00, 0x00, // -------O---------............... - 0x01, 0x00, 0x00, 0x00, // -------O---------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 37, char width: 25 - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x1f, 0x00, 0xe0, 0x00, // ---OOOOO--------OOO------....... - 0x3f, 0x80, 0xc0, 0x00, // --OOOOOOO-------OO-------....... - 0x71, 0xc1, 0x80, 0x00, // -OOO---OOO-----OO--------....... - 0x60, 0xc3, 0x80, 0x00, // -OO-----OO----OOO--------....... - 0x60, 0xc3, 0x00, 0x00, // -OO-----OO----OO---------....... - 0x60, 0xc7, 0x00, 0x00, // -OO-----OO---OOO---------....... - 0x60, 0xc6, 0x00, 0x00, // -OO-----OO---OO----------....... - 0x71, 0xcc, 0x00, 0x00, // -OOO---OOO--OO-----------....... - 0x3f, 0x9c, 0x00, 0x00, // --OOOOOOO--OOO-----------....... - 0x1f, 0x18, 0xf8, 0x00, // ---OOOOO---OO---OOOOO----....... - 0x00, 0x39, 0xfc, 0x00, // ----------OOO--OOOOOOO---....... - 0x00, 0x33, 0x8e, 0x00, // ----------OO--OOO---OOO--....... - 0x00, 0x63, 0x06, 0x00, // ---------OO---OO-----OO--....... - 0x00, 0xe3, 0x06, 0x00, // --------OOO---OO-----OO--....... - 0x00, 0xc3, 0x06, 0x00, // --------OO----OO-----OO--....... - 0x01, 0xc3, 0x06, 0x00, // -------OOO----OO-----OO--....... - 0x01, 0x83, 0x8e, 0x00, // -------OO-----OOO---OOO--....... - 0x03, 0x01, 0xfc, 0x00, // ------OO-------OOOOOOO---....... - 0x07, 0x00, 0xf8, 0x00, // -----OOO--------OOOOO----....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - - // ASCII: 38, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO---------............ - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO--------............ - 0x1e, 0x10, 0x00, 0x00, // ---OOOO----O--------............ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--------------............ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--------------............ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--------------............ - 0x1e, 0x00, 0x00, 0x00, // ---OOOO-------------............ - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO------------............ - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO-----------............ - 0x3f, 0x81, 0xc0, 0x00, // --OOOOOOO------OOO--............ - 0x33, 0xc1, 0xc0, 0x00, // --OO--OOOO-----OOO--............ - 0x71, 0xe1, 0x80, 0x00, // -OOO---OOOO----OO---............ - 0x70, 0xf3, 0x80, 0x00, // -OOO----OOOO--OOO---............ - 0x70, 0x7f, 0x00, 0x00, // -OOO-----OOOOOOO----............ - 0x70, 0x3e, 0x00, 0x00, // -OOO------OOOOO-----............ - 0x78, 0x1e, 0x00, 0x00, // -OOOO------OOOO-----............ - 0x3c, 0x3f, 0x00, 0x00, // --OOOO----OOOOOO----............ - 0x1f, 0xf7, 0x80, 0x00, // ---OOOOOOOOO-OOOO---............ - 0x07, 0xc3, 0xc0, 0x00, // -----OOOOO----OOOO--............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 39, char width: 7 - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - - // ASCII: 40, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x03, 0x00, 0x00, 0x00, // ------OO--...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x03, 0x00, 0x00, 0x00, // ------OO--...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 41, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x30, 0x00, 0x00, 0x00, // --OO------...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x30, 0x00, 0x00, 0x00, // --OO------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 42, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x02, 0x00, 0x00, 0x00, // ------O------................... - 0x02, 0x00, 0x00, 0x00, // ------O------................... - 0x62, 0x30, 0x00, 0x00, // -OO---O---OO-................... - 0x72, 0x70, 0x00, 0x00, // -OOO--O--OOO-................... - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO---................... - 0x07, 0x00, 0x00, 0x00, // -----OOO-----................... - 0x07, 0x00, 0x00, 0x00, // -----OOO-----................... - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO---................... - 0x72, 0x70, 0x00, 0x00, // -OOO--O--OOO-................... - 0x62, 0x30, 0x00, 0x00, // -OO---O---OO-................... - 0x02, 0x00, 0x00, 0x00, // ------O------................... - 0x02, 0x00, 0x00, 0x00, // ------O------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 43, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 44, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x30, 0x00, 0x00, 0x00, // --OO----........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 45, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x7f, 0x00, 0x00, 0x00, // -OOOOOOO-....................... - 0x7f, 0x00, 0x00, 0x00, // -OOOOOOO-....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 46, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 47, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x01, 0x80, 0x00, 0x00, // -------OO....................... - 0x03, 0x80, 0x00, 0x00, // ------OOO....................... - 0x03, 0x00, 0x00, 0x00, // ------OO-....................... - 0x03, 0x00, 0x00, 0x00, // ------OO-....................... - 0x07, 0x00, 0x00, 0x00, // -----OOO-....................... - 0x06, 0x00, 0x00, 0x00, // -----OO--....................... - 0x06, 0x00, 0x00, 0x00, // -----OO--....................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO--....................... - 0x0c, 0x00, 0x00, 0x00, // ----OO---....................... - 0x0c, 0x00, 0x00, 0x00, // ----OO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x38, 0x00, 0x00, 0x00, // --OOO----....................... - 0x30, 0x00, 0x00, 0x00, // --OO-----....................... - 0x30, 0x00, 0x00, 0x00, // --OO-----....................... - 0x70, 0x00, 0x00, 0x00, // -OOO-----....................... - 0x60, 0x00, 0x00, 0x00, // -OO------....................... - 0x60, 0x00, 0x00, 0x00, // -OO------....................... - 0xe0, 0x00, 0x00, 0x00, // OOO------....................... - 0xc0, 0x00, 0x00, 0x00, // OO-------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 48, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO------............... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO----............... - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO----............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO----............... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO----............... - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 49, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO-------............... - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO-------............... - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO---............... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO---............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 50, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO-------............... - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO-----............... - 0x38, 0x78, 0x00, 0x00, // --OOO----OOOO----............... - 0x20, 0x3c, 0x00, 0x00, // --O-------OOOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO---............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x00, 0x78, 0x00, 0x00, // ---------OOOO----............... - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-----............... - 0x01, 0xe0, 0x00, 0x00, // -------OOOO------............... - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-------............... - 0x07, 0x80, 0x00, 0x00, // -----OOOO--------............... - 0x0f, 0x00, 0x00, 0x00, // ----OOOO---------............... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO---------............... - 0x3e, 0x00, 0x00, 0x00, // --OOOOO----------............... - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO---............... - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO---............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 51, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO-------............... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-----............... - 0x10, 0x70, 0x00, 0x00, // ---O-----OOO-----............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x00, 0x70, 0x00, 0x00, // ---------OOO-----............... - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO------............... - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO------............... - 0x00, 0x78, 0x00, 0x00, // ---------OOOO----............... - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO---............... - 0x20, 0x78, 0x00, 0x00, // --O------OOOO----............... - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO-----............... - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO-------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 52, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-----............... - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-----............... - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO-----............... - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-----............... - 0x03, 0x70, 0x00, 0x00, // ------OO-OOO-----............... - 0x06, 0x70, 0x00, 0x00, // -----OO--OOO-----............... - 0x0e, 0x70, 0x00, 0x00, // ----OOO--OOO-----............... - 0x0c, 0x70, 0x00, 0x00, // ----OO---OOO-----............... - 0x18, 0x70, 0x00, 0x00, // ---OO----OOO-----............... - 0x38, 0x70, 0x00, 0x00, // --OOO----OOO-----............... - 0x30, 0x70, 0x00, 0x00, // --OO-----OOO-----............... - 0x60, 0x70, 0x00, 0x00, // -OO------OOO-----............... - 0x7f, 0xfe, 0x00, 0x00, // -OOOOOOOOOOOOOO--............... - 0x7f, 0xfe, 0x00, 0x00, // -OOOOOOOOOOOOOO--............... - 0x00, 0x70, 0x00, 0x00, // ---------OOO-----............... - 0x00, 0x70, 0x00, 0x00, // ---------OOO-----............... - 0x00, 0x70, 0x00, 0x00, // ---------OOO-----............... - 0x00, 0x70, 0x00, 0x00, // ---------OOO-----............... - 0x00, 0x70, 0x00, 0x00, // ---------OOO-----............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 53, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO----............... - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO----............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO------............... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-----............... - 0x10, 0x78, 0x00, 0x00, // ---O-----OOOO----............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x20, 0x78, 0x00, 0x00, // --O------OOOO----............... - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO-----............... - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO-------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 54, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO----............... - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO---............... - 0x0f, 0x04, 0x00, 0x00, // ----OOOO-----O---............... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO-----............... - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO----............... - 0x3e, 0x3c, 0x00, 0x00, // --OOOOO---OOOO---............... - 0x3c, 0x1e, 0x00, 0x00, // --OOOO-----OOOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x18, 0x0e, 0x00, 0x00, // ---OO-------OOO--............... - 0x1c, 0x1e, 0x00, 0x00, // ---OOO-----OOOO--............... - 0x0e, 0x3c, 0x00, 0x00, // ----OOO---OOOO---............... - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO----............... - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 55, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO---............... - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO---............... - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO---............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x00, 0x78, 0x00, 0x00, // ---------OOOO----............... - 0x00, 0x70, 0x00, 0x00, // ---------OOO-----............... - 0x00, 0x70, 0x00, 0x00, // ---------OOO-----............... - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-----............... - 0x00, 0xe0, 0x00, 0x00, // --------OOO------............... - 0x00, 0xe0, 0x00, 0x00, // --------OOO------............... - 0x01, 0xe0, 0x00, 0x00, // -------OOOO------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-------............... - 0x03, 0x80, 0x00, 0x00, // ------OOO--------............... - 0x03, 0x80, 0x00, 0x00, // ------OOO--------............... - 0x07, 0x80, 0x00, 0x00, // -----OOOO--------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 56, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-----............... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO---............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-----............... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO----............... - 0x1e, 0x3c, 0x00, 0x00, // ---OOOO---OOOO---............... - 0x3c, 0x1e, 0x00, 0x00, // --OOOO-----OOOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x3c, 0x1e, 0x00, 0x00, // --OOOO-----OOOO--............... - 0x1e, 0x3c, 0x00, 0x00, // ---OOOO---OOOO---............... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO----............... - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-----............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 57, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO------............... - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO-----............... - 0x1e, 0x38, 0x00, 0x00, // ---OOOO---OOO----............... - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO---............... - 0x38, 0x0c, 0x00, 0x00, // --OOO-------OO---............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x3c, 0x1e, 0x00, 0x00, // --OOOO-----OOOO--............... - 0x1e, 0x3e, 0x00, 0x00, // ---OOOO---OOOOO--............... - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO--............... - 0x07, 0xce, 0x00, 0x00, // -----OOOOO--OOO--............... - 0x00, 0x0e, 0x00, 0x00, // ------------OOO--............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO---............... - 0x10, 0x78, 0x00, 0x00, // ---O-----OOOO----............... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-----............... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO-------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 58, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 59, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x38, 0x00, 0x00, 0x00, // --OOO----....................... - 0x30, 0x00, 0x00, 0x00, // --OO-----....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 60, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x20, 0x00, // ------------------O---.......... - 0x00, 0x01, 0xe0, 0x00, // ---------------OOOO---.......... - 0x00, 0x0f, 0xc0, 0x00, // ------------OOOOOO----.......... - 0x00, 0x7e, 0x00, 0x00, // ---------OOOOOO-------.......... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO---------.......... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO------------.......... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO---------------.......... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO---------------.......... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO------------.......... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO---------.......... - 0x00, 0x7e, 0x00, 0x00, // ---------OOOOOO-------.......... - 0x00, 0x0f, 0xc0, 0x00, // ------------OOOOOO----.......... - 0x00, 0x01, 0xe0, 0x00, // ---------------OOOO---.......... - 0x00, 0x00, 0x20, 0x00, // ------------------O---.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 61, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 62, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x10, 0x00, 0x00, 0x00, // ---O------------------.......... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO---------------.......... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO------------.......... - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO----------.......... - 0x00, 0x7e, 0x00, 0x00, // ---------OOOOOO-------.......... - 0x00, 0x0f, 0xc0, 0x00, // ------------OOOOOO----.......... - 0x00, 0x01, 0xe0, 0x00, // ---------------OOOO---.......... - 0x00, 0x01, 0xe0, 0x00, // ---------------OOOO---.......... - 0x00, 0x0f, 0xc0, 0x00, // ------------OOOOOO----.......... - 0x00, 0x7e, 0x00, 0x00, // ---------OOOOOO-------.......... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO---------.......... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO------------.......... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO---------------.......... - 0x10, 0x00, 0x00, 0x00, // ---O------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 63, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----.................. - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO---.................. - 0x30, 0xf0, 0x00, 0x00, // --OO----OOOO--.................. - 0x20, 0x70, 0x00, 0x00, // --O------OOO--.................. - 0x00, 0x70, 0x00, 0x00, // ---------OOO--.................. - 0x00, 0x70, 0x00, 0x00, // ---------OOO--.................. - 0x00, 0x60, 0x00, 0x00, // ---------OO---.................. - 0x00, 0xe0, 0x00, 0x00, // --------OOO---.................. - 0x01, 0x80, 0x00, 0x00, // -------OO-----.................. - 0x03, 0x80, 0x00, 0x00, // ------OOO-----.................. - 0x07, 0x00, 0x00, 0x00, // -----OOO------.................. - 0x07, 0x00, 0x00, 0x00, // -----OOO------.................. - 0x07, 0x00, 0x00, 0x00, // -----OOO------.................. - 0x07, 0x00, 0x00, 0x00, // -----OOO------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x07, 0x00, 0x00, 0x00, // -----OOO------.................. - 0x07, 0x00, 0x00, 0x00, // -----OOO------.................. - 0x07, 0x00, 0x00, 0x00, // -----OOO------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 64, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x3f, 0x80, 0x00, // ----------OOOOOOO---------...... - 0x00, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOO------...... - 0x03, 0xe0, 0x78, 0x00, // ------OOOOO------OOOO-----...... - 0x07, 0x80, 0x1c, 0x00, // -----OOOO----------OOO----...... - 0x0e, 0x00, 0x06, 0x00, // ----OOO--------------OO---...... - 0x0c, 0x00, 0x07, 0x00, // ----OO---------------OOO--...... - 0x18, 0x1e, 0x63, 0x00, // ---OO------OOOO--OO---OO--...... - 0x18, 0x7f, 0xe1, 0x80, // ---OO----OOOOOOOOOO----OO-...... - 0x38, 0x71, 0xe1, 0x80, // --OOO----OOO---OOOO----OO-...... - 0x30, 0xe0, 0xe1, 0x80, // --OO----OOO-----OOO----OO-...... - 0x30, 0xc0, 0x61, 0x80, // --OO----OO-------OO----OO-...... - 0x30, 0xc0, 0x61, 0x80, // --OO----OO-------OO----OO-...... - 0x30, 0xc0, 0x63, 0x80, // --OO----OO-------OO---OOO-...... - 0x30, 0xe0, 0xe3, 0x00, // --OO----OOO-----OOO---OO--...... - 0x38, 0x71, 0xee, 0x00, // --OOO----OOO---OOOO-OOO---...... - 0x18, 0x7f, 0xfc, 0x00, // ---OO----OOOOOOOOOOOOO----...... - 0x18, 0x1e, 0x70, 0x00, // ---OO------OOOO--OOO------...... - 0x0c, 0x00, 0x00, 0x00, // ----OO--------------------...... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-------------------...... - 0x07, 0x00, 0x18, 0x00, // -----OOO-----------OO-----...... - 0x03, 0xe0, 0x70, 0x00, // ------OOOOO------OOO------...... - 0x00, 0xff, 0xe0, 0x00, // --------OOOOOOOOOOO-------...... - 0x00, 0x3f, 0x80, 0x00, // ----------OOOOOOO---------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 65, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0xe0, 0x03, 0x80, 0x00, // OOO-----------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 66, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-------.............. - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO-----.............. - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO-----.............. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO------.............. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO------.............. - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO----.............. - 0x38, 0x0c, 0x00, 0x00, // --OOO-------OO----.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO----.............. - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO-----.............. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 67, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-----.............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO---.............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO--.............. - 0x1c, 0x03, 0x00, 0x00, // ---OOO--------OO--.............. - 0x38, 0x00, 0x00, 0x00, // --OOO-------------.............. - 0x38, 0x00, 0x00, 0x00, // --OOO-------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x38, 0x00, 0x00, 0x00, // --OOO-------------.............. - 0x38, 0x00, 0x00, 0x00, // --OOO-------------.............. - 0x1c, 0x03, 0x00, 0x00, // ---OOO--------OO--.............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO--.............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO---.............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-----.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 68, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO--------............ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO------............ - 0x38, 0x1f, 0x00, 0x00, // --OOO------OOOOO----............ - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO---............ - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO---............ - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO---............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO---............ - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO---............ - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO---............ - 0x38, 0x1f, 0x00, 0x00, // --OOO------OOOOO----............ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO------............ - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO--------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 69, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 70, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO--................. - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO--................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO---................. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO---................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 71, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO------............ - 0x07, 0xff, 0x00, 0x00, // -----OOOOOOOOOOO----............ - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO---............ - 0x1c, 0x01, 0x80, 0x00, // ---OOO---------OO---............ - 0x38, 0x00, 0x00, 0x00, // --OOO---------------............ - 0x38, 0x00, 0x00, 0x00, // --OOO---------------............ - 0x70, 0x00, 0x00, 0x00, // -OOO----------------............ - 0x70, 0x00, 0x00, 0x00, // -OOO----------------............ - 0x70, 0x00, 0x00, 0x00, // -OOO----------------............ - 0x70, 0x1f, 0xc0, 0x00, // -OOO-------OOOOOOO--............ - 0x70, 0x1f, 0xc0, 0x00, // -OOO-------OOOOOOO--............ - 0x70, 0x01, 0xc0, 0x00, // -OOO-----------OOO--............ - 0x70, 0x01, 0xc0, 0x00, // -OOO-----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO--............ - 0x0f, 0x03, 0xc0, 0x00, // ----OOOO------OOOO--............ - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO---............ - 0x01, 0xfe, 0x00, 0x00, // -------OOOOOOOO-----............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 72, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x3f, 0xff, 0x00, 0x00, // --OOOOOOOOOOOOOO----............ - 0x3f, 0xff, 0x00, 0x00, // --OOOOOOOOOOOOOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 73, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 74, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x70, 0x00, 0x00, 0x00, // -OOO----........................ - 0xf0, 0x00, 0x00, 0x00, // OOOO----........................ - 0xc0, 0x00, 0x00, 0x00, // OO------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 75, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO-............... - 0x38, 0x1e, 0x00, 0x00, // --OOO------OOOO--............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x38, 0x78, 0x00, 0x00, // --OOO----OOOO----............... - 0x38, 0xf0, 0x00, 0x00, // --OOO---OOOO-----............... - 0x39, 0xe0, 0x00, 0x00, // --OOO--OOOO------............... - 0x3b, 0xc0, 0x00, 0x00, // --OOO-OOOO-------............... - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO--------............... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO---------............... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO---------............... - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO--------............... - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO-------............... - 0x39, 0xe0, 0x00, 0x00, // --OOO--OOOO------............... - 0x38, 0xf0, 0x00, 0x00, // --OOO---OOOO-----............... - 0x38, 0x78, 0x00, 0x00, // --OOO----OOOO----............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x38, 0x1e, 0x00, 0x00, // --OOO------OOOO--............... - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO-............... - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 76, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO.................. - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 77, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x3f, 0x07, 0xe0, 0x00, // --OOOOOO-----OOOOOO---.......... - 0x3f, 0x07, 0xe0, 0x00, // --OOOOOO-----OOOOOO---.......... - 0x3f, 0x07, 0xe0, 0x00, // --OOOOOO-----OOOOOO---.......... - 0x3f, 0x8f, 0xe0, 0x00, // --OOOOOOO---OOOOOOO---.......... - 0x3b, 0x8e, 0xe0, 0x00, // --OOO-OOO---OOO-OOO---.......... - 0x3b, 0x8e, 0xe0, 0x00, // --OOO-OOO---OOO-OOO---.......... - 0x3b, 0xde, 0xe0, 0x00, // --OOO-OOOO-OOOO-OOO---.......... - 0x39, 0xdc, 0xe0, 0x00, // --OOO--OOO-OOO--OOO---.......... - 0x39, 0xfc, 0xe0, 0x00, // --OOO--OOOOOOO--OOO---.......... - 0x39, 0xfc, 0xe0, 0x00, // --OOO--OOOOOOO--OOO---.......... - 0x38, 0xf8, 0xe0, 0x00, // --OOO---OOOOO---OOO---.......... - 0x38, 0xf8, 0xe0, 0x00, // --OOO---OOOOO---OOO---.......... - 0x38, 0xf8, 0xe0, 0x00, // --OOO---OOOOO---OOO---.......... - 0x38, 0x70, 0xe0, 0x00, // --OOO----OOO----OOO---.......... - 0x38, 0x70, 0xe0, 0x00, // --OOO----OOO----OOO---.......... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO---.......... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO---.......... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO---.......... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO---.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 78, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x3e, 0x07, 0x00, 0x00, // --OOOOO------OOO---............. - 0x3e, 0x07, 0x00, 0x00, // --OOOOO------OOO---............. - 0x3f, 0x07, 0x00, 0x00, // --OOOOOO-----OOO---............. - 0x3f, 0x07, 0x00, 0x00, // --OOOOOO-----OOO---............. - 0x3f, 0x87, 0x00, 0x00, // --OOOOOOO----OOO---............. - 0x3b, 0x87, 0x00, 0x00, // --OOO-OOO----OOO---............. - 0x3b, 0xc7, 0x00, 0x00, // --OOO-OOOO---OOO---............. - 0x39, 0xc7, 0x00, 0x00, // --OOO--OOO---OOO---............. - 0x39, 0xe7, 0x00, 0x00, // --OOO--OOOO--OOO---............. - 0x38, 0xe7, 0x00, 0x00, // --OOO---OOO--OOO---............. - 0x38, 0xf7, 0x00, 0x00, // --OOO---OOOO-OOO---............. - 0x38, 0x7f, 0x00, 0x00, // --OOO----OOOOOOO---............. - 0x38, 0x7f, 0x00, 0x00, // --OOO----OOOOOOO---............. - 0x38, 0x3f, 0x00, 0x00, // --OOO-----OOOOOO---............. - 0x38, 0x3f, 0x00, 0x00, // --OOO-----OOOOOO---............. - 0x38, 0x1f, 0x00, 0x00, // --OOO------OOOOO---............. - 0x38, 0x1f, 0x00, 0x00, // --OOO------OOOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 79, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 80, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 81, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO------............ - 0x00, 0x0e, 0x00, 0x00, // ------------OOO-----............ - 0x00, 0x07, 0x00, 0x00, // -------------OOO----............ - 0x00, 0x03, 0x80, 0x00, // --------------OOO---............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 82, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-------.............. - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO-----.............. - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO-----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO-----.............. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO------.............. - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-------.............. - 0x38, 0x70, 0x00, 0x00, // --OOO----OOO------.............. - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO-----.............. - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x1e, 0x00, 0x00, // --OOO------OOOO---.............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO--.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 83, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-----............... - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO---............... - 0x1e, 0x1c, 0x00, 0x00, // ---OOOO----OOO---............... - 0x3c, 0x04, 0x00, 0x00, // --OOOO-------O---............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x3c, 0x00, 0x00, 0x00, // --OOOO-----------............... - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO--------............... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-----............... - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO---............... - 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO---............... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO--............... - 0x00, 0x0e, 0x00, 0x00, // ------------OOO--............... - 0x00, 0x0e, 0x00, 0x00, // ------------OOO--............... - 0x00, 0x0e, 0x00, 0x00, // ------------OOO--............... - 0x20, 0x1e, 0x00, 0x00, // --O--------OOOO--............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO----............... - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO-----............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 84, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOO............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 85, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x0e, 0x07, 0x00, 0x00, // ----OOO------OOO---............. - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO---............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO----............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 86, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0xe0, 0x03, 0x80, 0x00, // OOO-----------OOO-.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO--.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x3c, 0x1e, 0x00, 0x00, // --OOOO-----OOOO---.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO-----.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 87, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x70, 0x1e, 0x03, 0x80, // -OOO-------OOOO-------OOO-...... - 0x70, 0x1e, 0x07, 0x80, // -OOO-------OOOO------OOOO-...... - 0x38, 0x1e, 0x07, 0x00, // --OOO------OOOO------OOO--...... - 0x38, 0x1e, 0x07, 0x00, // --OOO------OOOO------OOO--...... - 0x38, 0x3f, 0x07, 0x00, // --OOO-----OOOOOO-----OOO--...... - 0x3c, 0x33, 0x0f, 0x00, // --OOOO----OO--OO----OOOO--...... - 0x1c, 0x33, 0x0e, 0x00, // ---OOO----OO--OO----OOO---...... - 0x1c, 0x33, 0x0e, 0x00, // ---OOO----OO--OO----OOO---...... - 0x1c, 0x73, 0x8e, 0x00, // ---OOO---OOO--OOO---OOO---...... - 0x1e, 0x61, 0x9e, 0x00, // ---OOOO--OO----OO--OOOO---...... - 0x0e, 0x61, 0x9c, 0x00, // ----OOO--OO----OO--OOO----...... - 0x0e, 0x61, 0x9c, 0x00, // ----OOO--OO----OO--OOO----...... - 0x0e, 0xe1, 0xdc, 0x00, // ----OOO-OOO----OOO-OOO----...... - 0x0f, 0xc0, 0xfc, 0x00, // ----OOOOOO------OOOOOO----...... - 0x07, 0xc0, 0xf8, 0x00, // -----OOOOO------OOOOO-----...... - 0x07, 0xc0, 0xf8, 0x00, // -----OOOOO------OOOOO-----...... - 0x07, 0xc0, 0xf8, 0x00, // -----OOOOO------OOOOO-----...... - 0x07, 0x80, 0x78, 0x00, // -----OOOO--------OOOO-----...... - 0x03, 0x80, 0x70, 0x00, // ------OOO--------OOO------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 88, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x3c, 0x07, 0x80, 0x00, // --OOOO-------OOOO-.............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO--.............. - 0x1e, 0x0e, 0x00, 0x00, // ---OOOO-----OOO---.............. - 0x0f, 0x1e, 0x00, 0x00, // ----OOOO---OOOO---.............. - 0x07, 0x3c, 0x00, 0x00, // -----OOO--OOOO----.............. - 0x07, 0xb8, 0x00, 0x00, // -----OOOO-OOO-----.............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO-----.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO------.............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO-----.............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO-----.............. - 0x07, 0x3c, 0x00, 0x00, // -----OOO--OOOO----.............. - 0x0f, 0x1c, 0x00, 0x00, // ----OOOO---OOO----.............. - 0x1e, 0x1e, 0x00, 0x00, // ---OOOO----OOOO---.............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO--.............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO--.............. - 0x78, 0x07, 0x80, 0x00, // -OOOO--------OOOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 89, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0xf0, 0x07, 0x80, 0x00, // OOOO---------OOOO............... - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO................ - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO-................ - 0x3c, 0x1e, 0x00, 0x00, // --OOOO-----OOOO-................ - 0x1e, 0x3c, 0x00, 0x00, // ---OOOO---OOOO--................ - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO---................ - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO----................ - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO----................ - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-----................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 90, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x7f, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOO--.............. - 0x7f, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOO--.............. - 0x00, 0x0f, 0x00, 0x00, // ------------OOOO--.............. - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO---.............. - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO----.............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO-----.............. - 0x00, 0x78, 0x00, 0x00, // ---------OOOO-----.............. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO--------.............. - 0x07, 0x80, 0x00, 0x00, // -----OOOO---------.............. - 0x0f, 0x00, 0x00, 0x00, // ----OOOO----------.............. - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----------.............. - 0x1e, 0x00, 0x00, 0x00, // ---OOOO-----------.............. - 0x3c, 0x00, 0x00, 0x00, // --OOOO------------.............. - 0x78, 0x00, 0x00, 0x00, // -OOOO-------------.............. - 0x7f, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOO--.............. - 0x7f, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOO--.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 91, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 92, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0xc0, 0x00, 0x00, 0x00, // OO-------....................... - 0xe0, 0x00, 0x00, 0x00, // OOO------....................... - 0x60, 0x00, 0x00, 0x00, // -OO------....................... - 0x60, 0x00, 0x00, 0x00, // -OO------....................... - 0x70, 0x00, 0x00, 0x00, // -OOO-----....................... - 0x30, 0x00, 0x00, 0x00, // --OO-----....................... - 0x30, 0x00, 0x00, 0x00, // --OO-----....................... - 0x38, 0x00, 0x00, 0x00, // --OOO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x0c, 0x00, 0x00, 0x00, // ----OO---....................... - 0x0c, 0x00, 0x00, 0x00, // ----OO---....................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO--....................... - 0x06, 0x00, 0x00, 0x00, // -----OO--....................... - 0x06, 0x00, 0x00, 0x00, // -----OO--....................... - 0x07, 0x00, 0x00, 0x00, // -----OOO-....................... - 0x03, 0x00, 0x00, 0x00, // ------OO-....................... - 0x03, 0x00, 0x00, 0x00, // ------OO-....................... - 0x03, 0x80, 0x00, 0x00, // ------OOO....................... - 0x01, 0x80, 0x00, 0x00, // -------OO....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 93, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 94, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x78, 0x00, 0x00, // ---------OOOO---------.......... - 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO--------.......... - 0x01, 0xfe, 0x00, 0x00, // -------OOOOOOOO-------.......... - 0x03, 0x87, 0x00, 0x00, // ------OOO----OOO------.......... - 0x07, 0x03, 0x80, 0x00, // -----OOO------OOO-----.......... - 0x0e, 0x01, 0xc0, 0x00, // ----OOO--------OOO----.......... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO---.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 95, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0xff, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOO................... - 0xff, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOO................... - - // ASCII: 96, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x38, 0x00, 0x00, 0x00, // --OOO--------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x0c, 0x00, 0x00, 0x00, // ----OO-------................... - 0x06, 0x00, 0x00, 0x00, // -----OO------................... - 0x03, 0x00, 0x00, 0x00, // ------OO-----................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 97, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x20, 0xf0, 0x00, 0x00, // --O-----OOOO----................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x78, 0x38, 0x00, 0x00, // -OOOO-----OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x78, 0x00, 0x00, // -OOO-----OOOO---................ - 0x78, 0xf8, 0x00, 0x00, // -OOOO---OOOOO---................ - 0x3f, 0xb8, 0x00, 0x00, // --OOOOOOO-OOO---................ - 0x1f, 0x38, 0x00, 0x00, // ---OOOOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 98, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO-----............... - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO----............... - 0x3e, 0x3c, 0x00, 0x00, // --OOOOO---OOOO---............... - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO---............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO---............... - 0x3e, 0x3c, 0x00, 0x00, // --OOOOO---OOOO---............... - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO----............... - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO-----............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 99, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO---.................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO--.................. - 0x3c, 0x10, 0x00, 0x00, // --OOOO-----O--.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x3c, 0x10, 0x00, 0x00, // --OOOO-----O--.................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO--.................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO---.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 100, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO---............... - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO---............... - 0x3c, 0x7c, 0x00, 0x00, // --OOOO---OOOOO---............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x3c, 0x7c, 0x00, 0x00, // --OOOO---OOOOO---............... - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO---............... - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO---............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 101, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3c, 0x08, 0x00, 0x00, // --OOOO------O---................ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO---................ - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 102, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO...................... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO...................... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO--....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO...................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 103, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO---............... - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO---............... - 0x3c, 0x7c, 0x00, 0x00, // --OOOO---OOOOO---............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x3c, 0x7c, 0x00, 0x00, // --OOOO---OOOOO---............... - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO---............... - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO---............... - 0x10, 0x78, 0x00, 0x00, // ---O-----OOOO----............... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 104, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO----................ - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO---................ - 0x3e, 0x38, 0x00, 0x00, // --OOOOO---OOO---................ - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 105, char width: 7 - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - - // ASCII: 106, char width: 7 - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x78, 0x00, 0x00, 0x00, // -OOOO--......................... - 0xf0, 0x00, 0x00, 0x00, // OOOO---......................... - 0xe0, 0x00, 0x00, 0x00, // OOO----......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - - // ASCII: 107, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO-................. - 0x38, 0x78, 0x00, 0x00, // --OOO----OOOO--................. - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO---................. - 0x3b, 0xe0, 0x00, 0x00, // --OOO-OOOOO----................. - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO-----................. - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO------................. - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO-------................. - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO-------................. - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO------................. - 0x3b, 0xc0, 0x00, 0x00, // --OOO-OOOO-----................. - 0x39, 0xe0, 0x00, 0x00, // --OOO--OOOO----................. - 0x38, 0xf0, 0x00, 0x00, // --OOO---OOOO---................. - 0x38, 0x7c, 0x00, 0x00, // --OOO----OOOOO-................. - 0x38, 0x3e, 0x00, 0x00, // --OOO-----OOOOO................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 108, char width: 7 - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - - // ASCII: 109, char width: 25 - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x39, 0xe0, 0xf8, 0x00, // --OOO--OOOO-----OOOOO----....... - 0x3b, 0xf9, 0xfc, 0x00, // --OOO-OOOOOOO--OOOOOOO---....... - 0x3e, 0x3b, 0x1c, 0x00, // --OOOOO---OOO-OO---OOO---....... - 0x3c, 0x1e, 0x0e, 0x00, // --OOOO-----OOOO-----OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - - // ASCII: 110, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO----................ - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO---................ - 0x3e, 0x38, 0x00, 0x00, // --OOOOO---OOO---................ - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 111, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 112, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO-----............... - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO----............... - 0x3e, 0x3c, 0x00, 0x00, // --OOOOO---OOOO---............... - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO---............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO---............... - 0x3e, 0x3c, 0x00, 0x00, // --OOOOO---OOOO---............... - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO----............... - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO-----............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 113, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO---............... - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO---............... - 0x3c, 0x7c, 0x00, 0x00, // --OOOO---OOOOO---............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x3c, 0x7c, 0x00, 0x00, // --OOOO---OOOOO---............... - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO---............... - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 114, char width: 11 - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO-..................... - 0x3b, 0xc0, 0x00, 0x00, // --OOO-OOOO-..................... - 0x3e, 0x00, 0x00, 0x00, // --OOOOO----..................... - 0x3c, 0x00, 0x00, 0x00, // --OOOO-----..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - - // ASCII: 115, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO----.................. - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO---.................. - 0x78, 0x20, 0x00, 0x00, // -OOOO-----O---.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x7e, 0x00, 0x00, 0x00, // -OOOOOO-------.................. - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO----.................. - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO---.................. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO--.................. - 0x00, 0x70, 0x00, 0x00, // ---------OOO--.................. - 0x00, 0x70, 0x00, 0x00, // ---------OOO--.................. - 0x60, 0xf0, 0x00, 0x00, // -OO-----OOOO--.................. - 0x7f, 0xe0, 0x00, 0x00, // -OOOOOOOOOO---.................. - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO-----.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 116, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0xff, 0xc0, 0x00, 0x00, // OOOOOOOOOO...................... - 0xff, 0xc0, 0x00, 0x00, // OOOOOOOOOO...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x3c, 0x00, 0x00, 0x00, // --OOOO----...................... - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO...................... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 117, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO--................ - 0x1c, 0x7c, 0x00, 0x00, // ---OOO---OOOOO--................ - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO--................ - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 118, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x70, 0x0e, 0x00, 0x00, // -OOO--------OOO................. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-................. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-................. - 0x3c, 0x3c, 0x00, 0x00, // --OOOO----OOOO-................. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO--................. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO--................. - 0x1e, 0x78, 0x00, 0x00, // ---OOOO--OOOO--................. - 0x0e, 0x70, 0x00, 0x00, // ----OOO--OOO---................. - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO---................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 119, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x70, 0x70, 0x70, 0x00, // -OOO-----OOO-----OOO-........... - 0x78, 0x70, 0xf0, 0x00, // -OOOO----OOO----OOOO-........... - 0x38, 0xf8, 0xe0, 0x00, // --OOO---OOOOO---OOO--........... - 0x38, 0xf8, 0xe0, 0x00, // --OOO---OOOOO---OOO--........... - 0x38, 0xd8, 0xe0, 0x00, // --OOO---OO-OO---OOO--........... - 0x3c, 0xd9, 0xe0, 0x00, // --OOOO--OO-OO--OOOO--........... - 0x1d, 0x8d, 0xc0, 0x00, // ---OOO-OO---OO-OOO---........... - 0x1d, 0x8d, 0xc0, 0x00, // ---OOO-OO---OO-OOO---........... - 0x1f, 0x8f, 0xc0, 0x00, // ---OOOOOO---OOOOOO---........... - 0x1f, 0x8f, 0xc0, 0x00, // ---OOOOOO---OOOOOO---........... - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO----........... - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO----........... - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 120, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x78, 0x1e, 0x00, 0x00, // -OOOO------OOOO................. - 0x3c, 0x3c, 0x00, 0x00, // --OOOO----OOOO-................. - 0x1e, 0x78, 0x00, 0x00, // ---OOOO--OOOO--................. - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO---................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO---................. - 0x0e, 0xf0, 0x00, 0x00, // ----OOO-OOOO---................. - 0x1e, 0x78, 0x00, 0x00, // ---OOOO--OOOO--................. - 0x3c, 0x3c, 0x00, 0x00, // --OOOO----OOOO-................. - 0x78, 0x1e, 0x00, 0x00, // -OOOO------OOOO................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 121, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x70, 0x1e, 0x00, 0x00, // -OOO-------OOOO................. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-................. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-................. - 0x3c, 0x3c, 0x00, 0x00, // --OOOO----OOOO-................. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO--................. - 0x1e, 0x78, 0x00, 0x00, // ---OOOO--OOOO--................. - 0x0e, 0x70, 0x00, 0x00, // ----OOO--OOO---................. - 0x0e, 0xf0, 0x00, 0x00, // ----OOO-OOOO---................. - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO----................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO-----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x03, 0x80, 0x00, 0x00, // ------OOO------................. - 0x07, 0x80, 0x00, 0x00, // -----OOOO------................. - 0x07, 0x00, 0x00, 0x00, // -----OOO-------................. - 0x0f, 0x00, 0x00, 0x00, // ----OOOO-------................. - 0x3e, 0x00, 0x00, 0x00, // --OOOOO--------................. - 0x3c, 0x00, 0x00, 0x00, // --OOOO---------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 122, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x7f, 0xf0, 0x00, 0x00, // -OOOOOOOOOOO--.................. - 0x7f, 0xf0, 0x00, 0x00, // -OOOOOOOOOOO--.................. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO--.................. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO---.................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO----.................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO----.................. - 0x07, 0x80, 0x00, 0x00, // -----OOOO-----.................. - 0x0f, 0x00, 0x00, 0x00, // ----OOOO------.................. - 0x0e, 0x00, 0x00, 0x00, // ----OOO-------.................. - 0x1e, 0x00, 0x00, 0x00, // ---OOOO-------.................. - 0x3c, 0x00, 0x00, 0x00, // --OOOO--------.................. - 0x78, 0x00, 0x00, 0x00, // -OOOO---------.................. - 0x7f, 0xf0, 0x00, 0x00, // -OOOOOOOOOOO--.................. - 0x7f, 0xf0, 0x00, 0x00, // -OOOOOOOOOOO--.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 123, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO---............... - 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO---............... - 0x01, 0xe0, 0x00, 0x00, // -------OOOO------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x03, 0x80, 0x00, 0x00, // ------OOO--------............... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO---------............... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO---------............... - 0x03, 0x80, 0x00, 0x00, // ------OOO--------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xe0, 0x00, 0x00, // -------OOOO------............... - 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO---............... - 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO---............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 124, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - - // ASCII: 125, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO---------............... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO--------............... - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x00, 0xe0, 0x00, 0x00, // --------OOO------............... - 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO---............... - 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO---............... - 0x00, 0xe0, 0x00, 0x00, // --------OOO------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-------............... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO--------............... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO---------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 126, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x07, 0xc0, 0x20, 0x00, // -----OOOOO--------O---.......... - 0x0f, 0xf0, 0xe0, 0x00, // ----OOOOOOOO----OOO---.......... - 0x18, 0x7f, 0xc0, 0x00, // ---OO----OOOOOOOOO----.......... - 0x10, 0x0f, 0x80, 0x00, // ---O--------OOOOO-----.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // No glyph for ASCII: 127, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 128, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 129, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 130, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 131, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 132, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 133, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 134, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 135, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 136, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 137, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 138, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 139, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 140, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 141, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 142, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 143, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 144, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 145, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 146, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 147, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 148, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 149, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 150, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 151, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 152, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 153, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 154, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 155, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 156, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 157, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 158, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 159, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 160, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 161, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 162, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-----............... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO----............... - 0x1e, 0x88, 0x00, 0x00, // ---OOOO-O---O----............... - 0x1c, 0x80, 0x00, 0x00, // ---OOO--O--------............... - 0x38, 0x80, 0x00, 0x00, // --OOO---O--------............... - 0x38, 0x80, 0x00, 0x00, // --OOO---O--------............... - 0x38, 0x80, 0x00, 0x00, // --OOO---O--------............... - 0x38, 0x80, 0x00, 0x00, // --OOO---O--------............... - 0x38, 0x80, 0x00, 0x00, // --OOO---O--------............... - 0x38, 0x80, 0x00, 0x00, // --OOO---O--------............... - 0x1c, 0x80, 0x00, 0x00, // ---OOO--O--------............... - 0x1e, 0x98, 0x00, 0x00, // ---OOOO-O--OO----............... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO----............... - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-----............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 163, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO---............... - 0x03, 0xfe, 0x00, 0x00, // ------OOOOOOOOO--............... - 0x03, 0x82, 0x00, 0x00, // ------OOO-----O--............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO----............... - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO----............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO--............... - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO--............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 164, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x20, 0x02, 0x00, 0x00, // --O-----------O--............... - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO-............... - 0x3b, 0xee, 0x00, 0x00, // --OOO-OOOOO-OOO--............... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO---............... - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO----............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x18, 0x0c, 0x00, 0x00, // ---OO-------OO---............... - 0x18, 0x0c, 0x00, 0x00, // ---OO-------OO---............... - 0x18, 0x0c, 0x00, 0x00, // ---OO-------OO---............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO----............... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO---............... - 0x3b, 0xee, 0x00, 0x00, // --OOO-OOOOO-OOO--............... - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO-............... - 0x20, 0x02, 0x00, 0x00, // --O-----------O--............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 165, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO-............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x3c, 0x1e, 0x00, 0x00, // --OOOO-----OOOO--............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO----............... - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO----............... - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO-----............... - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO--............... - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO--............... - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO--............... - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO--............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 166, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 167, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO---................... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO--................... - 0x38, 0x20, 0x00, 0x00, // --OOO-----O--................... - 0x30, 0x00, 0x00, 0x00, // --OO---------................... - 0x30, 0x00, 0x00, 0x00, // --OO---------................... - 0x3c, 0x00, 0x00, 0x00, // --OOOO-------................... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO-----................... - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO----................... - 0x61, 0xe0, 0x00, 0x00, // -OO----OOOO--................... - 0x60, 0x70, 0x00, 0x00, // -OO------OOO-................... - 0x60, 0x30, 0x00, 0x00, // -OO-------OO-................... - 0x78, 0x30, 0x00, 0x00, // -OOOO-----OO-................... - 0x3c, 0x70, 0x00, 0x00, // --OOOO---OOO-................... - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO--................... - 0x03, 0xc0, 0x00, 0x00, // ------OOOO---................... - 0x00, 0xe0, 0x00, 0x00, // --------OOO--................... - 0x00, 0x60, 0x00, 0x00, // ---------OO--................... - 0x00, 0x60, 0x00, 0x00, // ---------OO--................... - 0x20, 0xe0, 0x00, 0x00, // --O-----OOO--................... - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO---................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO----................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 168, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x1c, 0xe0, 0x00, 0x00, // ---OOO--OOO--................... - 0x1c, 0xe0, 0x00, 0x00, // ---OOO--OOO--................... - 0x1c, 0xe0, 0x00, 0x00, // ---OOO--OOO--................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 169, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x3f, 0x80, 0x00, // ----------OOOOOOO---------...... - 0x00, 0xe0, 0xe0, 0x00, // --------OOO-----OOO-------...... - 0x01, 0x80, 0x30, 0x00, // -------OO---------OO------...... - 0x03, 0x0f, 0x98, 0x00, // ------OO----OOOOO--OO-----...... - 0x06, 0x30, 0x4c, 0x00, // -----OO---OO-----O--OO----...... - 0x04, 0x60, 0x04, 0x00, // -----O---OO----------O----...... - 0x0c, 0x60, 0x06, 0x00, // ----OO---OO----------OO---...... - 0x08, 0xc0, 0x02, 0x00, // ----O---OO------------O---...... - 0x08, 0xc0, 0x02, 0x00, // ----O---OO------------O---...... - 0x08, 0xc0, 0x02, 0x00, // ----O---OO------------O---...... - 0x08, 0xc0, 0x02, 0x00, // ----O---OO------------O---...... - 0x08, 0xc0, 0x02, 0x00, // ----O---OO------------O---...... - 0x0c, 0x60, 0x06, 0x00, // ----OO---OO----------OO---...... - 0x04, 0x60, 0x04, 0x00, // -----O---OO----------O----...... - 0x06, 0x30, 0x4c, 0x00, // -----OO---OO-----O--OO----...... - 0x03, 0x0f, 0x98, 0x00, // ------OO----OOOOO--OO-----...... - 0x01, 0x80, 0x30, 0x00, // -------OO---------OO------...... - 0x00, 0xe0, 0xe0, 0x00, // --------OOO-----OOO-------...... - 0x00, 0x3f, 0x80, 0x00, // ----------OOOOOOO---------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 170, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x20, 0xc0, 0x00, 0x00, // --O-----OO--.................... - 0x00, 0x60, 0x00, 0x00, // ---------OO-.................... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO-.................... - 0x30, 0x60, 0x00, 0x00, // --OO-----OO-.................... - 0x60, 0x60, 0x00, 0x00, // -OO------OO-.................... - 0x60, 0x60, 0x00, 0x00, // -OO------OO-.................... - 0x60, 0xe0, 0x00, 0x00, // -OO-----OOO-.................... - 0x31, 0xe0, 0x00, 0x00, // --OO---OOOO-.................... - 0x1f, 0x60, 0x00, 0x00, // ---OOOOO-OO-.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x7f, 0xe0, 0x00, 0x00, // -OOOOOOOOOO-.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 171, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x03, 0x0c, 0x00, 0x00, // ------OO----OO--................ - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO--................ - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO---................ - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO----................ - 0x38, 0xe0, 0x00, 0x00, // --OOO---OOO-----................ - 0x38, 0xe0, 0x00, 0x00, // --OOO---OOO-----................ - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO----................ - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO---................ - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO--................ - 0x03, 0x0c, 0x00, 0x00, // ------OO----OO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 172, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x00, 0x00, 0x60, 0x00, // -----------------OO---.......... - 0x00, 0x00, 0x60, 0x00, // -----------------OO---.......... - 0x00, 0x00, 0x60, 0x00, // -----------------OO---.......... - 0x00, 0x00, 0x60, 0x00, // -----------------OO---.......... - 0x00, 0x00, 0x60, 0x00, // -----------------OO---.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 173, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x7f, 0x00, 0x00, 0x00, // -OOOOOOO-....................... - 0x7f, 0x00, 0x00, 0x00, // -OOOOOOO-....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 174, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x3f, 0x80, 0x00, // ----------OOOOOOO---------...... - 0x00, 0xe0, 0xe0, 0x00, // --------OOO-----OOO-------...... - 0x01, 0x80, 0x30, 0x00, // -------OO---------OO------...... - 0x03, 0x7f, 0x18, 0x00, // ------OO-OOOOOOO---OO-----...... - 0x06, 0x61, 0xcc, 0x00, // -----OO--OO----OOO--OO----...... - 0x04, 0x60, 0xc4, 0x00, // -----O---OO-----OO---O----...... - 0x0c, 0x60, 0xc6, 0x00, // ----OO---OO-----OO---OO---...... - 0x08, 0x61, 0xc2, 0x00, // ----O----OO----OOO----O---...... - 0x08, 0x7f, 0x02, 0x00, // ----O----OOOOOOO------O---...... - 0x08, 0x67, 0x02, 0x00, // ----O----OO--OOO------O---...... - 0x08, 0x63, 0x82, 0x00, // ----O----OO---OOO-----O---...... - 0x08, 0x61, 0x82, 0x00, // ----O----OO----OO-----O---...... - 0x0c, 0x61, 0xc6, 0x00, // ----OO---OO----OOO---OO---...... - 0x04, 0x60, 0xc4, 0x00, // -----O---OO-----OO---O----...... - 0x06, 0x60, 0xcc, 0x00, // -----OO--OO-----OO--OO----...... - 0x03, 0x60, 0xf8, 0x00, // ------OO-OO-----OOOOO-----...... - 0x01, 0x80, 0x30, 0x00, // -------OO---------OO------...... - 0x00, 0xe0, 0xe0, 0x00, // --------OOO-----OOO-------...... - 0x00, 0x3f, 0x80, 0x00, // ----------OOOOOOO---------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 175, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO--................... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO--................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 176, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x0f, 0x00, 0x00, 0x00, // ----OOOO-----................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO----................... - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO---................... - 0x30, 0xc0, 0x00, 0x00, // --OO----OO---................... - 0x30, 0xc0, 0x00, 0x00, // --OO----OO---................... - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO---................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO----................... - 0x0f, 0x00, 0x00, 0x00, // ----OOOO-----................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 177, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 178, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x3e, 0x00, 0x00, 0x00, // --OOOOO---...................... - 0x43, 0x00, 0x00, 0x00, // -O----OO--...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x03, 0x80, 0x00, 0x00, // ------OOO-...................... - 0x03, 0x00, 0x00, 0x00, // ------OO--...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x30, 0x00, 0x00, 0x00, // --OO------...................... - 0x7f, 0x80, 0x00, 0x00, // -OOOOOOOO-...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 179, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x3e, 0x00, 0x00, 0x00, // --OOOOO---...................... - 0x43, 0x80, 0x00, 0x00, // -O----OOO-...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x03, 0x80, 0x00, 0x00, // ------OOO-...................... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO---...................... - 0x03, 0x00, 0x00, 0x00, // ------OO--...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x43, 0x00, 0x00, 0x00, // -O----OO--...................... - 0x3e, 0x00, 0x00, 0x00, // --OOOOO---...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 180, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0xe0, 0x00, 0x00, // --------OOO--................... - 0x01, 0xc0, 0x00, 0x00, // -------OOO---................... - 0x01, 0x80, 0x00, 0x00, // -------OO----................... - 0x03, 0x00, 0x00, 0x00, // ------OO-----................... - 0x06, 0x00, 0x00, 0x00, // -----OO------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 181, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x3c, 0x3c, 0x00, 0x00, // --OOOO----OOOO---............... - 0x3f, 0xff, 0x00, 0x00, // --OOOOOOOOOOOOOO-............... - 0x3b, 0xcf, 0x00, 0x00, // --OOO-OOOO--OOOO-............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 182, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO---............... - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO---............... - 0x1f, 0xcc, 0x00, 0x00, // ---OOOOOOO--OO---............... - 0x3f, 0xcc, 0x00, 0x00, // --OOOOOOOO--OO---............... - 0x3f, 0xcc, 0x00, 0x00, // --OOOOOOOO--OO---............... - 0x3f, 0xcc, 0x00, 0x00, // --OOOOOOOO--OO---............... - 0x3f, 0xcc, 0x00, 0x00, // --OOOOOOOO--OO---............... - 0x3f, 0xcc, 0x00, 0x00, // --OOOOOOOO--OO---............... - 0x1f, 0xcc, 0x00, 0x00, // ---OOOOOOO--OO---............... - 0x0f, 0xcc, 0x00, 0x00, // ----OOOOOO--OO---............... - 0x07, 0xcc, 0x00, 0x00, // -----OOOOO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 183, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 184, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x03, 0x00, 0x00, 0x00, // ------OO-----................... - 0x01, 0x80, 0x00, 0x00, // -------OO----................... - 0x01, 0x80, 0x00, 0x00, // -------OO----................... - 0x0f, 0x80, 0x00, 0x00, // ----OOOOO----................... - 0x0f, 0x00, 0x00, 0x00, // ----OOOO-----................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 185, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO---...................... - 0x36, 0x00, 0x00, 0x00, // --OO-OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 186, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x0f, 0x00, 0x00, 0x00, // ----OOOO----.................... - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO--.................... - 0x30, 0xc0, 0x00, 0x00, // --OO----OO--.................... - 0x60, 0x60, 0x00, 0x00, // -OO------OO-.................... - 0x60, 0x60, 0x00, 0x00, // -OO------OO-.................... - 0x60, 0x60, 0x00, 0x00, // -OO------OO-.................... - 0x60, 0x60, 0x00, 0x00, // -OO------OO-.................... - 0x30, 0xc0, 0x00, 0x00, // --OO----OO--.................... - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO--.................... - 0x0f, 0x00, 0x00, 0x00, // ----OOOO----.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO--.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 187, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x30, 0xc0, 0x00, 0x00, // --OO----OO------................ - 0x38, 0xe0, 0x00, 0x00, // --OOO---OOO-----................ - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO----................ - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO---................ - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO--................ - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO--................ - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO---................ - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO----................ - 0x38, 0xe0, 0x00, 0x00, // --OOO---OOO-----................ - 0x30, 0xc0, 0x00, 0x00, // --OO----OO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 188, char width: 25 - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x1e, 0x00, 0xe0, 0x00, // ---OOOO---------OOO------....... - 0x36, 0x00, 0xc0, 0x00, // --OO-OO---------OO-------....... - 0x06, 0x01, 0xc0, 0x00, // -----OO--------OOO-------....... - 0x06, 0x03, 0x80, 0x00, // -----OO-------OOO--------....... - 0x06, 0x03, 0x00, 0x00, // -----OO-------OO---------....... - 0x06, 0x07, 0x00, 0x00, // -----OO------OOO---------....... - 0x06, 0x06, 0x00, 0x00, // -----OO------OO----------....... - 0x06, 0x0c, 0x00, 0x00, // -----OO-----OO-----------....... - 0x06, 0x1c, 0x06, 0x00, // -----OO----OOO-------OO--....... - 0x06, 0x18, 0x0e, 0x00, // -----OO----OO-------OOO--....... - 0x3f, 0xf8, 0x1e, 0x00, // --OOOOOOOOOOO------OOOO--....... - 0x00, 0x30, 0x36, 0x00, // ----------OO------OO-OO--....... - 0x00, 0x60, 0x66, 0x00, // ---------OO------OO--OO--....... - 0x00, 0xe0, 0x46, 0x00, // --------OOO------O---OO--....... - 0x00, 0xc0, 0xc6, 0x00, // --------OO------OO---OO--....... - 0x01, 0xc0, 0xff, 0x80, // -------OOO------OOOOOOOOO....... - 0x03, 0x80, 0x06, 0x00, // ------OOO------------OO--....... - 0x03, 0x00, 0x06, 0x00, // ------OO-------------OO--....... - 0x07, 0x00, 0x06, 0x00, // -----OOO-------------OO--....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - - // ASCII: 189, char width: 25 - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x1e, 0x00, 0xe0, 0x00, // ---OOOO---------OOO------....... - 0x36, 0x00, 0xc0, 0x00, // --OO-OO---------OO-------....... - 0x06, 0x01, 0xc0, 0x00, // -----OO--------OOO-------....... - 0x06, 0x03, 0x80, 0x00, // -----OO-------OOO--------....... - 0x06, 0x03, 0x00, 0x00, // -----OO-------OO---------....... - 0x06, 0x07, 0x00, 0x00, // -----OO------OOO---------....... - 0x06, 0x06, 0x00, 0x00, // -----OO------OO----------....... - 0x06, 0x0c, 0x00, 0x00, // -----OO-----OO-----------....... - 0x06, 0x1c, 0x7c, 0x00, // -----OO----OOO---OOOOO---....... - 0x06, 0x18, 0x86, 0x00, // -----OO----OO---O----OO--....... - 0x3f, 0xf8, 0x03, 0x00, // --OOOOOOOOOOO---------OO-....... - 0x00, 0x30, 0x03, 0x00, // ----------OO----------OO-....... - 0x00, 0x60, 0x07, 0x00, // ---------OO----------OOO-....... - 0x00, 0xe0, 0x06, 0x00, // --------OOO----------OO--....... - 0x00, 0xc0, 0x0c, 0x00, // --------OO----------OO---....... - 0x01, 0xc0, 0x1c, 0x00, // -------OOO---------OOO---....... - 0x03, 0x80, 0x38, 0x00, // ------OOO---------OOO----....... - 0x03, 0x00, 0x60, 0x00, // ------OO---------OO------....... - 0x07, 0x00, 0xff, 0x00, // -----OOO--------OOOOOOOO-....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - - // ASCII: 190, char width: 25 - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x3e, 0x00, 0xe0, 0x00, // --OOOOO---------OOO------....... - 0x43, 0x80, 0xc0, 0x00, // -O----OOO-------OO-------....... - 0x01, 0x81, 0xc0, 0x00, // -------OO------OOO-------....... - 0x03, 0x83, 0x80, 0x00, // ------OOO-----OOO--------....... - 0x1e, 0x03, 0x00, 0x00, // ---OOOO-------OO---------....... - 0x03, 0x07, 0x00, 0x00, // ------OO-----OOO---------....... - 0x01, 0x86, 0x00, 0x00, // -------OO----OO----------....... - 0x01, 0x8c, 0x00, 0x00, // -------OO---OO-----------....... - 0x01, 0x9c, 0x06, 0x00, // -------OO--OOO-------OO--....... - 0x43, 0x18, 0x0e, 0x00, // -O----OO---OO-------OOO--....... - 0x3e, 0x38, 0x1e, 0x00, // --OOOOO---OOO------OOOO--....... - 0x00, 0x30, 0x36, 0x00, // ----------OO------OO-OO--....... - 0x00, 0x60, 0x66, 0x00, // ---------OO------OO--OO--....... - 0x00, 0xe0, 0x46, 0x00, // --------OOO------O---OO--....... - 0x00, 0xc0, 0xc6, 0x00, // --------OO------OO---OO--....... - 0x01, 0xc0, 0xff, 0x80, // -------OOO------OOOOOOOOO....... - 0x03, 0x80, 0x06, 0x00, // ------OOO------------OO--....... - 0x03, 0x00, 0x06, 0x00, // ------OO-------------OO--....... - 0x07, 0x00, 0x06, 0x00, // -----OOO-------------OO--....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - - // ASCII: 191, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x03, 0x80, 0x00, 0x00, // ------OOO-----.................. - 0x03, 0x80, 0x00, 0x00, // ------OOO-----.................. - 0x03, 0x80, 0x00, 0x00, // ------OOO-----.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x03, 0x80, 0x00, 0x00, // ------OOO-----.................. - 0x03, 0x80, 0x00, 0x00, // ------OOO-----.................. - 0x03, 0x80, 0x00, 0x00, // ------OOO-----.................. - 0x03, 0x80, 0x00, 0x00, // ------OOO-----.................. - 0x07, 0x00, 0x00, 0x00, // -----OOO------.................. - 0x06, 0x00, 0x00, 0x00, // -----OO-------.................. - 0x0c, 0x00, 0x00, 0x00, // ----OO--------.................. - 0x18, 0x00, 0x00, 0x00, // ---OO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x10, 0x00, 0x00, // --OOO------O--.................. - 0x3c, 0x30, 0x00, 0x00, // --OOOO----OO--.................. - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO---.................. - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO----.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 192, char width: 18 - 0x07, 0x00, 0x00, 0x00, // -----OOO----------.............. - 0x03, 0x80, 0x00, 0x00, // ------OOO---------.............. - 0x01, 0x80, 0x00, 0x00, // -------OO---------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0xe0, 0x03, 0x80, 0x00, // OOO-----------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 193, char width: 18 - 0x00, 0x60, 0x00, 0x00, // ---------OO-------.............. - 0x00, 0xc0, 0x00, 0x00, // --------OO--------.............. - 0x01, 0x80, 0x00, 0x00, // -------OO---------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0xe0, 0x03, 0x80, 0x00, // OOO-----------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 194, char width: 18 - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0x60, 0x00, 0x00, // ------OO-OO-------.............. - 0x06, 0x30, 0x00, 0x00, // -----OO---OO------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0xe0, 0x03, 0x80, 0x00, // OOO-----------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 195, char width: 18 - 0x03, 0xb0, 0x00, 0x00, // ------OOO-OO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x06, 0xe0, 0x00, 0x00, // -----OO-OOO-------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0xe0, 0x03, 0x80, 0x00, // OOO-----------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 196, char width: 18 - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0xe0, 0x03, 0x80, 0x00, // OOO-----------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 197, char width: 18 - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x06, 0x70, 0x00, 0x00, // -----OO--OOO------.............. - 0x06, 0x30, 0x00, 0x00, // -----OO---OO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x1e, 0x3c, 0x00, 0x00, // ---OOOO---OOOO----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO----.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0xe0, 0x03, 0x80, 0x00, // OOO-----------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 198, char width: 25 - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x01, 0xff, 0xfe, 0x00, // -------OOOOOOOOOOOOOOOO--....... - 0x01, 0xff, 0xfe, 0x00, // -------OOOOOOOOOOOOOOOO--....... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-----------....... - 0x03, 0xdc, 0x00, 0x00, // ------OOOO-OOO-----------....... - 0x03, 0x9c, 0x00, 0x00, // ------OOO--OOO-----------....... - 0x07, 0x9c, 0x00, 0x00, // -----OOOO--OOO-----------....... - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----------....... - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----------....... - 0x0f, 0x1f, 0xfc, 0x00, // ----OOOO---OOOOOOOOOOO---....... - 0x0e, 0x1f, 0xfc, 0x00, // ----OOO----OOOOOOOOOOO---....... - 0x1e, 0x1c, 0x00, 0x00, // ---OOOO----OOO-----------....... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO-----------....... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----------....... - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO-----------....... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-----------....... - 0x78, 0x1c, 0x00, 0x00, // -OOOO------OOO-----------....... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO-----------....... - 0x70, 0x1f, 0xfe, 0x00, // -OOO-------OOOOOOOOOOOO--....... - 0xe0, 0x1f, 0xfe, 0x00, // OOO--------OOOOOOOOOOOO--....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - - // ASCII: 199, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-----.............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO---.............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO--.............. - 0x1c, 0x03, 0x00, 0x00, // ---OOO--------OO--.............. - 0x38, 0x00, 0x00, 0x00, // --OOO-------------.............. - 0x38, 0x00, 0x00, 0x00, // --OOO-------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x38, 0x00, 0x00, 0x00, // --OOO-------------.............. - 0x38, 0x00, 0x00, 0x00, // --OOO-------------.............. - 0x1c, 0x03, 0x00, 0x00, // ---OOO--------OO--.............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO--.............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO---.............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-----.............. - 0x00, 0x30, 0x00, 0x00, // ----------OO------.............. - 0x00, 0x18, 0x00, 0x00, // -----------OO-----.............. - 0x00, 0x18, 0x00, 0x00, // -----------OO-----.............. - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO-----.............. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 200, char width: 16 - 0x07, 0x00, 0x00, 0x00, // -----OOO--------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 201, char width: 16 - 0x00, 0x60, 0x00, 0x00, // ---------OO-----................ - 0x00, 0xc0, 0x00, 0x00, // --------OO------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 202, char width: 16 - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-----................ - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO----................ - 0x06, 0x18, 0x00, 0x00, // -----OO----OO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 203, char width: 16 - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO---................ - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO---................ - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 204, char width: 8 - 0xe0, 0x00, 0x00, 0x00, // OOO-----........................ - 0x70, 0x00, 0x00, 0x00, // -OOO----........................ - 0x30, 0x00, 0x00, 0x00, // --OO----........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 205, char width: 8 - 0x0c, 0x00, 0x00, 0x00, // ----OO--........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x30, 0x00, 0x00, 0x00, // --OO----........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 206, char width: 8 - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x6c, 0x00, 0x00, 0x00, // -OO-OO--........................ - 0xc7, 0x00, 0x00, 0x00, // OO---OOO........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 207, char width: 8 - 0xee, 0x00, 0x00, 0x00, // OOO-OOO-........................ - 0xee, 0x00, 0x00, 0x00, // OOO-OOO-........................ - 0xee, 0x00, 0x00, 0x00, // OOO-OOO-........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 208, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO-------............ - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO-----............ - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO---............ - 0x1c, 0x03, 0xc0, 0x00, // ---OOO--------OOOO--............ - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO--............ - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO--............ - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO-............ - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO-............ - 0xff, 0xc0, 0xe0, 0x00, // OOOOOOOOOO------OOO-............ - 0xff, 0xc0, 0xe0, 0x00, // OOOOOOOOOO------OOO-............ - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO-............ - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO-............ - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO-............ - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO--............ - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO--............ - 0x1c, 0x03, 0xc0, 0x00, // ---OOO--------OOOO--............ - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO---............ - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO-----............ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 209, char width: 19 - 0x03, 0x98, 0x00, 0x00, // ------OOO--OO------............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO------............. - 0x06, 0x70, 0x00, 0x00, // -----OO--OOO-------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x3e, 0x07, 0x00, 0x00, // --OOOOO------OOO---............. - 0x3e, 0x07, 0x00, 0x00, // --OOOOO------OOO---............. - 0x3f, 0x07, 0x00, 0x00, // --OOOOOO-----OOO---............. - 0x3f, 0x07, 0x00, 0x00, // --OOOOOO-----OOO---............. - 0x3f, 0x87, 0x00, 0x00, // --OOOOOOO----OOO---............. - 0x3b, 0x87, 0x00, 0x00, // --OOO-OOO----OOO---............. - 0x3b, 0xc7, 0x00, 0x00, // --OOO-OOOO---OOO---............. - 0x39, 0xc7, 0x00, 0x00, // --OOO--OOO---OOO---............. - 0x39, 0xe7, 0x00, 0x00, // --OOO--OOOO--OOO---............. - 0x38, 0xe7, 0x00, 0x00, // --OOO---OOO--OOO---............. - 0x38, 0xf7, 0x00, 0x00, // --OOO---OOOO-OOO---............. - 0x38, 0x7f, 0x00, 0x00, // --OOO----OOOOOOO---............. - 0x38, 0x7f, 0x00, 0x00, // --OOO----OOOOOOO---............. - 0x38, 0x3f, 0x00, 0x00, // --OOO-----OOOOOO---............. - 0x38, 0x3f, 0x00, 0x00, // --OOO-----OOOOOO---............. - 0x38, 0x1f, 0x00, 0x00, // --OOO------OOOOO---............. - 0x38, 0x1f, 0x00, 0x00, // --OOO------OOOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 210, char width: 20 - 0x01, 0xc0, 0x00, 0x00, // -------OOO----------............ - 0x00, 0xe0, 0x00, 0x00, // --------OOO---------............ - 0x00, 0x60, 0x00, 0x00, // ---------OO---------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 211, char width: 20 - 0x00, 0x18, 0x00, 0x00, // -----------OO-------............ - 0x00, 0x30, 0x00, 0x00, // ----------OO--------............ - 0x00, 0x60, 0x00, 0x00, // ---------OO---------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 212, char width: 20 - 0x00, 0xf0, 0x00, 0x00, // --------OOOO--------............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x03, 0x0c, 0x00, 0x00, // ------OO----OO------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 213, char width: 20 - 0x01, 0xcc, 0x00, 0x00, // -------OOO--OO------............ - 0x03, 0xfc, 0x00, 0x00, // ------OOOOOOOO------............ - 0x03, 0x38, 0x00, 0x00, // ------OO--OOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 214, char width: 20 - 0x03, 0x9c, 0x00, 0x00, // ------OOO--OOO------............ - 0x03, 0x9c, 0x00, 0x00, // ------OOO--OOO------............ - 0x03, 0x9c, 0x00, 0x00, // ------OOO--OOO------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 215, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x04, 0x00, 0x40, 0x00, // -----O-----------O----.......... - 0x0e, 0x00, 0xe0, 0x00, // ----OOO---------OOO---.......... - 0x07, 0x01, 0xc0, 0x00, // -----OOO-------OOO----.......... - 0x03, 0x83, 0x80, 0x00, // ------OOO-----OOO-----.......... - 0x01, 0xc7, 0x00, 0x00, // -------OOO---OOO------.......... - 0x00, 0xee, 0x00, 0x00, // --------OOO-OOO-------.......... - 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO--------.......... - 0x00, 0x38, 0x00, 0x00, // ----------OOO---------.......... - 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO--------.......... - 0x00, 0xee, 0x00, 0x00, // --------OOO-OOO-------.......... - 0x01, 0xc7, 0x00, 0x00, // -------OOO---OOO------.......... - 0x03, 0x83, 0x80, 0x00, // ------OOO-----OOO-----.......... - 0x07, 0x01, 0xc0, 0x00, // -----OOO-------OOO----.......... - 0x0e, 0x00, 0xe0, 0x00, // ----OOO---------OOO---.......... - 0x04, 0x00, 0x40, 0x00, // -----O-----------O----.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 216, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xf8, 0x60, 0x00, // -------OOOOOO----OO-............ - 0x07, 0xfe, 0xc0, 0x00, // -----OOOOOOOOOO-OO--............ - 0x1f, 0x0f, 0x80, 0x00, // ---OOOOO----OOOOO---............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x38, 0x07, 0xc0, 0x00, // --OOO--------OOOOO--............ - 0x38, 0x0f, 0xc0, 0x00, // --OOO-------OOOOOO--............ - 0x70, 0x1c, 0xe0, 0x00, // -OOO-------OOO--OOO-............ - 0x70, 0x18, 0xe0, 0x00, // -OOO-------OO---OOO-............ - 0x70, 0x30, 0xe0, 0x00, // -OOO------OO----OOO-............ - 0x70, 0x60, 0xe0, 0x00, // -OOO-----OO-----OOO-............ - 0x70, 0xc0, 0xe0, 0x00, // -OOO----OO------OOO-............ - 0x71, 0x80, 0xe0, 0x00, // -OOO---OO-------OOO-............ - 0x73, 0x80, 0xe0, 0x00, // -OOO--OOO-------OOO-............ - 0x3f, 0x01, 0xc0, 0x00, // --OOOOOO-------OOO--............ - 0x3e, 0x01, 0xc0, 0x00, // --OOOOO--------OOO--............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x1f, 0x0f, 0x80, 0x00, // ---OOOOO----OOOOO---............ - 0x37, 0xfe, 0x00, 0x00, // --OO-OOOOOOOOOO-----............ - 0x61, 0xf8, 0x00, 0x00, // -OO----OOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 217, char width: 19 - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x00, 0xc0, 0x00, 0x00, // --------OO---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x0e, 0x07, 0x00, 0x00, // ----OOO------OOO---............. - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO---............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO----............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 218, char width: 19 - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0xc0, 0x00, 0x00, // --------OO---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x0e, 0x07, 0x00, 0x00, // ----OOO------OOO---............. - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO---............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO----............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 219, char width: 19 - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-------............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x03, 0x0c, 0x00, 0x00, // ------OO----OO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x0e, 0x07, 0x00, 0x00, // ----OOO------OOO---............. - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO---............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO----............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 220, char width: 19 - 0x03, 0x9c, 0x00, 0x00, // ------OOO--OOO-----............. - 0x03, 0x9c, 0x00, 0x00, // ------OOO--OOO-----............. - 0x03, 0x9c, 0x00, 0x00, // ------OOO--OOO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x0e, 0x07, 0x00, 0x00, // ----OOO------OOO---............. - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO---............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO----............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 221, char width: 16 - 0x00, 0xc0, 0x00, 0x00, // --------OO------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x03, 0x00, 0x00, 0x00, // ------OO--------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0xf0, 0x07, 0x80, 0x00, // OOOO---------OOOO............... - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO................ - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO-................ - 0x3c, 0x1e, 0x00, 0x00, // --OOOO-----OOOO-................ - 0x1e, 0x3c, 0x00, 0x00, // ---OOOO---OOOO--................ - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO---................ - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO----................ - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO----................ - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-----................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 222, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 223, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO----................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x38, 0xf8, 0x00, 0x00, // --OOO---OOOOO---................ - 0x39, 0xe0, 0x00, 0x00, // --OOO--OOOO-----................ - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO------................ - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO------................ - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO------................ - 0x38, 0xc0, 0x00, 0x00, // --OOO---OO------................ - 0x38, 0x70, 0x00, 0x00, // --OOO----OOO----................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO-................ - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO-................ - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO-................ - 0x3a, 0x1e, 0x00, 0x00, // --OOO-O----OOOO-................ - 0x3b, 0xfc, 0x00, 0x00, // --OOO-OOOOOOOO--................ - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 224, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO----------................ - 0x0e, 0x00, 0x00, 0x00, // ----OOO---------................ - 0x06, 0x00, 0x00, 0x00, // -----OO---------................ - 0x03, 0x00, 0x00, 0x00, // ------OO--------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x20, 0xf0, 0x00, 0x00, // --O-----OOOO----................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x78, 0x38, 0x00, 0x00, // -OOOO-----OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x78, 0x00, 0x00, // -OOO-----OOOO---................ - 0x78, 0xf8, 0x00, 0x00, // -OOOO---OOOOO---................ - 0x3f, 0xb8, 0x00, 0x00, // --OOOOOOO-OOO---................ - 0x1f, 0x38, 0x00, 0x00, // ---OOOOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 225, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x70, 0x00, 0x00, // ---------OOO----................ - 0x00, 0xe0, 0x00, 0x00, // --------OOO-----................ - 0x00, 0xc0, 0x00, 0x00, // --------OO------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x03, 0x00, 0x00, 0x00, // ------OO--------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x20, 0xf0, 0x00, 0x00, // --O-----OOOO----................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x78, 0x38, 0x00, 0x00, // -OOOO-----OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x78, 0x00, 0x00, // -OOO-----OOOO---................ - 0x78, 0xf8, 0x00, 0x00, // -OOOO---OOOOO---................ - 0x3f, 0xb8, 0x00, 0x00, // --OOOOOOO-OOO---................ - 0x1f, 0x38, 0x00, 0x00, // ---OOOOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 226, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x03, 0x00, 0x00, 0x00, // ------OO--------................ - 0x07, 0x80, 0x00, 0x00, // -----OOOO-------................ - 0x07, 0x80, 0x00, 0x00, // -----OOOO-------................ - 0x0c, 0xc0, 0x00, 0x00, // ----OO--OO------................ - 0x18, 0x60, 0x00, 0x00, // ---OO----OO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x20, 0xf0, 0x00, 0x00, // --O-----OOOO----................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x78, 0x38, 0x00, 0x00, // -OOOO-----OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x78, 0x00, 0x00, // -OOO-----OOOO---................ - 0x78, 0xf8, 0x00, 0x00, // -OOOO---OOOOO---................ - 0x3f, 0xb8, 0x00, 0x00, // --OOOOOOO-OOO---................ - 0x1f, 0x38, 0x00, 0x00, // ---OOOOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 227, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x0e, 0x60, 0x00, 0x00, // ----OOO--OO-----................ - 0x1e, 0x60, 0x00, 0x00, // ---OOOO--OO-----................ - 0x19, 0xe0, 0x00, 0x00, // ---OO--OOOO-----................ - 0x19, 0xc0, 0x00, 0x00, // ---OO--OOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x20, 0xf0, 0x00, 0x00, // --O-----OOOO----................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x78, 0x38, 0x00, 0x00, // -OOOO-----OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x78, 0x00, 0x00, // -OOO-----OOOO---................ - 0x78, 0xf8, 0x00, 0x00, // -OOOO---OOOOO---................ - 0x3f, 0xb8, 0x00, 0x00, // --OOOOOOO-OOO---................ - 0x1f, 0x38, 0x00, 0x00, // ---OOOOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 228, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1c, 0xe0, 0x00, 0x00, // ---OOO--OOO-----................ - 0x1c, 0xe0, 0x00, 0x00, // ---OOO--OOO-----................ - 0x1c, 0xe0, 0x00, 0x00, // ---OOO--OOO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x20, 0xf0, 0x00, 0x00, // --O-----OOOO----................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x78, 0x38, 0x00, 0x00, // -OOOO-----OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x78, 0x00, 0x00, // -OOO-----OOOO---................ - 0x78, 0xf8, 0x00, 0x00, // -OOOO---OOOOO---................ - 0x3f, 0xb8, 0x00, 0x00, // --OOOOOOO-OOO---................ - 0x1f, 0x38, 0x00, 0x00, // ---OOOOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 229, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x0c, 0xe0, 0x00, 0x00, // ----OO--OOO-----................ - 0x0c, 0x60, 0x00, 0x00, // ----OO---OO-----................ - 0x0c, 0xe0, 0x00, 0x00, // ----OO--OOO-----................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x20, 0xf0, 0x00, 0x00, // --O-----OOOO----................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x78, 0x38, 0x00, 0x00, // -OOOO-----OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x78, 0x00, 0x00, // -OOO-----OOOO---................ - 0x78, 0xf8, 0x00, 0x00, // -OOOO---OOOOO---................ - 0x3f, 0xb8, 0x00, 0x00, // --OOOOOOO-OOO---................ - 0x1f, 0x38, 0x00, 0x00, // ---OOOOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 230, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x1f, 0xc3, 0xf0, 0x00, // ---OOOOOOO----OOOOOO------...... - 0x3f, 0xff, 0xf8, 0x00, // --OOOOOOOOOOOOOOOOOOO-----...... - 0x20, 0xfe, 0x3c, 0x00, // --O-----OOOOOOO---OOOO----...... - 0x00, 0x3c, 0x1c, 0x00, // ----------OOOO-----OOO----...... - 0x00, 0x38, 0x0e, 0x00, // ----------OOO-------OOO---...... - 0x0f, 0xf8, 0x0e, 0x00, // ----OOOOOOOOO-------OOO---...... - 0x3f, 0xff, 0xfe, 0x00, // --OOOOOOOOOOOOOOOOOOOOO---...... - 0x78, 0x3f, 0xfe, 0x00, // -OOOO-----OOOOOOOOOOOOO---...... - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO-------------...... - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO-------------...... - 0x70, 0x7c, 0x00, 0x00, // -OOO-----OOOOO------------...... - 0x78, 0xfe, 0x04, 0x00, // -OOOO---OOOOOOO------O----...... - 0x3f, 0xcf, 0xfc, 0x00, // --OOOOOOOO--OOOOOOOOOO----...... - 0x1f, 0x03, 0xf0, 0x00, // ---OOOOO------OOOOOO------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 231, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO---.................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO--.................. - 0x3c, 0x10, 0x00, 0x00, // --OOOO-----O--.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x3c, 0x10, 0x00, 0x00, // --OOOO-----O--.................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO--.................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO---.................. - 0x00, 0xc0, 0x00, 0x00, // --------OO----.................. - 0x00, 0x60, 0x00, 0x00, // ---------OO---.................. - 0x00, 0x60, 0x00, 0x00, // ---------OO---.................. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO---.................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO----.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 232, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x0e, 0x00, 0x00, 0x00, // ----OOO---------................ - 0x07, 0x00, 0x00, 0x00, // -----OOO--------................ - 0x03, 0x00, 0x00, 0x00, // ------OO--------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x00, 0xc0, 0x00, 0x00, // --------OO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3c, 0x08, 0x00, 0x00, // --OOOO------O---................ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO---................ - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 233, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x70, 0x00, 0x00, // ---------OOO----................ - 0x00, 0x60, 0x00, 0x00, // ---------OO-----................ - 0x00, 0xc0, 0x00, 0x00, // --------OO------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3c, 0x08, 0x00, 0x00, // --OOOO------O---................ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO---................ - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 234, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x06, 0xc0, 0x00, 0x00, // -----OO-OO------................ - 0x0c, 0x60, 0x00, 0x00, // ----OO---OO-----................ - 0x18, 0x30, 0x00, 0x00, // ---OO-----OO----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3c, 0x08, 0x00, 0x00, // --OOOO------O---................ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO---................ - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 235, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO---................ - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO---................ - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3c, 0x08, 0x00, 0x00, // --OOOO------O---................ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO---................ - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 236, char width: 7 - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0xc0, 0x00, 0x00, 0x00, // OO-----......................... - 0xe0, 0x00, 0x00, 0x00, // OOO----......................... - 0x60, 0x00, 0x00, 0x00, // -OO----......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x18, 0x00, 0x00, 0x00, // ---OO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - - // ASCII: 237, char width: 7 - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x07, 0x00, 0x00, 0x00, // -----OOO........................ - 0x0e, 0x00, 0x00, 0x00, // ----OOO......................... - 0x0c, 0x00, 0x00, 0x00, // ----OO-......................... - 0x18, 0x00, 0x00, 0x00, // ---OO--......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - - // ASCII: 238, char width: 7 - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x7c, 0x00, 0x00, 0x00, // -OOOOO-......................... - 0x6c, 0x00, 0x00, 0x00, // -OO-OO-......................... - 0xc6, 0x00, 0x00, 0x00, // OO---OO......................... - 0x83, 0x00, 0x00, 0x00, // O-----OO........................ - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - - // ASCII: 239, char width: 7 - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0xee, 0x00, 0x00, 0x00, // OOO-OOO......................... - 0xee, 0x00, 0x00, 0x00, // OOO-OOO......................... - 0xee, 0x00, 0x00, 0x00, // OOO-OOO......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - - // ASCII: 240, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x0e, 0x00, 0x00, 0x00, // ----OOO---------................ - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO----................ - 0x03, 0xc0, 0x00, 0x00, // ------OOOO------................ - 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-------................ - 0x19, 0xc0, 0x00, 0x00, // ---OO--OOO------................ - 0x00, 0xe0, 0x00, 0x00, // --------OOO-----................ - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO----................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x38, 0x00, 0x00, // --OOOO----OOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 241, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0x30, 0x00, 0x00, // -----OOO--OO----................ - 0x0f, 0x30, 0x00, 0x00, // ----OOOO--OO----................ - 0x0c, 0xf0, 0x00, 0x00, // ----OO--OOOO----................ - 0x0c, 0xe0, 0x00, 0x00, // ----OO--OOO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO----................ - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO---................ - 0x3e, 0x38, 0x00, 0x00, // --OOOOO---OOO---................ - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 242, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO----------................ - 0x0e, 0x00, 0x00, 0x00, // ----OOO---------................ - 0x06, 0x00, 0x00, 0x00, // -----OO---------................ - 0x03, 0x00, 0x00, 0x00, // ------OO--------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 243, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x70, 0x00, 0x00, // ---------OOO----................ - 0x00, 0xe0, 0x00, 0x00, // --------OOO-----................ - 0x00, 0xc0, 0x00, 0x00, // --------OO------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x03, 0x00, 0x00, 0x00, // ------OO--------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 244, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x06, 0xc0, 0x00, 0x00, // -----OO-OO------................ - 0x04, 0x40, 0x00, 0x00, // -----O---O------................ - 0x0c, 0x60, 0x00, 0x00, // ----OO---OO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 245, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x06, 0x60, 0x00, 0x00, // -----OO--OO-----................ - 0x0f, 0x60, 0x00, 0x00, // ----OOOO-OO-----................ - 0x0d, 0xe0, 0x00, 0x00, // ----OO-OOOO-----................ - 0x0c, 0xc0, 0x00, 0x00, // ----OO--OO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 246, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO----................ - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO----................ - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 247, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x38, 0x00, 0x00, // ----------OOO---------.......... - 0x00, 0x38, 0x00, 0x00, // ----------OOO---------.......... - 0x00, 0x38, 0x00, 0x00, // ----------OOO---------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO--.......... - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO--.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x38, 0x00, 0x00, // ----------OOO---------.......... - 0x00, 0x38, 0x00, 0x00, // ----------OOO---------.......... - 0x00, 0x38, 0x00, 0x00, // ----------OOO---------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 248, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x04, 0x00, 0x00, // -------------O--................ - 0x07, 0xcc, 0x00, 0x00, // -----OOOOO--OO--................ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x78, 0x00, 0x00, // --OOO----OOOO---................ - 0x70, 0x7c, 0x00, 0x00, // -OOO-----OOOOO--................ - 0x70, 0xdc, 0x00, 0x00, // -OOO----OO-OOO--................ - 0x71, 0x9c, 0x00, 0x00, // -OOO---OO--OOO--................ - 0x73, 0x1c, 0x00, 0x00, // -OOO--OO---OOO--................ - 0x76, 0x1c, 0x00, 0x00, // -OOO-OO----OOO--................ - 0x7c, 0x1c, 0x00, 0x00, // -OOOOO-----OOO--................ - 0x3c, 0x38, 0x00, 0x00, // --OOOO----OOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO----................ - 0x67, 0xc0, 0x00, 0x00, // -OO--OOOOO------................ - 0x40, 0x00, 0x00, 0x00, // -O--------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 249, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x0e, 0x00, 0x00, 0x00, // ----OOO---------................ - 0x07, 0x00, 0x00, 0x00, // -----OOO--------................ - 0x03, 0x00, 0x00, 0x00, // ------OO--------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x00, 0xc0, 0x00, 0x00, // --------OO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO--................ - 0x1c, 0x7c, 0x00, 0x00, // ---OOO---OOOOO--................ - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO--................ - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 250, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x70, 0x00, 0x00, // ---------OOO----................ - 0x00, 0x60, 0x00, 0x00, // ---------OO-----................ - 0x00, 0xc0, 0x00, 0x00, // --------OO------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO--................ - 0x1c, 0x7c, 0x00, 0x00, // ---OOO---OOOOO--................ - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO--................ - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 251, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x03, 0xc0, 0x00, 0x00, // ------OOOO------................ - 0x03, 0xc0, 0x00, 0x00, // ------OOOO------................ - 0x06, 0x60, 0x00, 0x00, // -----OO--OO-----................ - 0x0c, 0x30, 0x00, 0x00, // ----OO----OO----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO--................ - 0x1c, 0x7c, 0x00, 0x00, // ---OOO---OOOOO--................ - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO--................ - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 252, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x0e, 0x70, 0x00, 0x00, // ----OOO--OOO----................ - 0x0e, 0x70, 0x00, 0x00, // ----OOO--OOO----................ - 0x0e, 0x70, 0x00, 0x00, // ----OOO--OOO----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO--................ - 0x1c, 0x7c, 0x00, 0x00, // ---OOO---OOOOO--................ - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO--................ - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 253, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x70, 0x00, 0x00, // ---------OOO---................. - 0x00, 0xe0, 0x00, 0x00, // --------OOO----................. - 0x00, 0xc0, 0x00, 0x00, // --------OO-----................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x03, 0x00, 0x00, 0x00, // ------OO-------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x70, 0x1e, 0x00, 0x00, // -OOO-------OOOO................. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-................. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-................. - 0x3c, 0x3c, 0x00, 0x00, // --OOOO----OOOO-................. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO--................. - 0x1e, 0x78, 0x00, 0x00, // ---OOOO--OOOO--................. - 0x0e, 0x70, 0x00, 0x00, // ----OOO--OOO---................. - 0x0e, 0xf0, 0x00, 0x00, // ----OOO-OOOO---................. - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO----................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO-----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x03, 0x80, 0x00, 0x00, // ------OOO------................. - 0x07, 0x80, 0x00, 0x00, // -----OOOO------................. - 0x07, 0x00, 0x00, 0x00, // -----OOO-------................. - 0x0f, 0x00, 0x00, 0x00, // ----OOOO-------................. - 0x3e, 0x00, 0x00, 0x00, // --OOOOO--------................. - 0x3c, 0x00, 0x00, 0x00, // --OOOO---------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 254, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO-----............... - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO----............... - 0x3e, 0x3c, 0x00, 0x00, // --OOOOO---OOOO---............... - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO---............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO---............... - 0x3e, 0x3c, 0x00, 0x00, // --OOOOO---OOOO---............... - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO----............... - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO-----............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 255, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x0e, 0xe0, 0x00, 0x00, // ----OOO-OOO----................. - 0x0e, 0xe0, 0x00, 0x00, // ----OOO-OOO----................. - 0x0e, 0xe0, 0x00, 0x00, // ----OOO-OOO----................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x70, 0x1e, 0x00, 0x00, // -OOO-------OOOO................. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-................. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-................. - 0x3c, 0x3c, 0x00, 0x00, // --OOOO----OOOO-................. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO--................. - 0x1e, 0x78, 0x00, 0x00, // ---OOOO--OOOO--................. - 0x0e, 0x70, 0x00, 0x00, // ----OOO--OOO---................. - 0x0e, 0xf0, 0x00, 0x00, // ----OOO-OOOO---................. - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO----................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO-----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x03, 0x80, 0x00, 0x00, // ------OOO------................. - 0x07, 0x80, 0x00, 0x00, // -----OOOO------................. - 0x07, 0x00, 0x00, 0x00, // -----OOO-------................. - 0x0f, 0x00, 0x00, 0x00, // ----OOOO-------................. - 0x3e, 0x00, 0x00, 0x00, // --OOOOO--------................. - 0x3c, 0x00, 0x00, 0x00, // --OOOO---------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. -}; - -static const uint8_t dejavu_30_widths[224] = -{ - 8, 10, 12, 22, 17, 25, 20, 7, - 10, 10, 13, 22, 8, 9, 8, 9, - 17, 17, 17, 17, 17, 17, 17, 17, - 17, 17, 9, 9, 22, 22, 22, 14, - 26, 18, 18, 18, 20, 16, 15, 20, - 20, 8, 8, 17, 14, 22, 19, 20, - 16, 20, 18, 17, 16, 19, 18, 26, - 18, 16, 18, 10, 9, 10, 22, 13, - 13, 16, 17, 14, 17, 16, 9, 17, - 16, 7, 7, 15, 7, 25, 16, 16, - 17, 17, 11, 14, 10, 16, 15, 21, - 15, 15, 14, 17, 9, 17, 22, 8, - 8, 8, 8, 8, 8, 8, 8, 8, - 8, 8, 8, 8, 8, 8, 8, 8, - 8, 8, 8, 8, 8, 8, 8, 8, - 8, 8, 8, 8, 8, 8, 8, 8, - 8, 10, 17, 17, 17, 17, 9, 13, - 13, 26, 12, 16, 22, 9, 26, 13, - 13, 22, 10, 10, 13, 17, 17, 8, - 13, 10, 12, 16, 25, 25, 25, 14, - 18, 18, 18, 18, 18, 18, 25, 18, - 16, 16, 16, 16, 8, 8, 8, 8, - 20, 19, 20, 20, 20, 20, 20, 22, - 20, 19, 19, 19, 19, 16, 16, 16, - 16, 16, 16, 16, 16, 16, 26, 14, - 16, 16, 16, 16, 7, 7, 7, 7, - 16, 16, 16, 16, 16, 16, 16, 22, - 16, 16, 16, 16, 16, 15, 17, 15, -}; - -static const font_t dejavu_30_dsc = -{ - 224, // Letter count - 32, // First ascii code - 4, // Letters width (bytes) - 30, // Letters height (row) - 0, // Fixed width or 0 if variable - dejavu_30_widths, - dejavu_30_bitmaps -}; - -const font_t * dejavu_30_get_dsc(void) -{ - return &dejavu_30_dsc; -} - - -#endif \ No newline at end of file diff --git a/lv_misc/fonts/dejavu_30.h b/lv_misc/fonts/dejavu_30.h deleted file mode 100644 index 36e6d5b25..000000000 --- a/lv_misc/fonts/dejavu_30.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef DEJAVU_30_H -#define DEJAVU_30_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_DEJAVU_30 != 0 - - -#include -#include "../font.h" - - -const font_t * dejavu_30_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/dejavu_40.c b/lv_misc/fonts/dejavu_40.c deleted file mode 100644 index 1a34d8296..000000000 --- a/lv_misc/fonts/dejavu_40.c +++ /dev/null @@ -1,9500 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_40 != 0 - -#include -#include "../font.h" - -static const uint8_t dejavu_40_bitmaps[35840] = -{ - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 33, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 34, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 35, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x18, 0x30, 0x00, // -----------OO-----OO------...... - 0x00, 0x18, 0x70, 0x00, // -----------OO----OOO------...... - 0x00, 0x38, 0x70, 0x00, // ----------OOO----OOO------...... - 0x00, 0x38, 0x60, 0x00, // ----------OOO----OO-------...... - 0x00, 0x30, 0x60, 0x00, // ----------OO-----OO-------...... - 0x00, 0x30, 0xe0, 0x00, // ----------OO----OOO-------...... - 0x0f, 0xff, 0xfe, 0x00, // ----OOOOOOOOOOOOOOOOOOO---...... - 0x0f, 0xff, 0xfe, 0x00, // ----OOOOOOOOOOOOOOOOOOO---...... - 0x0f, 0xff, 0xfe, 0x00, // ----OOOOOOOOOOOOOOOOOOO---...... - 0x00, 0x60, 0xc0, 0x00, // ---------OO-----OO--------...... - 0x00, 0x61, 0xc0, 0x00, // ---------OO----OOO--------...... - 0x00, 0xe1, 0xc0, 0x00, // --------OOO----OOO--------...... - 0x00, 0xe1, 0x80, 0x00, // --------OOO----OO---------...... - 0x00, 0xc1, 0x80, 0x00, // --------OO-----OO---------...... - 0x00, 0xc3, 0x80, 0x00, // --------OO----OOO---------...... - 0x3f, 0xff, 0xfc, 0x00, // --OOOOOOOOOOOOOOOOOOOO----...... - 0x3f, 0xff, 0xfc, 0x00, // --OOOOOOOOOOOOOOOOOOOO----...... - 0x01, 0x83, 0x00, 0x00, // -------OO-----OO----------...... - 0x01, 0x83, 0x00, 0x00, // -------OO-----OO----------...... - 0x01, 0x87, 0x00, 0x00, // -------OO----OOO----------...... - 0x03, 0x86, 0x00, 0x00, // ------OOO----OO-----------...... - 0x03, 0x86, 0x00, 0x00, // ------OOO----OO-----------...... - 0x03, 0x06, 0x00, 0x00, // ------OO-----OO-----------...... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO-----------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 36, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO-----............. - 0x07, 0xff, 0x00, 0x00, // -----OOOOOOOOOOO---............. - 0x0f, 0x5f, 0x00, 0x00, // ----OOOO-O-OOOOO---............. - 0x1c, 0x41, 0x00, 0x00, // ---OOO---O-----O---............. - 0x1c, 0x40, 0x00, 0x00, // ---OOO---O---------............. - 0x18, 0x40, 0x00, 0x00, // ---OO----O---------............. - 0x18, 0x40, 0x00, 0x00, // ---OO----O---------............. - 0x1c, 0x40, 0x00, 0x00, // ---OOO---O---------............. - 0x1e, 0x40, 0x00, 0x00, // ---OOOO--O---------............. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO---------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x01, 0xfe, 0x00, 0x00, // -------OOOOOOOO----............. - 0x00, 0x5f, 0x00, 0x00, // ---------O-OOOOO---............. - 0x00, 0x47, 0x80, 0x00, // ---------O---OOOO--............. - 0x00, 0x43, 0x80, 0x00, // ---------O----OOO--............. - 0x00, 0x43, 0x80, 0x00, // ---------O----OOO--............. - 0x00, 0x43, 0x80, 0x00, // ---------O----OOO--............. - 0x00, 0x43, 0x80, 0x00, // ---------O----OOO--............. - 0x10, 0x47, 0x00, 0x00, // ---O-----O---OOO---............. - 0x1e, 0x5f, 0x00, 0x00, // ---OOOO--O-OOOOO---............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO----............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 37, char width: 29 - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x0f, 0x80, 0x0c, 0x00, // ----OOOOO-----------OO-------... - 0x1f, 0xe0, 0x1c, 0x00, // ---OOOOOOOO--------OOO-------... - 0x38, 0xe0, 0x18, 0x00, // --OOO---OOO--------OO--------... - 0x38, 0x70, 0x38, 0x00, // --OOO----OOO------OOO--------... - 0x30, 0x70, 0x30, 0x00, // --OO-----OOO------OO---------... - 0x30, 0x30, 0x70, 0x00, // --OO------OO-----OOO---------... - 0x30, 0x30, 0x60, 0x00, // --OO------OO-----OO----------... - 0x30, 0x30, 0xe0, 0x00, // --OO------OO----OOO----------... - 0x30, 0x70, 0xc0, 0x00, // --OO-----OOO----OO-----------... - 0x38, 0x71, 0x80, 0x00, // --OOO----OOO---OO------------... - 0x38, 0xe3, 0x80, 0x00, // --OOO---OOO---OOO------------... - 0x1f, 0xe3, 0x00, 0x00, // ---OOOOOOOO---OO-------------... - 0x0f, 0xc7, 0x0f, 0x00, // ----OOOOOO---OOO----OOOO-----... - 0x00, 0x06, 0x1f, 0xc0, // -------------OO----OOOOOOO---... - 0x00, 0x0e, 0x38, 0xc0, // ------------OOO---OOO---OO---... - 0x00, 0x0c, 0x30, 0xe0, // ------------OO----OO----OOO--... - 0x00, 0x1c, 0x70, 0x60, // -----------OOO---OOO-----OO--... - 0x00, 0x18, 0x70, 0x60, // -----------OO----OOO-----OO--... - 0x00, 0x38, 0x60, 0x60, // ----------OOO----OO------OO--... - 0x00, 0x30, 0x60, 0x60, // ----------OO-----OO------OO--... - 0x00, 0x60, 0x70, 0x60, // ---------OO------OOO-----OO--... - 0x00, 0x60, 0x70, 0x60, // ---------OO------OOO-----OO--... - 0x00, 0xc0, 0x30, 0xe0, // --------OO--------OO----OOO--... - 0x01, 0xc0, 0x3f, 0xc0, // -------OOO--------OOOOOOOO---... - 0x01, 0x80, 0x1f, 0x80, // -------OO----------OOOOOO----... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - - // ASCII: 38, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO----------........ - 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO--------........ - 0x07, 0xdf, 0x00, 0x00, // -----OOOOO-OOOOO--------........ - 0x07, 0x01, 0x00, 0x00, // -----OOO-------O--------........ - 0x07, 0x00, 0x00, 0x00, // -----OOO----------------........ - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----------------........ - 0x06, 0x00, 0x00, 0x00, // -----OO-----------------........ - 0x07, 0x00, 0x00, 0x00, // -----OOO----------------........ - 0x07, 0x00, 0x00, 0x00, // -----OOO----------------........ - 0x03, 0x80, 0x00, 0x00, // ------OOO---------------........ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO--------------........ - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO-------------........ - 0x1e, 0xf0, 0x1c, 0x00, // ---OOOO-OOOO-------OOO--........ - 0x1c, 0x78, 0x1c, 0x00, // ---OOO---OOOO------OOO--........ - 0x38, 0x3c, 0x18, 0x00, // --OOO-----OOOO-----OO---........ - 0x38, 0x1e, 0x38, 0x00, // --OOO------OOOO---OOO---........ - 0x38, 0x0e, 0x38, 0x00, // --OOO-------OOO---OOO---........ - 0x38, 0x07, 0x30, 0x00, // --OOO--------OOO--OO----........ - 0x38, 0x07, 0xf0, 0x00, // --OOO--------OOOOOOO----........ - 0x38, 0x03, 0xe0, 0x00, // --OOO---------OOOOO-----........ - 0x3c, 0x01, 0xe0, 0x00, // --OOOO---------OOOO-----........ - 0x1e, 0x03, 0xf0, 0x00, // ---OOOO-------OOOOOO----........ - 0x0f, 0x8f, 0xf8, 0x00, // ----OOOOO---OOOOOOOOO---........ - 0x0f, 0xff, 0x3c, 0x00, // ----OOOOOOOOOOOO--OOOO--........ - 0x03, 0xfc, 0x1c, 0x00, // ------OOOOOOOO-----OOO--........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 39, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 40, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x00, 0x00, 0x00, // ------OO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----.................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----.................... - 0x0c, 0x00, 0x00, 0x00, // ----OO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x0c, 0x00, 0x00, 0x00, // ----OO------.................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----.................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x03, 0x00, 0x00, 0x00, // ------OO----.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 41, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x0c, 0x00, 0x00, 0x00, // ----OO------.................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----.................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x03, 0x00, 0x00, 0x00, // ------OO----.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----.................... - 0x0c, 0x00, 0x00, 0x00, // ----OO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 42, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x61, 0x8c, 0x00, 0x00, // -OO----OO---OO-................. - 0x79, 0x9c, 0x00, 0x00, // -OOOO--OO--OOO-................. - 0x1d, 0xf0, 0x00, 0x00, // ---OOO-OOOOO---................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x03, 0x80, 0x00, 0x00, // ------OOO------................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x1d, 0xf0, 0x00, 0x00, // ---OOO-OOOOO---................. - 0x79, 0x9c, 0x00, 0x00, // -OOOO--OO--OOO-................. - 0x61, 0x8c, 0x00, 0x00, // -OO----OO---OO-................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 43, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 44, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 45, char width: 11 - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO-..................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO-..................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO-..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - - // ASCII: 46, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 47, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0xc0, 0x00, 0x00, // --------OO...................... - 0x01, 0xc0, 0x00, 0x00, // -------OOO...................... - 0x01, 0xc0, 0x00, 0x00, // -------OOO...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x03, 0x80, 0x00, 0x00, // ------OOO-...................... - 0x03, 0x80, 0x00, 0x00, // ------OOO-...................... - 0x03, 0x00, 0x00, 0x00, // ------OO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x30, 0x00, 0x00, 0x00, // --OO------...................... - 0x30, 0x00, 0x00, 0x00, // --OO------...................... - 0x70, 0x00, 0x00, 0x00, // -OOO------...................... - 0x70, 0x00, 0x00, 0x00, // -OOO------...................... - 0x60, 0x00, 0x00, 0x00, // -OO-------...................... - 0xe0, 0x00, 0x00, 0x00, // OOO-------...................... - 0xe0, 0x00, 0x00, 0x00, // OOO-------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 48, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xbe, 0x00, 0x00, // ----OOOOO-OOOOO----............. - 0x0e, 0x0f, 0x00, 0x00, // ----OOO-----OOOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x0e, 0x0f, 0x00, 0x00, // ----OOO-----OOOO---............. - 0x0f, 0x1e, 0x00, 0x00, // ----OOOO---OOOO----............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 49, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO-------............. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-------............. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-------............. - 0x1f, 0x70, 0x00, 0x00, // ---OOOOO-OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x0f, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOO--............. - 0x0f, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOO--............. - 0x0f, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 50, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO-----............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO----............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x20, 0x07, 0x00, 0x00, // --O----------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO----............. - 0x00, 0x1c, 0x00, 0x00, // -----------OOO-----............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x78, 0x00, 0x00, // ---------OOOO------............. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-------............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO--------............. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO---------............. - 0x07, 0x80, 0x00, 0x00, // -----OOOO----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x0e, 0x00, 0x00, 0x00, // ----OOO------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x3f, 0xff, 0x00, 0x00, // --OOOOOOOOOOOOOO---............. - 0x3f, 0xff, 0x00, 0x00, // --OOOOOOOOOOOOOO---............. - 0x3f, 0xff, 0x00, 0x00, // --OOOOOOOOOOOOOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 51, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO----............. - 0x10, 0x0f, 0x00, 0x00, // ---O--------OOOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x0f, 0x00, 0x00, // ------------OOOO---............. - 0x03, 0xfe, 0x00, 0x00, // ------OOOOOOOOO----............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO------............. - 0x03, 0xfc, 0x00, 0x00, // ------OOOOOOOO-----............. - 0x00, 0x1f, 0x00, 0x00, // -----------OOOOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x80, 0x00, // -------------OOOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x07, 0x80, 0x00, // -------------OOOO--............. - 0x20, 0x0f, 0x00, 0x00, // --O---------OOOO---............. - 0x3e, 0x3f, 0x00, 0x00, // --OOOOO---OOOOOO---............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO----............. - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 52, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO----............. - 0x00, 0x3e, 0x00, 0x00, // ----------OOOOO----............. - 0x00, 0x7e, 0x00, 0x00, // ---------OOOOOO----............. - 0x00, 0x6e, 0x00, 0x00, // ---------OO-OOO----............. - 0x00, 0xee, 0x00, 0x00, // --------OOO-OOO----............. - 0x00, 0xce, 0x00, 0x00, // --------OO--OOO----............. - 0x01, 0xce, 0x00, 0x00, // -------OOO--OOO----............. - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO----............. - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO----............. - 0x07, 0x0e, 0x00, 0x00, // -----OOO----OOO----............. - 0x06, 0x0e, 0x00, 0x00, // -----OO-----OOO----............. - 0x0e, 0x0e, 0x00, 0x00, // ----OOO-----OOO----............. - 0x0c, 0x0e, 0x00, 0x00, // ----OO------OOO----............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO----............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO----............. - 0x30, 0x0e, 0x00, 0x00, // --OO--------OOO----............. - 0x7f, 0xff, 0xc0, 0x00, // -OOOOOOOOOOOOOOOOO-............. - 0x7f, 0xff, 0xc0, 0x00, // -OOOOOOOOOOOOOOOOO-............. - 0x7f, 0xff, 0xc0, 0x00, // -OOOOOOOOOOOOOOOOO-............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 53, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO----............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO----............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO----............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0x7e, 0x00, 0x00, // ---OOOOO-OOOOOO----............. - 0x10, 0x0f, 0x00, 0x00, // ---O--------OOOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x07, 0x80, 0x00, // -------------OOOO--............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x20, 0x0f, 0x00, 0x00, // --O---------OOOO---............. - 0x3e, 0x7e, 0x00, 0x00, // --OOOOO--OOOOOO----............. - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO-----............. - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 54, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0xfe, 0x00, 0x00, // --------OOOOOOO----............. - 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO---............. - 0x07, 0xff, 0x00, 0x00, // -----OOOOOOOOOOO---............. - 0x0f, 0x01, 0x00, 0x00, // ----OOOO-------O---............. - 0x0e, 0x00, 0x00, 0x00, // ----OOO------------............. - 0x1e, 0x00, 0x00, 0x00, // ---OOOO------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x3c, 0x00, 0x00, 0x00, // --OOOO-------------............. - 0x39, 0xfc, 0x00, 0x00, // --OOO--OOOOOOO-----............. - 0x3b, 0xfe, 0x00, 0x00, // --OOO-OOOOOOOOO----............. - 0x3f, 0x9f, 0x00, 0x00, // --OOOOOOO--OOOOO---............. - 0x3e, 0x07, 0x80, 0x00, // --OOOOO------OOOO--............. - 0x3c, 0x03, 0x80, 0x00, // --OOOO--------OOO--............. - 0x3c, 0x03, 0x80, 0x00, // --OOOO--------OOO--............. - 0x3c, 0x03, 0x80, 0x00, // --OOOO--------OOO--............. - 0x3c, 0x03, 0xc0, 0x00, // --OOOO--------OOOO-............. - 0x1c, 0x03, 0xc0, 0x00, // ---OOO--------OOOO-............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x0e, 0x07, 0x80, 0x00, // ----OOO------OOOO--............. - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO---............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO----............. - 0x03, 0xfc, 0x00, 0x00, // ------OOOOOOOO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 55, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x0f, 0x00, 0x00, // ------------OOOO---............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x1c, 0x00, 0x00, // -----------OOO-----............. - 0x00, 0x1c, 0x00, 0x00, // -----------OOO-----............. - 0x00, 0x1c, 0x00, 0x00, // -----------OOO-----............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO--------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO---------............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 56, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO------............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x0f, 0xbf, 0x00, 0x00, // ----OOOOO-OOOOOO---............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x0f, 0xbe, 0x00, 0x00, // ----OOOOO-OOOOO----............. - 0x03, 0xfc, 0x00, 0x00, // ------OOOOOOOO-----............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0x1f, 0x00, 0x00, // ----OOOO---OOOOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x3c, 0x03, 0x80, 0x00, // --OOOO--------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3c, 0x03, 0x80, 0x00, // --OOOO--------OOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1f, 0x0f, 0x00, 0x00, // ---OOOOO----OOOO---............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 57, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xbe, 0x00, 0x00, // ----OOOOO-OOOOO----............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x3c, 0x07, 0x80, 0x00, // --OOOO-------OOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1e, 0x1f, 0x80, 0x00, // ---OOOO----OOOOOO--............. - 0x0f, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOO--............. - 0x07, 0xfb, 0x80, 0x00, // -----OOOOOOOO-OOO--............. - 0x00, 0xc3, 0x80, 0x00, // --------OO----OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x07, 0x80, 0x00, // -------------OOOO--............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x0f, 0x00, 0x00, // ------------OOOO---............. - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO----............. - 0x1e, 0x7c, 0x00, 0x00, // ---OOOO--OOOOO-----............. - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO------............. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 58, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 59, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 60, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x1c, 0x00, // -------------------OOO----...... - 0x00, 0x00, 0x7c, 0x00, // -----------------OOOOO----...... - 0x00, 0x03, 0xfc, 0x00, // --------------OOOOOOOO----...... - 0x00, 0x0f, 0xe0, 0x00, // ------------OOOOOOO-------...... - 0x00, 0x7f, 0x80, 0x00, // ---------OOOOOOOO---------...... - 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO------------...... - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO--------------...... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO-----------------...... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO-------------------...... - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO----------------...... - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO--------------...... - 0x00, 0xfe, 0x00, 0x00, // --------OOOOOOO-----------...... - 0x00, 0x3f, 0xc0, 0x00, // ----------OOOOOOOO--------...... - 0x00, 0x07, 0xf0, 0x00, // -------------OOOOOOO------...... - 0x00, 0x01, 0xfc, 0x00, // ---------------OOOOOOO----...... - 0x00, 0x00, 0x3c, 0x00, // ------------------OOOO----...... - 0x00, 0x00, 0x0c, 0x00, // --------------------OO----...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 61, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 62, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x10, 0x00, 0x00, 0x00, // ---O----------------------...... - 0x1c, 0x00, 0x00, 0x00, // ---OOO--------------------...... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO-----------------...... - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO---------------...... - 0x03, 0xfc, 0x00, 0x00, // ------OOOOOOOO------------...... - 0x00, 0x7f, 0x00, 0x00, // ---------OOOOOOO----------...... - 0x00, 0x1f, 0xe0, 0x00, // -----------OOOOOOOO-------...... - 0x00, 0x03, 0xf8, 0x00, // --------------OOOOOOO-----...... - 0x00, 0x00, 0xfc, 0x00, // ----------------OOOOOO----...... - 0x00, 0x00, 0x3c, 0x00, // ------------------OOOO----...... - 0x00, 0x00, 0xfc, 0x00, // ----------------OOOOOO----...... - 0x00, 0x07, 0xf0, 0x00, // -------------OOOOOOO------...... - 0x00, 0x1f, 0xc0, 0x00, // -----------OOOOOOO--------...... - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO----------...... - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO-------------...... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO---------------...... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO------------------...... - 0x1c, 0x00, 0x00, 0x00, // ---OOO--------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 63, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO-----................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3e, 0xf8, 0x00, 0x00, // --OOOOO-OOOOO---................ - 0x30, 0x3c, 0x00, 0x00, // --OO------OOOO--................ - 0x20, 0x1c, 0x00, 0x00, // --O--------OOO--................ - 0x00, 0x1c, 0x00, 0x00, // -----------OOO--................ - 0x00, 0x1c, 0x00, 0x00, // -----------OOO--................ - 0x00, 0x1c, 0x00, 0x00, // -----------OOO--................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x78, 0x00, 0x00, // ---------OOOO---................ - 0x00, 0xf0, 0x00, 0x00, // --------OOOO----................ - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-----................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 64, char width: 31 - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x0f, 0xe0, 0x00, // ------------OOOOOOO------------. - 0x00, 0x3f, 0xfc, 0x00, // ----------OOOOOOOOOOOO---------. - 0x00, 0xfe, 0xfe, 0x00, // --------OOOOOOO-OOOOOOO--------. - 0x01, 0xe0, 0x0f, 0x00, // -------OOOO---------OOOO-------. - 0x03, 0x80, 0x03, 0x80, // ------OOO-------------OOO------. - 0x07, 0x00, 0x01, 0xc0, // -----OOO---------------OOO-----. - 0x0e, 0x00, 0x00, 0xe0, // ----OOO-----------------OOO----. - 0x0c, 0x00, 0x00, 0x60, // ----OO-------------------OO----. - 0x1c, 0x0f, 0xcc, 0x70, // ---OOO------OOOOOO--OO---OOO---. - 0x18, 0x1f, 0xec, 0x30, // ---OO------OOOOOOOO-OO----OO---. - 0x18, 0x3c, 0x7c, 0x30, // ---OO-----OOOO---OOOOO----OO---. - 0x38, 0x30, 0x3c, 0x30, // --OOO-----OO------OOOO----OO---. - 0x30, 0x70, 0x1c, 0x30, // --OO-----OOO-------OOO----OO---. - 0x30, 0x70, 0x1c, 0x30, // --OO-----OOO-------OOO----OO---. - 0x30, 0x60, 0x1c, 0x30, // --OO-----OO--------OOO----OO---. - 0x30, 0x60, 0x1c, 0x30, // --OO-----OO--------OOO----OO---. - 0x30, 0x60, 0x1c, 0x30, // --OO-----OO--------OOO----OO---. - 0x30, 0x70, 0x1c, 0x70, // --OO-----OOO-------OOO---OOO---. - 0x38, 0x30, 0x3c, 0x60, // --OOO-----OO------OOOO---OO----. - 0x18, 0x38, 0x3d, 0xe0, // ---OO-----OOO-----OOOO-OOOO----. - 0x18, 0x1f, 0xef, 0xc0, // ---OO------OOOOOOOO-OOOOOO-----. - 0x1c, 0x0f, 0xcf, 0x00, // ---OOO------OOOOOO--OOOO-------. - 0x0c, 0x02, 0x08, 0x00, // ----OO--------O-----O----------. - 0x0e, 0x00, 0x00, 0x00, // ----OOO------------------------. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------------------. - 0x03, 0x80, 0x02, 0x00, // ------OOO-------------O--------. - 0x01, 0xe0, 0x0f, 0x00, // -------OOOO---------OOOO-------. - 0x00, 0xfe, 0xfe, 0x00, // --------OOOOOOO-OOOOOOO--------. - 0x00, 0x3f, 0xf8, 0x00, // ----------OOOOOOOOOOO----------. - 0x00, 0x0f, 0xe0, 0x00, // ------------OOOOOOO------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - - // ASCII: 65, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0x9c, 0x00, 0x00, // -------OO--OOO-------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO------........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x06, 0x07, 0x00, 0x00, // -----OO------OOO-----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x3f, 0xff, 0xc0, 0x00, // --OOOOOOOOOOOOOOOO---........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x78, 0x00, 0xe0, 0x00, // -OOOO-----------OOO--........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0xf0, 0x00, 0x78, 0x00, // OOOO-------------OOOO........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 66, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO--------........... - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO-----........... - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO----........... - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO----........... - 0x1c, 0x03, 0xc0, 0x00, // ---OOO--------OOOO---........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO-----........... - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO------........... - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO-----........... - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO----........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO--........... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO--........... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO--........... - 0x1c, 0x01, 0xe0, 0x00, // ---OOO---------OOOO--........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x03, 0xc0, 0x00, // ---OOO--------OOOO---........... - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO----........... - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO-----........... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 67, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO----........... - 0x01, 0xff, 0xe0, 0x00, // -------OOOOOOOOOOOO--........... - 0x07, 0xff, 0xf0, 0x00, // -----OOOOOOOOOOOOOOO-........... - 0x0f, 0x80, 0x70, 0x00, // ----OOOOO--------OOO-........... - 0x0f, 0x00, 0x30, 0x00, // ----OOOO----------OO-........... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO--------------........... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------------........... - 0x3c, 0x00, 0x00, 0x00, // --OOOO---------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x3c, 0x00, 0x00, 0x00, // --OOOO---------------........... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------------........... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------------........... - 0x0e, 0x00, 0x10, 0x00, // ----OOO------------O-........... - 0x0f, 0x00, 0x70, 0x00, // ----OOOO---------OOO-........... - 0x07, 0xe1, 0xf0, 0x00, // -----OOOOOO----OOOOO-........... - 0x03, 0xff, 0xe0, 0x00, // ------OOOOOOOOOOOOO--........... - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO----........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 68, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO-----------........ - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO--------........ - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO------........ - 0x1c, 0x07, 0xe0, 0x00, // ---OOO-------OOOOOO-----........ - 0x1c, 0x01, 0xf0, 0x00, // ---OOO---------OOOOO----........ - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO----........ - 0x1c, 0x00, 0x78, 0x00, // ---OOO-----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x3c, 0x00, // ---OOO------------OOOO--........ - 0x1c, 0x00, 0x3c, 0x00, // ---OOO------------OOOO--........ - 0x1c, 0x00, 0x1c, 0x00, // ---OOO-------------OOO--........ - 0x1c, 0x00, 0x1c, 0x00, // ---OOO-------------OOO--........ - 0x1c, 0x00, 0x1c, 0x00, // ---OOO-------------OOO--........ - 0x1c, 0x00, 0x3c, 0x00, // ---OOO------------OOOO--........ - 0x1c, 0x00, 0x3c, 0x00, // ---OOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x78, 0x00, // ---OOO-----------OOOO---........ - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO----........ - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO----........ - 0x1c, 0x03, 0xe0, 0x00, // ---OOO--------OOOOO-----........ - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO------........ - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO-------........ - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO----------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 69, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 70, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO--.............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO--.............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO--.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO---.............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO---.............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO---.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 71, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x7f, 0x80, 0x00, // ---------OOOOOOOO-------........ - 0x01, 0xff, 0xf0, 0x00, // -------OOOOOOOOOOOOO----........ - 0x07, 0xff, 0xf8, 0x00, // -----OOOOOOOOOOOOOOOO---........ - 0x0f, 0x80, 0x78, 0x00, // ----OOOOO--------OOOO---........ - 0x0e, 0x00, 0x18, 0x00, // ----OOO------------OO---........ - 0x1e, 0x00, 0x08, 0x00, // ---OOOO-------------O---........ - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------------........ - 0x3c, 0x00, 0x00, 0x00, // --OOOO------------------........ - 0x38, 0x00, 0x00, 0x00, // --OOO-------------------........ - 0x38, 0x00, 0x00, 0x00, // --OOO-------------------........ - 0x38, 0x00, 0x00, 0x00, // --OOO-------------------........ - 0x38, 0x00, 0x00, 0x00, // --OOO-------------------........ - 0x38, 0x07, 0xf8, 0x00, // --OOO--------OOOOOOOO---........ - 0x38, 0x07, 0xf8, 0x00, // --OOO--------OOOOOOOO---........ - 0x38, 0x07, 0xf8, 0x00, // --OOO--------OOOOOOOO---........ - 0x38, 0x00, 0x38, 0x00, // --OOO-------------OOO---........ - 0x38, 0x00, 0x38, 0x00, // --OOO-------------OOO---........ - 0x3c, 0x00, 0x38, 0x00, // --OOOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1e, 0x00, 0x38, 0x00, // ---OOOO-----------OOO---........ - 0x0f, 0x00, 0x38, 0x00, // ----OOOO----------OOO---........ - 0x07, 0xe1, 0xf8, 0x00, // -----OOOOOO----OOOOOO---........ - 0x03, 0xff, 0xf0, 0x00, // ------OOOOOOOOOOOOOO----........ - 0x00, 0xff, 0xc0, 0x00, // --------OOOOOOOOOO------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 72, char width: 23 - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO---......... - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO---......... - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - - // ASCII: 73, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 74, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x3c, 0x00, 0x00, 0x00, // --OOOO---....................... - 0x78, 0x00, 0x00, 0x00, // -OOOO----....................... - 0xf8, 0x00, 0x00, 0x00, // OOOOO----....................... - 0xf0, 0x00, 0x00, 0x00, // OOOO-----....................... - 0xc0, 0x00, 0x00, 0x00, // OO-------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 75, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO............ - 0x1c, 0x01, 0xe0, 0x00, // ---OOO---------OOOO-............ - 0x1c, 0x03, 0xc0, 0x00, // ---OOO--------OOOO--............ - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO---............ - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO----............ - 0x1c, 0x1e, 0x00, 0x00, // ---OOO-----OOOO-----............ - 0x1c, 0x3c, 0x00, 0x00, // ---OOO----OOOO------............ - 0x1c, 0x78, 0x00, 0x00, // ---OOO---OOOO-------............ - 0x1c, 0xf0, 0x00, 0x00, // ---OOO--OOOO--------............ - 0x1d, 0xe0, 0x00, 0x00, // ---OOO-OOOO---------............ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO----------............ - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO-----------............ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO----------............ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO----------............ - 0x1d, 0xe0, 0x00, 0x00, // ---OOO-OOOO---------............ - 0x1c, 0xf0, 0x00, 0x00, // ---OOO--OOOO--------............ - 0x1c, 0x78, 0x00, 0x00, // ---OOO---OOOO-------............ - 0x1c, 0x3c, 0x00, 0x00, // ---OOO----OOOO------............ - 0x1c, 0x1e, 0x00, 0x00, // ---OOO-----OOOO-----............ - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO----............ - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO---............ - 0x1c, 0x03, 0xc0, 0x00, // ---OOO--------OOOO--............ - 0x1c, 0x03, 0xc0, 0x00, // ---OOO--------OOOO--............ - 0x1c, 0x01, 0xe0, 0x00, // ---OOO---------OOOO-............ - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 76, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO............... - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO............... - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 77, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x1f, 0x00, 0x1e, 0x00, // ---OOOOO-----------OOOO---...... - 0x1f, 0x00, 0x3e, 0x00, // ---OOOOO----------OOOOO---...... - 0x1f, 0x00, 0x3e, 0x00, // ---OOOOO----------OOOOO---...... - 0x1f, 0x80, 0x3e, 0x00, // ---OOOOOO---------OOOOO---...... - 0x1f, 0x80, 0x7e, 0x00, // ---OOOOOO--------OOOOOO---...... - 0x1d, 0x80, 0x7e, 0x00, // ---OOO-OO--------OOOOOO---...... - 0x1d, 0xc0, 0x6e, 0x00, // ---OOO-OOO-------OO-OOO---...... - 0x1d, 0xc0, 0xee, 0x00, // ---OOO-OOO------OOO-OOO---...... - 0x1c, 0xc0, 0xee, 0x00, // ---OOO--OO------OOO-OOO---...... - 0x1c, 0xe0, 0xce, 0x00, // ---OOO--OOO-----OO--OOO---...... - 0x1c, 0xe1, 0xce, 0x00, // ---OOO--OOO----OOO--OOO---...... - 0x1c, 0x61, 0xce, 0x00, // ---OOO---OO----OOO--OOO---...... - 0x1c, 0x71, 0x8e, 0x00, // ---OOO---OOO---OO---OOO---...... - 0x1c, 0x73, 0x8e, 0x00, // ---OOO---OOO--OOO---OOO---...... - 0x1c, 0x33, 0x8e, 0x00, // ---OOO----OO--OOO---OOO---...... - 0x1c, 0x3b, 0x0e, 0x00, // ---OOO----OOO-OO----OOO---...... - 0x1c, 0x3f, 0x0e, 0x00, // ---OOO----OOOOOO----OOO---...... - 0x1c, 0x1f, 0x0e, 0x00, // ---OOO-----OOOOO----OOO---...... - 0x1c, 0x1e, 0x0e, 0x00, // ---OOO-----OOOO-----OOO---...... - 0x1c, 0x1e, 0x0e, 0x00, // ---OOO-----OOOO-----OOO---...... - 0x1c, 0x00, 0x0e, 0x00, // ---OOO--------------OOO---...... - 0x1c, 0x00, 0x0e, 0x00, // ---OOO--------------OOO---...... - 0x1c, 0x00, 0x0e, 0x00, // ---OOO--------------OOO---...... - 0x1c, 0x00, 0x0e, 0x00, // ---OOO--------------OOO---...... - 0x1c, 0x00, 0x0e, 0x00, // ---OOO--------------OOO---...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 78, char width: 23 - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x1e, 0x00, 0x70, 0x00, // ---OOOO----------OOO---......... - 0x1f, 0x00, 0x70, 0x00, // ---OOOOO---------OOO---......... - 0x1f, 0x00, 0x70, 0x00, // ---OOOOO---------OOO---......... - 0x1f, 0x80, 0x70, 0x00, // ---OOOOOO--------OOO---......... - 0x1f, 0x80, 0x70, 0x00, // ---OOOOOO--------OOO---......... - 0x1d, 0xc0, 0x70, 0x00, // ---OOO-OOO-------OOO---......... - 0x1d, 0xc0, 0x70, 0x00, // ---OOO-OOO-------OOO---......... - 0x1d, 0xe0, 0x70, 0x00, // ---OOO-OOOO------OOO---......... - 0x1c, 0xe0, 0x70, 0x00, // ---OOO--OOO------OOO---......... - 0x1c, 0xf0, 0x70, 0x00, // ---OOO--OOOO-----OOO---......... - 0x1c, 0x70, 0x70, 0x00, // ---OOO---OOO-----OOO---......... - 0x1c, 0x70, 0x70, 0x00, // ---OOO---OOO-----OOO---......... - 0x1c, 0x38, 0x70, 0x00, // ---OOO----OOO----OOO---......... - 0x1c, 0x38, 0x70, 0x00, // ---OOO----OOO----OOO---......... - 0x1c, 0x1c, 0x70, 0x00, // ---OOO-----OOO---OOO---......... - 0x1c, 0x1c, 0x70, 0x00, // ---OOO-----OOO---OOO---......... - 0x1c, 0x0e, 0x70, 0x00, // ---OOO------OOO--OOO---......... - 0x1c, 0x0e, 0x70, 0x00, // ---OOO------OOO--OOO---......... - 0x1c, 0x07, 0x70, 0x00, // ---OOO-------OOO-OOO---......... - 0x1c, 0x07, 0x70, 0x00, // ---OOO-------OOO-OOO---......... - 0x1c, 0x03, 0xf0, 0x00, // ---OOO--------OOOOOO---......... - 0x1c, 0x03, 0xf0, 0x00, // ---OOO--------OOOOOO---......... - 0x1c, 0x01, 0xf0, 0x00, // ---OOO---------OOOOO---......... - 0x1c, 0x01, 0xf0, 0x00, // ---OOO---------OOOOO---......... - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO---......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - - // ASCII: 79, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x0f, 0x80, 0xf0, 0x00, // ----OOOOO-------OOOO----........ - 0x0e, 0x00, 0x70, 0x00, // ----OOO----------OOO----........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x07, 0xc3, 0xe0, 0x00, // -----OOOOO----OOOOO-----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 80, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO------.............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO---.............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO--.............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO--.............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO-.............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO-.............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO-.............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO-.............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO-.............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO-.............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO-.............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO-.............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO--.............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO---.............. - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO-----.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 81, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x0f, 0x80, 0xf0, 0x00, // ----OOOOO-------OOOO----........ - 0x0e, 0x00, 0x70, 0x00, // ----OOO----------OOO----........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x0e, 0x00, 0x78, 0x00, // ----OOO----------OOOO---........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x07, 0xc3, 0xe0, 0x00, // -----OOOOO----OOOOO-----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x00, 0x07, 0x80, 0x00, // -------------OOOO-------........ - 0x00, 0x03, 0xc0, 0x00, // --------------OOOO------........ - 0x00, 0x01, 0xe0, 0x00, // ---------------OOOO-----........ - 0x00, 0x00, 0xf0, 0x00, // ----------------OOOO----........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 82, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO---------........... - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO------........... - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO-----........... - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO----........... - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO----........... - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO-----........... - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO------........... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-------........... - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO------........... - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO-----........... - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO-----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO--........... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO--........... - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO-........... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO-........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 83, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xfe, 0x00, 0x00, // ------OOOOOOOOO----............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1c, 0x01, 0x00, 0x00, // ---OOO---------O---............. - 0x3c, 0x00, 0x00, 0x00, // --OOOO-------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x3e, 0x00, 0x00, 0x00, // --OOOOO------------............. - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO---------............. - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO------............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO----............. - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO---............. - 0x00, 0x0f, 0x80, 0x00, // ------------OOOOO--............. - 0x00, 0x07, 0x80, 0x00, // -------------OOOO--............. - 0x00, 0x03, 0xc0, 0x00, // --------------OOOO-............. - 0x00, 0x03, 0xc0, 0x00, // --------------OOOO-............. - 0x00, 0x01, 0xc0, 0x00, // ---------------OOO-............. - 0x00, 0x03, 0xc0, 0x00, // --------------OOOO-............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x30, 0x07, 0x80, 0x00, // --OO---------OOOO--............. - 0x3e, 0x1f, 0x80, 0x00, // --OOOOO----OOOOOO--............. - 0x3f, 0xff, 0x00, 0x00, // --OOOOOOOOOOOOOO---............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 84, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOO............. - 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOO............. - 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOO............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 85, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO--.......... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO---.......... - 0x1e, 0x00, 0xe0, 0x00, // ---OOOO---------OOO---.......... - 0x0e, 0x01, 0xe0, 0x00, // ----OOO--------OOOO---.......... - 0x0f, 0xc7, 0xc0, 0x00, // ----OOOOOO---OOOOO----.......... - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO-----.......... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 86, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0xe0, 0x00, 0x78, 0x00, // OOO--------------OOOO........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x78, 0x00, 0xf0, 0x00, // -OOOO-----------OOOO-........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x3c, 0x01, 0xe0, 0x00, // --OOOO---------OOOO--........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1e, 0x03, 0xc0, 0x00, // ---OOOO-------OOOO---........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0f, 0x07, 0x00, 0x00, // ----OOOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x8e, 0x00, 0x00, // -----OOOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 87, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x70, 0x07, 0x80, 0x38, // -OOO---------OOOO---------OOO-.. - 0x70, 0x07, 0x80, 0x38, // -OOO---------OOOO---------OOO-.. - 0x38, 0x07, 0x80, 0x38, // --OOO--------OOOO---------OOO-.. - 0x38, 0x07, 0xc0, 0x78, // --OOO--------OOOOO-------OOOO-.. - 0x38, 0x0f, 0xc0, 0x70, // --OOO-------OOOOOO-------OOO--.. - 0x38, 0x0e, 0xc0, 0x70, // --OOO-------OOO-OO-------OOO--.. - 0x38, 0x0e, 0xc0, 0x70, // --OOO-------OOO-OO-------OOO--.. - 0x1c, 0x0c, 0xc0, 0x70, // ---OOO------OO--OO-------OOO--.. - 0x1c, 0x0c, 0xe0, 0xe0, // ---OOO------OO--OOO-----OOO---.. - 0x1c, 0x1c, 0xe0, 0xe0, // ---OOO-----OOO--OOO-----OOO---.. - 0x1c, 0x1c, 0x60, 0xe0, // ---OOO-----OOO---OO-----OOO---.. - 0x0e, 0x18, 0x60, 0xe0, // ----OOO----OO----OO-----OOO---.. - 0x0e, 0x18, 0x71, 0xc0, // ----OOO----OO----OOO---OOO----.. - 0x0e, 0x38, 0x71, 0xc0, // ----OOO---OOO----OOO---OOO----.. - 0x0e, 0x38, 0x31, 0xc0, // ----OOO---OOO-----OO---OOO----.. - 0x0e, 0x38, 0x31, 0xc0, // ----OOO---OOO-----OO---OOO----.. - 0x07, 0x30, 0x31, 0xc0, // -----OOO--OO------OO---OOO----.. - 0x07, 0x30, 0x3b, 0x80, // -----OOO--OO------OOO-OOO-----.. - 0x07, 0x70, 0x3b, 0x80, // -----OOO-OOO------OOO-OOO-----.. - 0x07, 0x70, 0x1b, 0x80, // -----OOO-OOO-------OO-OOO-----.. - 0x03, 0xe0, 0x1b, 0x80, // ------OOOOO--------OO-OOO-----.. - 0x03, 0xe0, 0x1f, 0x00, // ------OOOOO--------OOOOO------.. - 0x03, 0xe0, 0x1f, 0x00, // ------OOOOO--------OOOOO------.. - 0x03, 0xe0, 0x0f, 0x00, // ------OOOOO---------OOOO------.. - 0x03, 0xe0, 0x0f, 0x00, // ------OOOOO---------OOOO------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 88, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x1c, 0x01, 0xe0, 0x00, // ---OOO---------OOOO--........... - 0x1e, 0x01, 0xc0, 0x00, // ---OOOO--------OOO---........... - 0x0e, 0x03, 0xc0, 0x00, // ----OOO-------OOOO---........... - 0x07, 0x03, 0x80, 0x00, // -----OOO------OOO----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x03, 0x8f, 0x00, 0x00, // ------OOO---OOOO-----........... - 0x03, 0xce, 0x00, 0x00, // ------OOOO--OOO------........... - 0x01, 0xde, 0x00, 0x00, // -------OOO-OOOO------........... - 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO-------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0x78, 0x00, 0x00, // ---------OOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x07, 0x8f, 0x00, 0x00, // -----OOOO---OOOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x0e, 0x07, 0x80, 0x00, // ----OOO------OOOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x3c, 0x01, 0xe0, 0x00, // --OOOO---------OOOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x70, 0x00, 0xf0, 0x00, // -OOO------------OOOO-........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 89, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0xe0, 0x01, 0xe0, 0x00, // OOO------------OOOO............. - 0x70, 0x01, 0xc0, 0x00, // -OOO-----------OOO-............. - 0x78, 0x03, 0x80, 0x00, // -OOOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x0e, 0x0e, 0x00, 0x00, // ----OOO-----OOO----............. - 0x0f, 0x1c, 0x00, 0x00, // ----OOOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x03, 0xb8, 0x00, 0x00, // ------OOO-OOO------............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO------............. - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO-------............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 90, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x3f, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOO--........... - 0x3f, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOO--........... - 0x3f, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOO--........... - 0x00, 0x01, 0xe0, 0x00, // ---------------OOOO--........... - 0x00, 0x03, 0xc0, 0x00, // --------------OOOO---........... - 0x00, 0x03, 0x80, 0x00, // --------------OOO----........... - 0x00, 0x07, 0x80, 0x00, // -------------OOOO----........... - 0x00, 0x0f, 0x00, 0x00, // ------------OOOO-----........... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO------........... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO-------........... - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO-------........... - 0x00, 0x78, 0x00, 0x00, // ---------OOOO--------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0xe0, 0x00, 0x00, // --------OOO----------........... - 0x01, 0xe0, 0x00, 0x00, // -------OOOO----------........... - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----------........... - 0x03, 0x80, 0x00, 0x00, // ------OOO------------........... - 0x07, 0x80, 0x00, 0x00, // -----OOOO------------........... - 0x0f, 0x00, 0x00, 0x00, // ----OOOO-------------........... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO--------------........... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------------........... - 0x3c, 0x00, 0x00, 0x00, // --OOOO---------------........... - 0x7f, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOO-........... - 0x7f, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOO-........... - 0x7f, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOO-........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 91, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 92, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0xe0, 0x00, 0x00, 0x00, // OOO-------...................... - 0xe0, 0x00, 0x00, 0x00, // OOO-------...................... - 0x60, 0x00, 0x00, 0x00, // -OO-------...................... - 0x60, 0x00, 0x00, 0x00, // -OO-------...................... - 0x70, 0x00, 0x00, 0x00, // -OOO------...................... - 0x70, 0x00, 0x00, 0x00, // -OOO------...................... - 0x30, 0x00, 0x00, 0x00, // --OO------...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x03, 0x00, 0x00, 0x00, // ------OO--...................... - 0x03, 0x00, 0x00, 0x00, // ------OO--...................... - 0x03, 0x80, 0x00, 0x00, // ------OOO-...................... - 0x03, 0x80, 0x00, 0x00, // ------OOO-...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x01, 0xc0, 0x00, 0x00, // -------OOO...................... - 0x01, 0xc0, 0x00, 0x00, // -------OOO...................... - 0x00, 0xc0, 0x00, 0x00, // --------OO...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 93, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 94, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x3e, 0x00, 0x00, // ----------OOOOO-----------...... - 0x00, 0x7f, 0x00, 0x00, // ---------OOOOOOO----------...... - 0x00, 0xf7, 0x80, 0x00, // --------OOOO-OOOO---------...... - 0x00, 0xe3, 0xc0, 0x00, // --------OOO---OOOO--------...... - 0x01, 0xc1, 0xe0, 0x00, // -------OOO-----OOOO-------...... - 0x03, 0x80, 0xf0, 0x00, // ------OOO-------OOOO------...... - 0x07, 0x00, 0x78, 0x00, // -----OOO---------OOOO-----...... - 0x0e, 0x00, 0x3c, 0x00, // ----OOO-----------OOOO----...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 95, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0xff, 0xff, 0x00, 0x00, // OOOOOOOOOOOOOOOO................ - 0xff, 0xff, 0x00, 0x00, // OOOOOOOOOOOOOOOO................ - - // ASCII: 96, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------................. - 0x0e, 0x00, 0x00, 0x00, // ----OOO--------................. - 0x06, 0x00, 0x00, 0x00, // -----OO--------................. - 0x07, 0x00, 0x00, 0x00, // -----OOO-------................. - 0x03, 0x80, 0x00, 0x00, // ------OOO------................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 97, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x10, 0x0e, 0x00, 0x00, // ---O--------OOO----............. - 0x00, 0x06, 0x00, 0x00, // -------------OO----............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO---............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x3c, 0x3f, 0x00, 0x00, // --OOOO----OOOOOO---............. - 0x1f, 0xf7, 0x00, 0x00, // ---OOOOOOOOO-OOO---............. - 0x0f, 0xe7, 0x00, 0x00, // ----OOOOOOO--OOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 98, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0xf8, 0x00, 0x00, // ---OOO--OOOOO------............. - 0x1d, 0xfe, 0x00, 0x00, // ---OOO-OOOOOOOO----............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO---............. - 0x1e, 0x03, 0x80, 0x00, // ---OOOO-------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x01, 0x80, 0x00, // ---OOO---------OO--............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1e, 0x07, 0x80, 0x00, // ---OOOO------OOOO--............. - 0x1f, 0x0f, 0x00, 0x00, // ---OOOOO----OOOO---............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO----............. - 0x1d, 0xfc, 0x00, 0x00, // ---OOO-OOOOOOO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 99, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO----............... - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO--............... - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO--............... - 0x1e, 0x02, 0x00, 0x00, // ---OOOO-------O--............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x3c, 0x00, 0x00, 0x00, // --OOOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x0f, 0x06, 0x00, 0x00, // ----OOOO-----OO--............... - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO--............... - 0x03, 0xfc, 0x00, 0x00, // ------OOOOOOOO---............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 100, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x03, 0xe3, 0x80, 0x00, // ------OOOOO---OOO--............. - 0x07, 0xfb, 0x80, 0x00, // -----OOOOOOOO-OOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x1e, 0x0f, 0x80, 0x00, // ---OOOO-----OOOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO--............. - 0x1e, 0x1f, 0x80, 0x00, // ---OOOO----OOOOOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x07, 0xf3, 0x80, 0x00, // -----OOOOOOO--OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 101, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x3c, 0x00, 0x00, 0x00, // --OOOO-------------............. - 0x1e, 0x00, 0x80, 0x00, // ---OOOO---------O--............. - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO--............. - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO--............. - 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 102, char width: 11 - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO..................... - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO..................... - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO..................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x7f, 0xe0, 0x00, 0x00, // -OOOOOOOOOO..................... - 0x7f, 0xe0, 0x00, 0x00, // -OOOOOOOOOO..................... - 0x7f, 0xe0, 0x00, 0x00, // -OOOOOOOOOO..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - - // ASCII: 103, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xe3, 0x80, 0x00, // ------OOOOO---OOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1e, 0x0f, 0x80, 0x00, // ---OOOO-----OOOOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x07, 0xfb, 0x80, 0x00, // -----OOOOOOOO-OOO--............. - 0x03, 0xe3, 0x80, 0x00, // ------OOOOO---OOO--............. - 0x00, 0x03, 0x00, 0x00, // --------------OO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x0f, 0x00, 0x00, // ------------OOOO---............. - 0x0f, 0x7e, 0x00, 0x00, // ----OOOO-OOOOOO----............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 104, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0xfc, 0x00, 0x00, // ---OOO--OOOOOO-----............. - 0x1d, 0xfe, 0x00, 0x00, // ---OOO-OOOOOOOO----............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO---............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 105, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 106, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x38, 0x00, 0x00, 0x00, // --OOO----....................... - 0xf8, 0x00, 0x00, 0x00, // OOOOO----....................... - 0xf0, 0x00, 0x00, 0x00, // OOOO-----....................... - 0xe0, 0x00, 0x00, 0x00, // OOO------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 107, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO-.............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO--.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO-----.............. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO------.............. - 0x1d, 0xe0, 0x00, 0x00, // ---OOO-OOOO-------.............. - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO--------.............. - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---------.............. - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---------.............. - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO--------.............. - 0x1d, 0xe0, 0x00, 0x00, // ---OOO-OOOO-------.............. - 0x1c, 0xf0, 0x00, 0x00, // ---OOO--OOOO------.............. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO------.............. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO-----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO--.............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 108, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 109, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x1c, 0xf8, 0x1f, 0x00, // ---OOO--OOOOO------OOOOO------.. - 0x1d, 0xfe, 0x3f, 0x80, // ---OOO-OOOOOOOO---OOOOOOO-----.. - 0x1f, 0xfe, 0x7f, 0xc0, // ---OOOOOOOOOOOO--OOOOOOOOO----.. - 0x1e, 0x0f, 0xc1, 0xe0, // ---OOOO-----OOOOOO-----OOOO---.. - 0x1e, 0x07, 0xC0, 0xe0, // ---OOOO------OOOOO------OOO---.. - 0x1c, 0x07, 0xC0, 0xe0, // ---OOO-------OOOOO------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 110, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0xfc, 0x00, 0x00, // ---OOO--OOOOOO-----............. - 0x1d, 0xfe, 0x00, 0x00, // ---OOO-OOOOOOOO----............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO---............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 111, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x1f, 0x1e, 0x00, 0x00, // ---OOOOO---OOOO----............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 112, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0xf8, 0x00, 0x00, // ---OOO--OOOOO------............. - 0x1d, 0xfe, 0x00, 0x00, // ---OOO-OOOOOOOO----............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO---............. - 0x1e, 0x03, 0x80, 0x00, // ---OOOO-------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x01, 0x80, 0x00, // ---OOO---------OO--............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1e, 0x07, 0x80, 0x00, // ---OOOO------OOOO--............. - 0x1f, 0x0f, 0x00, 0x00, // ---OOOOO----OOOO---............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO----............. - 0x1d, 0xfc, 0x00, 0x00, // ---OOO-OOOOOOO-----............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 113, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xe3, 0x80, 0x00, // ------OOOOO---OOO--............. - 0x07, 0xfb, 0x80, 0x00, // -----OOOOOOOO-OOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x1e, 0x0f, 0x80, 0x00, // ---OOOO-----OOOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO--............. - 0x1e, 0x1f, 0x80, 0x00, // ---OOOO----OOOOOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x07, 0xf3, 0x80, 0x00, // -----OOOOOOO--OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 114, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x1c, 0xf8, 0x00, 0x00, // ---OOO--OOOOO................... - 0x1d, 0xf8, 0x00, 0x00, // ---OOO-OOOOOO................... - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO................... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO-----................... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 115, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO----................ - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x38, 0x04, 0x00, 0x00, // --OOO--------O--................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x30, 0x00, 0x00, 0x00, // --OO------------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3c, 0x00, 0x00, 0x00, // --OOOO----------................ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO------................ - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO---................ - 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO--................ - 0x00, 0x1c, 0x00, 0x00, // -----------OOO--................ - 0x00, 0x0c, 0x00, 0x00, // ------------OO--................ - 0x00, 0x0c, 0x00, 0x00, // ------------OO--................ - 0x00, 0x1c, 0x00, 0x00, // -----------OOO--................ - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO--................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 116, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x7f, 0xe0, 0x00, 0x00, // -OOOOOOOOOO-.................... - 0x7f, 0xe0, 0x00, 0x00, // -OOOOOOOOOO-.................... - 0x7f, 0xe0, 0x00, 0x00, // -OOOOOOOOOO-.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO-.................... - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO-.................... - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO-.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 117, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x07, 0x80, 0x00, // ---OO--------OOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO--............. - 0x1e, 0x1f, 0x80, 0x00, // ---OOOO----OOOOOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x07, 0xf3, 0x80, 0x00, // -----OOOOOOO--OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 118, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO-.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x1c, 0x06, 0x00, 0x00, // ---OOO-------OO---.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x0e, 0x0c, 0x00, 0x00, // ----OOO-----OO----.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x07, 0x18, 0x00, 0x00, // -----OOO---OO-----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x03, 0xb0, 0x00, 0x00, // ------OOO-OO------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 119, char width: 25 - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x70, 0x1c, 0x07, 0x00, // -OOO-------OOO-------OOO-....... - 0x30, 0x1c, 0x06, 0x00, // --OO-------OOO-------OO--....... - 0x38, 0x3e, 0x0e, 0x00, // --OOO-----OOOOO-----OOO--....... - 0x38, 0x3e, 0x0e, 0x00, // --OOO-----OOOOO-----OOO--....... - 0x38, 0x36, 0x0e, 0x00, // --OOO-----OO-OO-----OOO--....... - 0x38, 0x36, 0x0e, 0x00, // --OOO-----OO-OO-----OOO--....... - 0x18, 0x77, 0x0c, 0x00, // ---OO----OOO-OOO----OO---....... - 0x1c, 0x77, 0x1c, 0x00, // ---OOO---OOO-OOO---OOO---....... - 0x1c, 0x63, 0x1c, 0x00, // ---OOO---OO---OO---OOO---....... - 0x1c, 0x63, 0x1c, 0x00, // ---OOO---OO---OO---OOO---....... - 0x0c, 0xe3, 0x98, 0x00, // ----OO--OOO---OOO--OO----....... - 0x0e, 0xe3, 0xb8, 0x00, // ----OOO-OOO---OOO-OOO----....... - 0x0e, 0xc1, 0xb8, 0x00, // ----OOO-OO-----OO-OOO----....... - 0x0e, 0xc1, 0xb8, 0x00, // ----OOO-OO-----OO-OOO----....... - 0x06, 0xc1, 0xb0, 0x00, // -----OO-OO-----OO-OO-----....... - 0x07, 0xc1, 0xf0, 0x00, // -----OOOOO-----OOOOO-----....... - 0x07, 0xc0, 0xf0, 0x00, // -----OOOOO------OOOO-----....... - 0x07, 0x80, 0xf0, 0x00, // -----OOOO-------OOOO-----....... - 0x03, 0x80, 0xe0, 0x00, // ------OOO-------OOO------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - - // ASCII: 120, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x78, 0x07, 0x80, 0x00, // -OOOO--------OOOO-.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x0e, 0x1e, 0x00, 0x00, // ----OOO----OOOO---.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO-----.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 121, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x38, 0x03, 0x00, 0x00, // --OOO---------OO--.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x0c, 0x0e, 0x00, 0x00, // ----OO------OOO---.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x06, 0x1c, 0x00, 0x00, // -----OO----OOO----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x03, 0xb0, 0x00, 0x00, // ------OOO-OO------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO-------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0x80, 0x00, 0x00, // ------OOO---------.............. - 0x0f, 0x80, 0x00, 0x00, // ----OOOOO---------.............. - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO----------.............. - 0x3e, 0x00, 0x00, 0x00, // --OOOOO-----------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 122, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO-................ - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO-................ - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO-................ - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-................ - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO--................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x70, 0x00, 0x00, // ---------OOO----................ - 0x00, 0xe0, 0x00, 0x00, // --------OOO-----................ - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-----................ - 0x03, 0xc0, 0x00, 0x00, // ------OOOO------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x07, 0x00, 0x00, 0x00, // -----OOO--------................ - 0x0f, 0x00, 0x00, 0x00, // ----OOOO--------................ - 0x1e, 0x00, 0x00, 0x00, // ---OOOO---------................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x7f, 0xfe, 0x00, 0x00, // -OOOOOOOOOOOOOO-................ - 0x7f, 0xfe, 0x00, 0x00, // -OOOOOOOOOOOOOO-................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 123, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x0f, 0x00, 0x00, // ------------OOOO---............. - 0x00, 0x3f, 0x00, 0x00, // ----------OOOOOO---............. - 0x00, 0x7f, 0x00, 0x00, // ---------OOOOOOO---............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO---------............. - 0x0f, 0x80, 0x00, 0x00, // ----OOOOO----------............. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO---------............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x7f, 0x00, 0x00, // ---------OOOOOOO---............. - 0x00, 0x3f, 0x00, 0x00, // ----------OOOOOO---............. - 0x00, 0x03, 0x00, 0x00, // --------------OO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 124, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - - // ASCII: 125, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x0f, 0x00, 0x00, 0x00, // ----OOOO-----------............. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO---------............. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO---------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO-----............. - 0x00, 0x3f, 0x00, 0x00, // ----------OOOOOO---............. - 0x00, 0x3f, 0x00, 0x00, // ----------OOOOOO---............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO---------............. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO---------............. - 0x08, 0x00, 0x00, 0x00, // ----O--------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 126, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x03, 0xf0, 0x04, 0x00, // ------OOOOOO---------O----...... - 0x0f, 0xfc, 0x1c, 0x00, // ----OOOOOOOOOO-----OOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1c, 0x0f, 0xf8, 0x00, // ---OOO------OOOOOOOOO-----...... - 0x10, 0x01, 0xe0, 0x00, // ---O-----------OOOO-------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // No glyph for ASCII: 127, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 128, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 129, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 130, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 131, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 132, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 133, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 134, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 135, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 136, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 137, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 138, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 139, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 140, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 141, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 142, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 143, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 144, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 145, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 146, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 147, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 148, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 149, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 150, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 151, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 152, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 153, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 154, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 155, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 156, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 157, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 158, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 159, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 160, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 161, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 162, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO-----............. - 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO---............. - 0x07, 0xff, 0x00, 0x00, // -----OOOOOOOOOOO---............. - 0x0f, 0x31, 0x00, 0x00, // ----OOOO--OO---O---............. - 0x0e, 0x30, 0x00, 0x00, // ----OOO---OO-------............. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO-------............. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO-------............. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO-------............. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO-------............. - 0x18, 0x30, 0x00, 0x00, // ---OO-----OO-------............. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO-------............. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO-------............. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO-------............. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO-------............. - 0x1e, 0x30, 0x00, 0x00, // ---OOOO---OO-------............. - 0x0e, 0x30, 0x00, 0x00, // ----OOO---OO-------............. - 0x07, 0xb3, 0x00, 0x00, // -----OOOO-OO--OO---............. - 0x07, 0xff, 0x00, 0x00, // -----OOOOOOOOOOO---............. - 0x01, 0xfe, 0x00, 0x00, // -------OOOOOOOO----............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 163, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x7f, 0x00, 0x00, // ---------OOOOOOO---............. - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO---............. - 0x01, 0xf7, 0x00, 0x00, // -------OOOOO-OOO---............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x07, 0x80, 0x00, 0x00, // -----OOOO----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO-----............. - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO-----............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 164, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x10, 0x00, 0x80, 0x00, // ---O------------O--............. - 0x30, 0x01, 0xc0, 0x00, // --OO-----------OOO-............. - 0x38, 0xe3, 0xc0, 0x00, // --OOO---OOO---OOOO-............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x0f, 0x0e, 0x00, 0x00, // ----OOOO----OOO----............. - 0x0e, 0x07, 0x00, 0x00, // ----OOO------OOO---............. - 0x0c, 0x07, 0x00, 0x00, // ----OO-------OOO---............. - 0x1c, 0x03, 0x00, 0x00, // ---OOO--------OO---............. - 0x1c, 0x03, 0x00, 0x00, // ---OOO--------OO---............. - 0x1c, 0x03, 0x00, 0x00, // ---OOO--------OO---............. - 0x0c, 0x07, 0x00, 0x00, // ----OO-------OOO---............. - 0x0e, 0x06, 0x00, 0x00, // ----OOO------OO----............. - 0x0f, 0x1e, 0x00, 0x00, // ----OOOO---OOOO----............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1d, 0xfb, 0x80, 0x00, // ---OOO-OOOOOO-OOO--............. - 0x38, 0x03, 0xc0, 0x00, // --OOO---------OOOO-............. - 0x30, 0x01, 0x80, 0x00, // --OO-----------OO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 165, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x70, 0x01, 0xc0, 0x00, // -OOO-----------OOO-............. - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO-............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x0e, 0x07, 0x00, 0x00, // ----OOO------OOO---............. - 0x0e, 0x0e, 0x00, 0x00, // ----OOO-----OOO----............. - 0x07, 0x0e, 0x00, 0x00, // -----OOO----OOO----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x03, 0x9c, 0x00, 0x00, // ------OOO--OOO-----............. - 0x3f, 0xbf, 0x80, 0x00, // --OOOOOOO-OOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO-------............. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 166, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 167, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO---................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO---................. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO---................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------................. - 0x1e, 0x00, 0x00, 0x00, // ---OOOO--------................. - 0x0f, 0x80, 0x00, 0x00, // ----OOOOO------................. - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO-----................. - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO---................. - 0x30, 0x78, 0x00, 0x00, // --OO-----OOOO--................. - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO--................. - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO-................. - 0x30, 0x1c, 0x00, 0x00, // --OO-------OOO-................. - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO-................. - 0x1e, 0x1c, 0x00, 0x00, // ---OOOO----OOO-................. - 0x0f, 0x38, 0x00, 0x00, // ----OOOO--OOO--................. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO---................. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO----................. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO---................. - 0x00, 0x78, 0x00, 0x00, // ---------OOOO--................. - 0x00, 0x38, 0x00, 0x00, // ----------OOO--................. - 0x00, 0x38, 0x00, 0x00, // ----------OOO--................. - 0x00, 0x38, 0x00, 0x00, // ----------OOO--................. - 0x18, 0x70, 0x00, 0x00, // ---OO----OOO---................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO---................. - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO-----................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 168, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO---................. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO---................. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO---................. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO---................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 169, char width: 31 - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--------------. - 0x00, 0x1f, 0xf0, 0x00, // -----------OOOOOOOOO-----------. - 0x00, 0x78, 0x3c, 0x00, // ---------OOOO-----OOOO---------. - 0x00, 0xe0, 0x0e, 0x00, // --------OOO---------OOO--------. - 0x01, 0x80, 0x07, 0x00, // -------OO------------OOO-------. - 0x03, 0x03, 0xc3, 0x00, // ------OO------OOOO----OO-------. - 0x03, 0x1f, 0xf1, 0x80, // ------OO---OOOOOOOOO---OO------. - 0x06, 0x3c, 0x30, 0x80, // -----OO---OOOO----OO----O------. - 0x06, 0x38, 0x00, 0xc0, // -----OO---OOO-----------OO-----. - 0x04, 0x70, 0x00, 0xc0, // -----O---OOO------------OO-----. - 0x0c, 0x60, 0x00, 0x40, // ----OO---OO--------------O-----. - 0x0c, 0x60, 0x00, 0x40, // ----OO---OO--------------O-----. - 0x0c, 0x60, 0x00, 0x40, // ----OO---OO--------------O-----. - 0x0c, 0x60, 0x00, 0x40, // ----OO---OO--------------O-----. - 0x0c, 0x60, 0x00, 0x40, // ----OO---OO--------------O-----. - 0x0c, 0x70, 0x00, 0x40, // ----OO---OOO-------------O-----. - 0x04, 0x70, 0x00, 0xc0, // -----O---OOO------------OO-----. - 0x06, 0x38, 0x10, 0xc0, // -----OO---OOO------O----OO-----. - 0x02, 0x1f, 0xf1, 0x80, // ------O----OOOOOOOOO---OO------. - 0x03, 0x0f, 0xe1, 0x80, // ------OO----OOOOOOO----OO------. - 0x01, 0x80, 0x03, 0x00, // -------OO-------------OO-------. - 0x00, 0xc0, 0x06, 0x00, // --------OO-----------OO--------. - 0x00, 0x70, 0x1c, 0x00, // ---------OOO-------OOO---------. - 0x00, 0x3f, 0xf8, 0x00, // ----------OOOOOOOOOOO----------. - 0x00, 0x0f, 0xe0, 0x00, // ------------OOOOOOO------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - - // ASCII: 170, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO----.................. - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO---.................. - 0x00, 0x70, 0x00, 0x00, // ---------OOO--.................. - 0x00, 0x30, 0x00, 0x00, // ----------OO--.................. - 0x00, 0x30, 0x00, 0x00, // ----------OO--.................. - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO--.................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO--.................. - 0x38, 0x30, 0x00, 0x00, // --OOO-----OO--.................. - 0x30, 0x30, 0x00, 0x00, // --OO------OO--.................. - 0x30, 0x30, 0x00, 0x00, // --OO------OO--.................. - 0x30, 0x70, 0x00, 0x00, // --OO-----OOO--.................. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO--.................. - 0x1f, 0xb0, 0x00, 0x00, // ---OOOOOO-OO--.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO--.................. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO--.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 171, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x81, 0x00, 0x00, // --------O------O---............. - 0x01, 0x83, 0x00, 0x00, // -------OO-----OO---............. - 0x03, 0x87, 0x00, 0x00, // ------OOO----OOO---............. - 0x07, 0x0e, 0x00, 0x00, // -----OOO----OOO----............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO-----............. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO------............. - 0x38, 0x70, 0x00, 0x00, // --OOO----OOO-------............. - 0x38, 0x70, 0x00, 0x00, // --OOO----OOO-------............. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO------............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO-----............. - 0x07, 0x0e, 0x00, 0x00, // -----OOO----OOO----............. - 0x03, 0x87, 0x00, 0x00, // ------OOO----OOO---............. - 0x01, 0x83, 0x00, 0x00, // -------OO-----OO---............. - 0x00, 0x81, 0x00, 0x00, // --------O------O---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 172, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x00, 0x00, 0x0c, 0x00, // --------------------OO----...... - 0x00, 0x00, 0x0c, 0x00, // --------------------OO----...... - 0x00, 0x00, 0x0c, 0x00, // --------------------OO----...... - 0x00, 0x00, 0x0c, 0x00, // --------------------OO----...... - 0x00, 0x00, 0x0c, 0x00, // --------------------OO----...... - 0x00, 0x00, 0x0c, 0x00, // --------------------OO----...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 173, char width: 11 - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO-..................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO-..................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO-..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - - // ASCII: 174, char width: 31 - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--------------. - 0x00, 0x1f, 0xf0, 0x00, // -----------OOOOOOOOO-----------. - 0x00, 0x78, 0x3c, 0x00, // ---------OOOO-----OOOO---------. - 0x00, 0xe0, 0x0e, 0x00, // --------OOO---------OOO--------. - 0x01, 0x80, 0x07, 0x00, // -------OO------------OOO-------. - 0x03, 0x00, 0x03, 0x00, // ------OO--------------OO-------. - 0x03, 0x1f, 0xe1, 0x80, // ------OO---OOOOOOOO----OO------. - 0x06, 0x18, 0x70, 0x80, // -----OO----OO----OOO----O------. - 0x06, 0x18, 0x30, 0xc0, // -----OO----OO-----OO----OO-----. - 0x04, 0x18, 0x30, 0xc0, // -----O-----OO-----OO----OO-----. - 0x0c, 0x18, 0x30, 0x40, // ----OO-----OO-----OO-----O-----. - 0x0c, 0x18, 0x70, 0x40, // ----OO-----OO----OOO-----O-----. - 0x0c, 0x1f, 0xe0, 0x40, // ----OO-----OOOOOOOO------O-----. - 0x0c, 0x1b, 0xc0, 0x40, // ----OO-----OO-OOOO-------O-----. - 0x0c, 0x18, 0xe0, 0x40, // ----OO-----OO---OOO------O-----. - 0x0c, 0x18, 0x60, 0x40, // ----OO-----OO----OO------O-----. - 0x04, 0x18, 0x70, 0xc0, // -----O-----OO----OOO----OO-----. - 0x06, 0x18, 0x30, 0xc0, // -----OO----OO-----OO----OO-----. - 0x02, 0x18, 0x39, 0x80, // ------O----OO-----OOO--OO------. - 0x03, 0x00, 0x01, 0x80, // ------OO---------------OO------. - 0x01, 0x80, 0x03, 0x00, // -------OO-------------OO-------. - 0x00, 0xc0, 0x06, 0x00, // --------OO-----------OO--------. - 0x00, 0x70, 0x1c, 0x00, // ---------OOO-------OOO---------. - 0x00, 0x3f, 0xf8, 0x00, // ----------OOOOOOOOOOO----------. - 0x00, 0x0f, 0xe0, 0x00, // ------------OOOOOOO------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - - // ASCII: 175, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO---................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO---................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 176, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO-----................. - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO----................. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO---................. - 0x18, 0x30, 0x00, 0x00, // ---OO-----OO---................. - 0x18, 0x30, 0x00, 0x00, // ---OO-----OO---................. - 0x18, 0x30, 0x00, 0x00, // ---OO-----OO---................. - 0x18, 0x30, 0x00, 0x00, // ---OO-----OO---................. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO---................. - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO----................. - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO-----................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 177, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 178, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO----.................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO--.................... - 0x41, 0xc0, 0x00, 0x00, // -O-----OOO--.................... - 0x00, 0xc0, 0x00, 0x00, // --------OO--.................... - 0x00, 0xc0, 0x00, 0x00, // --------OO--.................... - 0x01, 0xc0, 0x00, 0x00, // -------OOO--.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x03, 0x00, 0x00, 0x00, // ------OO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x38, 0x00, 0x00, 0x00, // --OOO-------.................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO--.................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO--.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 179, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO---.................... - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO--.................... - 0x00, 0xc0, 0x00, 0x00, // --------OO--.................... - 0x00, 0xc0, 0x00, 0x00, // --------OO--.................... - 0x00, 0xc0, 0x00, 0x00, // --------OO--.................... - 0x03, 0xc0, 0x00, 0x00, // ------OOOO--.................... - 0x0f, 0x00, 0x00, 0x00, // ----OOOO----.................... - 0x03, 0xc0, 0x00, 0x00, // ------OOOO--.................... - 0x00, 0xc0, 0x00, 0x00, // --------OO--.................... - 0x00, 0xe0, 0x00, 0x00, // --------OOO-.................... - 0x00, 0xe0, 0x00, 0x00, // --------OOO-.................... - 0x40, 0xc0, 0x00, 0x00, // -O------OO--.................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO--.................... - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO---.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 180, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x70, 0x00, 0x00, // ---------OOO---................. - 0x00, 0x60, 0x00, 0x00, // ---------OO----................. - 0x00, 0xe0, 0x00, 0x00, // --------OOO----................. - 0x01, 0xc0, 0x00, 0x00, // -------OOO-----................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x03, 0x00, 0x00, 0x00, // ------OO-------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 181, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1f, 0x1f, 0xa0, 0x00, // ---OOOOO---OOOOOO-O............. - 0x1b, 0xff, 0xe0, 0x00, // ---OO-OOOOOOOOOOOOO............. - 0x19, 0xf9, 0xe0, 0x00, // ---OO--OOOOOO--OOOO............. - 0x18, 0x00, 0x00, 0x00, // ---OO--------------............. - 0x18, 0x00, 0x00, 0x00, // ---OO--------------............. - 0x18, 0x00, 0x00, 0x00, // ---OO--------------............. - 0x18, 0x00, 0x00, 0x00, // ---OO--------------............. - 0x18, 0x00, 0x00, 0x00, // ---OO--------------............. - 0x18, 0x00, 0x00, 0x00, // ---OO--------------............. - 0x18, 0x00, 0x00, 0x00, // ---OO--------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 182, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO---............. - 0x07, 0xff, 0x00, 0x00, // -----OOOOOOOOOOO---............. - 0x0f, 0xe3, 0x00, 0x00, // ----OOOOOOO---OO---............. - 0x1f, 0xe3, 0x00, 0x00, // ---OOOOOOOO---OO---............. - 0x1f, 0xe3, 0x00, 0x00, // ---OOOOOOOO---OO---............. - 0x1f, 0xe3, 0x00, 0x00, // ---OOOOOOOO---OO---............. - 0x3f, 0xe3, 0x00, 0x00, // --OOOOOOOOO---OO---............. - 0x3f, 0xe3, 0x00, 0x00, // --OOOOOOOOO---OO---............. - 0x3f, 0xe3, 0x00, 0x00, // --OOOOOOOOO---OO---............. - 0x1f, 0xe3, 0x00, 0x00, // ---OOOOOOOO---OO---............. - 0x1f, 0xe3, 0x00, 0x00, // ---OOOOOOOO---OO---............. - 0x0f, 0xe3, 0x00, 0x00, // ----OOOOOOO---OO---............. - 0x0f, 0xe3, 0x00, 0x00, // ----OOOOOOO---OO---............. - 0x03, 0xe3, 0x00, 0x00, // ------OOOOO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 183, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 184, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x00, 0xc0, 0x00, 0x00, // --------OO-----................. - 0x00, 0xc0, 0x00, 0x00, // --------OO-----................. - 0x00, 0xe0, 0x00, 0x00, // --------OOO----................. - 0x0d, 0xc0, 0x00, 0x00, // ----OO-OOO-----................. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO-----................. - 0x02, 0x00, 0x00, 0x00, // ------O--------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 185, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO----.................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO----.................... - 0x27, 0x00, 0x00, 0x00, // --O--OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-.................... - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 186, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO----.................. - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO---.................. - 0x38, 0x70, 0x00, 0x00, // --OOO----OOO--.................. - 0x30, 0x30, 0x00, 0x00, // --OO------OO--.................. - 0x30, 0x38, 0x00, 0x00, // --OO------OOO-.................. - 0x70, 0x18, 0x00, 0x00, // -OOO-------OO-.................. - 0x70, 0x18, 0x00, 0x00, // -OOO-------OO-.................. - 0x70, 0x18, 0x00, 0x00, // -OOO-------OO-.................. - 0x30, 0x38, 0x00, 0x00, // --OO------OOO-.................. - 0x30, 0x38, 0x00, 0x00, // --OO------OOO-.................. - 0x38, 0x70, 0x00, 0x00, // --OOO----OOO--.................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO--.................. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO----.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO--.................. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO--.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 187, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x10, 0x40, 0x00, 0x00, // ---O-----O---------............. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO--------............. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO-------............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO------............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x03, 0x8f, 0x00, 0x00, // ------OOO---OOOO---............. - 0x01, 0xc7, 0x00, 0x00, // -------OOO---OOO---............. - 0x01, 0xc7, 0x00, 0x00, // -------OOO---OOO---............. - 0x03, 0x8f, 0x00, 0x00, // ------OOO---OOOO---............. - 0x07, 0x1e, 0x00, 0x00, // -----OOO---OOOO----............. - 0x0e, 0x3c, 0x00, 0x00, // ----OOO---OOOO-----............. - 0x1c, 0x78, 0x00, 0x00, // ---OOO---OOOO------............. - 0x18, 0x70, 0x00, 0x00, // ---OO----OOO-------............. - 0x10, 0x60, 0x00, 0x00, // ---O-----OO--------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 188, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x1f, 0x00, 0x0c, 0x00, // ---OOOOO------------OO--------.. - 0x3f, 0x00, 0x1c, 0x00, // --OOOOOO-----------OOO--------.. - 0x27, 0x00, 0x18, 0x00, // --O--OOO-----------OO---------.. - 0x07, 0x00, 0x38, 0x00, // -----OOO----------OOO---------.. - 0x07, 0x00, 0x30, 0x00, // -----OOO----------OO----------.. - 0x07, 0x00, 0x70, 0x00, // -----OOO---------OOO----------.. - 0x07, 0x00, 0x60, 0x00, // -----OOO---------OO-----------.. - 0x07, 0x00, 0xe0, 0x00, // -----OOO--------OOO-----------.. - 0x07, 0x00, 0xc0, 0x00, // -----OOO--------OO------------.. - 0x07, 0x01, 0x80, 0x00, // -----OOO-------OO-------------.. - 0x07, 0x01, 0x80, 0x00, // -----OOO-------OO-------------.. - 0x07, 0x03, 0x01, 0xc0, // -----OOO------OO-------OOO----.. - 0x3f, 0xe7, 0x01, 0xc0, // --OOOOOOOOO--OOO-------OOO----.. - 0x3f, 0xe6, 0x03, 0xc0, // --OOOOOOOOO--OO-------OOOO----.. - 0x00, 0x0e, 0x06, 0xc0, // ------------OOO------OO-OO----.. - 0x00, 0x0c, 0x06, 0xc0, // ------------OO-------OO-OO----.. - 0x00, 0x1c, 0x0c, 0xc0, // -----------OOO------OO--OO----.. - 0x00, 0x18, 0x18, 0xc0, // -----------OO------OO---OO----.. - 0x00, 0x38, 0x18, 0xc0, // ----------OOO------OO---OO----.. - 0x00, 0x30, 0x30, 0xc0, // ----------OO------OO----OO----.. - 0x00, 0x70, 0x3f, 0xf0, // ---------OOO------OOOOOOOOOO--.. - 0x00, 0x60, 0x3f, 0xf0, // ---------OO-------OOOOOOOOOO--.. - 0x00, 0xc0, 0x00, 0xc0, // --------OO--------------OO----.. - 0x01, 0xc0, 0x00, 0xc0, // -------OOO--------------OO----.. - 0x01, 0x80, 0x00, 0xc0, // -------OO---------------OO----.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 189, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x1f, 0x00, 0x0c, 0x00, // ---OOOOO------------OO--------.. - 0x3f, 0x00, 0x1c, 0x00, // --OOOOOO-----------OOO--------.. - 0x27, 0x00, 0x18, 0x00, // --O--OOO-----------OO---------.. - 0x07, 0x00, 0x38, 0x00, // -----OOO----------OOO---------.. - 0x07, 0x00, 0x30, 0x00, // -----OOO----------OO----------.. - 0x07, 0x00, 0x70, 0x00, // -----OOO---------OOO----------.. - 0x07, 0x00, 0x60, 0x00, // -----OOO---------OO-----------.. - 0x07, 0x00, 0xe0, 0x00, // -----OOO--------OOO-----------.. - 0x07, 0x00, 0xc0, 0x00, // -----OOO--------OO------------.. - 0x07, 0x01, 0x80, 0x00, // -----OOO-------OO-------------.. - 0x07, 0x01, 0x80, 0x00, // -----OOO-------OO-------------.. - 0x07, 0x03, 0x1f, 0x80, // -----OOO------OO---OOOOOO-----.. - 0x3f, 0xe7, 0x3f, 0xe0, // --OOOOOOOOO--OOO--OOOOOOOOO---.. - 0x3f, 0xe6, 0x20, 0xe0, // --OOOOOOOOO--OO---O-----OOO---.. - 0x00, 0x0e, 0x00, 0x60, // ------------OOO----------OO---.. - 0x00, 0x0c, 0x00, 0x60, // ------------OO-----------OO---.. - 0x00, 0x1c, 0x00, 0xe0, // -----------OOO----------OOO---.. - 0x00, 0x18, 0x00, 0xc0, // -----------OO-----------OO----.. - 0x00, 0x38, 0x01, 0x80, // ----------OOO----------OO-----.. - 0x00, 0x30, 0x03, 0x80, // ----------OO----------OOO-----.. - 0x00, 0x70, 0x07, 0x00, // ---------OOO---------OOO------.. - 0x00, 0x60, 0x0e, 0x00, // ---------OO---------OOO-------.. - 0x00, 0xc0, 0x1c, 0x00, // --------OO---------OOO--------.. - 0x01, 0xc0, 0x3f, 0xe0, // -------OOO--------OOOOOOOOO---.. - 0x01, 0x80, 0x3f, 0xe0, // -------OO---------OOOOOOOOO---.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 190, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x3f, 0x80, 0x0c, 0x00, // --OOOOOOO-----------OO--------.. - 0x3f, 0xc0, 0x1c, 0x00, // --OOOOOOOO---------OOO--------.. - 0x00, 0xc0, 0x18, 0x00, // --------OO---------OO---------.. - 0x00, 0xc0, 0x38, 0x00, // --------OO--------OOO---------.. - 0x00, 0xc0, 0x30, 0x00, // --------OO--------OO----------.. - 0x03, 0xc0, 0x70, 0x00, // ------OOOO-------OOO----------.. - 0x0f, 0x00, 0x60, 0x00, // ----OOOO---------OO-----------.. - 0x03, 0xc0, 0xe0, 0x00, // ------OOOO------OOO-----------.. - 0x00, 0xc0, 0xc0, 0x00, // --------OO------OO------------.. - 0x00, 0xe1, 0x80, 0x00, // --------OOO----OO-------------.. - 0x00, 0xe1, 0x80, 0x00, // --------OOO----OO-------------.. - 0x40, 0xc3, 0x01, 0xc0, // -O------OO----OO-------OOO----.. - 0x7f, 0xc7, 0x01, 0xc0, // -OOOOOOOOO---OOO-------OOO----.. - 0x3f, 0x86, 0x03, 0xc0, // --OOOOOOO----OO-------OOOO----.. - 0x00, 0x0e, 0x06, 0xc0, // ------------OOO------OO-OO----.. - 0x00, 0x0c, 0x06, 0xc0, // ------------OO-------OO-OO----.. - 0x00, 0x1c, 0x0c, 0xc0, // -----------OOO------OO--OO----.. - 0x00, 0x18, 0x18, 0xc0, // -----------OO------OO---OO----.. - 0x00, 0x38, 0x18, 0xc0, // ----------OOO------OO---OO----.. - 0x00, 0x30, 0x30, 0xc0, // ----------OO------OO----OO----.. - 0x00, 0x70, 0x3f, 0xf0, // ---------OOO------OOOOOOOOOO--.. - 0x00, 0x60, 0x3f, 0xf0, // ---------OO-------OOOOOOOOOO--.. - 0x00, 0xc0, 0x00, 0xc0, // --------OO--------------OO----.. - 0x01, 0xc0, 0x00, 0xc0, // -------OOO--------------OO----.. - 0x01, 0x80, 0x00, 0xc0, // -------OO---------------OO----.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 191, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x07, 0x00, 0x00, 0x00, // -----OOO--------................ - 0x0e, 0x00, 0x00, 0x00, // ----OOO---------................ - 0x1e, 0x00, 0x00, 0x00, // ---OOOO---------................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3c, 0x04, 0x00, 0x00, // --OOOO-------O--................ - 0x1e, 0x3c, 0x00, 0x00, // ---OOOO---OOOO--................ - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO--................ - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 192, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-----------........... - 0x00, 0xe0, 0x00, 0x00, // --------OOO----------........... - 0x00, 0x60, 0x00, 0x00, // ---------OO----------........... - 0x00, 0x30, 0x00, 0x00, // ----------OO---------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0x9c, 0x00, 0x00, // -------OO--OOO-------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO------........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x06, 0x07, 0x00, 0x00, // -----OO------OOO-----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x3f, 0xff, 0xc0, 0x00, // --OOOOOOOOOOOOOOOO---........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x78, 0x00, 0xe0, 0x00, // -OOOO-----------OOO--........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0xf0, 0x00, 0x78, 0x00, // OOOO-------------OOOO........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 193, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x18, 0x00, 0x00, // -----------OO--------........... - 0x00, 0x38, 0x00, 0x00, // ----------OOO--------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0x60, 0x00, 0x00, // ---------OO----------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0x9c, 0x00, 0x00, // -------OO--OOO-------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO------........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x06, 0x07, 0x00, 0x00, // -----OO------OOO-----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x3f, 0xff, 0xc0, 0x00, // --OOOOOOOOOOOOOOOO---........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x78, 0x00, 0xe0, 0x00, // -OOOO-----------OOO--........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0xf0, 0x00, 0x78, 0x00, // OOOO-------------OOOO........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 194, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0xf0, 0x00, 0x00, // --------OOOO---------........... - 0x00, 0xd8, 0x00, 0x00, // --------OO-OO--------........... - 0x01, 0x8c, 0x00, 0x00, // -------OO---OO-------........... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0x9c, 0x00, 0x00, // -------OO--OOO-------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO------........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x06, 0x07, 0x00, 0x00, // -----OO------OOO-----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x3f, 0xff, 0xc0, 0x00, // --OOOOOOOOOOOOOOOO---........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x78, 0x00, 0xe0, 0x00, // -OOOO-----------OOO--........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0xf0, 0x00, 0x78, 0x00, // OOOO-------------OOOO........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 195, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x01, 0xc6, 0x00, 0x00, // -------OOO---OO------........... - 0x03, 0xfe, 0x00, 0x00, // ------OOOOOOOOO------........... - 0x06, 0x3e, 0x00, 0x00, // -----OO---OOOOO------........... - 0x06, 0x08, 0x00, 0x00, // -----OO-----O--------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0x9c, 0x00, 0x00, // -------OO--OOO-------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO------........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x06, 0x07, 0x00, 0x00, // -----OO------OOO-----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x3f, 0xff, 0xc0, 0x00, // --OOOOOOOOOOOOOOOO---........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x78, 0x00, 0xe0, 0x00, // -OOOO-----------OOO--........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0xf0, 0x00, 0x78, 0x00, // OOOO-------------OOOO........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 196, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0x9c, 0x00, 0x00, // -------OO--OOO-------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO------........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x06, 0x07, 0x00, 0x00, // -----OO------OOO-----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x3f, 0xff, 0xc0, 0x00, // --OOOOOOOOOOOOOOOO---........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x78, 0x00, 0xe0, 0x00, // -OOOO-----------OOO--........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0xf0, 0x00, 0x78, 0x00, // OOOO-------------OOOO........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 197, char width: 21 - 0x00, 0x20, 0x00, 0x00, // ----------O----------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0x8c, 0x00, 0x00, // -------OO---OO-------........... - 0x03, 0x06, 0x00, 0x00, // ------OO-----OO------........... - 0x03, 0x06, 0x00, 0x00, // ------OO-----OO------........... - 0x01, 0x8c, 0x00, 0x00, // -------OO---OO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0x9c, 0x00, 0x00, // -------OO--OOO-------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO------........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x1e, 0x03, 0x80, 0x00, // ---OOOO-------OOO----........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x3f, 0xff, 0xc0, 0x00, // --OOOOOOOOOOOOOOOO---........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x78, 0x00, 0xe0, 0x00, // -OOOO-----------OOO--........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0xf0, 0x00, 0x78, 0x00, // OOOO-------------OOOO........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 198, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x7f, 0xff, 0xf0, // ---------OOOOOOOOOOOOOOOOOOO--.. - 0x00, 0x7f, 0xff, 0xf0, // ---------OOOOOOOOOOOOOOOOOOO--.. - 0x00, 0x7f, 0xff, 0xf0, // ---------OOOOOOOOOOOOOOOOOOO--.. - 0x00, 0xe7, 0x80, 0x00, // --------OOO--OOOO-------------.. - 0x00, 0xe7, 0x80, 0x00, // --------OOO--OOOO-------------.. - 0x01, 0xe7, 0x80, 0x00, // -------OOOO--OOOO-------------.. - 0x01, 0xc7, 0x80, 0x00, // -------OOO---OOOO-------------.. - 0x01, 0xc7, 0x80, 0x00, // -------OOO---OOOO-------------.. - 0x03, 0x87, 0x80, 0x00, // ------OOO----OOOO-------------.. - 0x03, 0x87, 0x80, 0x00, // ------OOO----OOOO-------------.. - 0x03, 0x87, 0xff, 0xe0, // ------OOO----OOOOOOOOOOOOOO---.. - 0x07, 0x07, 0xff, 0xe0, // -----OOO-----OOOOOOOOOOOOOO---.. - 0x07, 0x07, 0xff, 0xe0, // -----OOO-----OOOOOOOOOOOOOO---.. - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO-------------.. - 0x0e, 0x07, 0x80, 0x00, // ----OOO------OOOO-------------.. - 0x0e, 0x07, 0x80, 0x00, // ----OOO------OOOO-------------.. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO-------------.. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO-------------.. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO-------------.. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO-------------.. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO-------------.. - 0x78, 0x07, 0x80, 0x00, // -OOOO--------OOOO-------------.. - 0x70, 0x07, 0xff, 0xf0, // -OOO---------OOOOOOOOOOOOOOO--.. - 0x70, 0x07, 0xff, 0xf0, // -OOO---------OOOOOOOOOOOOOOO--.. - 0xe0, 0x07, 0xff, 0xf0, // OOO----------OOOOOOOOOOOOOOO--.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 199, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO----........... - 0x01, 0xff, 0xe0, 0x00, // -------OOOOOOOOOOOO--........... - 0x07, 0xff, 0xf0, 0x00, // -----OOOOOOOOOOOOOOO-........... - 0x0f, 0x80, 0x70, 0x00, // ----OOOOO--------OOO-........... - 0x0f, 0x00, 0x30, 0x00, // ----OOOO----------OO-........... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO--------------........... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------------........... - 0x3c, 0x00, 0x00, 0x00, // --OOOO---------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x3c, 0x00, 0x00, 0x00, // --OOOO---------------........... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------------........... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------------........... - 0x0e, 0x00, 0x10, 0x00, // ----OOO------------O-........... - 0x0f, 0x00, 0x70, 0x00, // ----OOOO---------OOO-........... - 0x07, 0xe1, 0xf0, 0x00, // -----OOOOOO----OOOOO-........... - 0x03, 0xff, 0xe0, 0x00, // ------OOOOOOOOOOOOO--........... - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO----........... - 0x00, 0x0c, 0x00, 0x00, // ------------OO-------........... - 0x00, 0x06, 0x00, 0x00, // -------------OO------........... - 0x00, 0x06, 0x00, 0x00, // -------------OO------........... - 0x00, 0x07, 0x00, 0x00, // -------------OOO-----........... - 0x00, 0x6e, 0x00, 0x00, // ---------OO-OOO------........... - 0x00, 0x7e, 0x00, 0x00, // ---------OOOOOO------........... - 0x00, 0x10, 0x00, 0x00, // -----------O---------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 200, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 201, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x18, 0x00, 0x00, // -----------OO------............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 202, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-------............. - 0x00, 0xd8, 0x00, 0x00, // --------OO-OO------............. - 0x01, 0x8c, 0x00, 0x00, // -------OO---OO-----............. - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 203, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO----............. - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO----............. - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO----............. - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 204, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x70, 0x00, 0x00, 0x00, // -OOO-----....................... - 0x38, 0x00, 0x00, 0x00, // --OOO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x0c, 0x00, 0x00, 0x00, // ----OO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 205, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x06, 0x00, 0x00, 0x00, // -----OO--....................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO--....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 206, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x3c, 0x00, 0x00, 0x00, // --OOOO---....................... - 0x36, 0x00, 0x00, 0x00, // --OO-OO--....................... - 0x63, 0x00, 0x00, 0x00, // -OO---OO-....................... - 0xc3, 0x80, 0x00, 0x00, // OO----OOO....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 207, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0xe3, 0x80, 0x00, 0x00, // OOO---OOO....................... - 0xe3, 0x80, 0x00, 0x00, // OOO---OOO....................... - 0xe3, 0x80, 0x00, 0x00, // OOO---OOO....................... - 0xe3, 0x80, 0x00, 0x00, // OOO---OOO....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 208, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO-----------........ - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO--------........ - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO------........ - 0x1c, 0x03, 0xe0, 0x00, // ---OOO--------OOOOO-----........ - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO----........ - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO----........ - 0x1c, 0x00, 0x78, 0x00, // ---OOO-----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x3c, 0x00, // ---OOO------------OOOO--........ - 0x1c, 0x00, 0x1c, 0x00, // ---OOO-------------OOO--........ - 0xff, 0xe0, 0x1c, 0x00, // OOOOOOOOOOO--------OOO--........ - 0xff, 0xe0, 0x1c, 0x00, // OOOOOOOOOOO--------OOO--........ - 0x1c, 0x00, 0x1c, 0x00, // ---OOO-------------OOO--........ - 0x1c, 0x00, 0x1c, 0x00, // ---OOO-------------OOO--........ - 0x1c, 0x00, 0x3c, 0x00, // ---OOO------------OOOO--........ - 0x1c, 0x00, 0x3c, 0x00, // ---OOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x78, 0x00, // ---OOO-----------OOOO---........ - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO----........ - 0x1c, 0x03, 0xe0, 0x00, // ---OOO--------OOOOO-----........ - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO------........ - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO-------........ - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO----------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 209, char width: 23 - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0xe3, 0x00, 0x00, // --------OOO---OO-------......... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO-------......... - 0x03, 0x1f, 0x00, 0x00, // ------OO---OOOOO-------......... - 0x03, 0x04, 0x00, 0x00, // ------OO-----O---------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x1e, 0x00, 0x70, 0x00, // ---OOOO----------OOO---......... - 0x1f, 0x00, 0x70, 0x00, // ---OOOOO---------OOO---......... - 0x1f, 0x00, 0x70, 0x00, // ---OOOOO---------OOO---......... - 0x1f, 0x80, 0x70, 0x00, // ---OOOOOO--------OOO---......... - 0x1f, 0x80, 0x70, 0x00, // ---OOOOOO--------OOO---......... - 0x1d, 0xc0, 0x70, 0x00, // ---OOO-OOO-------OOO---......... - 0x1d, 0xc0, 0x70, 0x00, // ---OOO-OOO-------OOO---......... - 0x1d, 0xe0, 0x70, 0x00, // ---OOO-OOOO------OOO---......... - 0x1c, 0xe0, 0x70, 0x00, // ---OOO--OOO------OOO---......... - 0x1c, 0xf0, 0x70, 0x00, // ---OOO--OOOO-----OOO---......... - 0x1c, 0x70, 0x70, 0x00, // ---OOO---OOO-----OOO---......... - 0x1c, 0x70, 0x70, 0x00, // ---OOO---OOO-----OOO---......... - 0x1c, 0x38, 0x70, 0x00, // ---OOO----OOO----OOO---......... - 0x1c, 0x38, 0x70, 0x00, // ---OOO----OOO----OOO---......... - 0x1c, 0x1c, 0x70, 0x00, // ---OOO-----OOO---OOO---......... - 0x1c, 0x1c, 0x70, 0x00, // ---OOO-----OOO---OOO---......... - 0x1c, 0x0e, 0x70, 0x00, // ---OOO------OOO--OOO---......... - 0x1c, 0x0e, 0x70, 0x00, // ---OOO------OOO--OOO---......... - 0x1c, 0x07, 0x70, 0x00, // ---OOO-------OOO-OOO---......... - 0x1c, 0x07, 0x70, 0x00, // ---OOO-------OOO-OOO---......... - 0x1c, 0x03, 0xf0, 0x00, // ---OOO--------OOOOOO---......... - 0x1c, 0x03, 0xf0, 0x00, // ---OOO--------OOOOOO---......... - 0x1c, 0x01, 0xf0, 0x00, // ---OOO---------OOOOO---......... - 0x1c, 0x01, 0xf0, 0x00, // ---OOO---------OOOOO---......... - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO---......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - - // ASCII: 210, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x70, 0x00, 0x00, // ---------OOO------------........ - 0x00, 0x38, 0x00, 0x00, // ----------OOO-----------........ - 0x00, 0x18, 0x00, 0x00, // -----------OO-----------........ - 0x00, 0x0c, 0x00, 0x00, // ------------OO----------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x0f, 0x80, 0xf0, 0x00, // ----OOOOO-------OOOO----........ - 0x0e, 0x00, 0x70, 0x00, // ----OOO----------OOO----........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x07, 0xc3, 0xe0, 0x00, // -----OOOOO----OOOOO-----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 211, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x06, 0x00, 0x00, // -------------OO---------........ - 0x00, 0x0e, 0x00, 0x00, // ------------OOO---------........ - 0x00, 0x1c, 0x00, 0x00, // -----------OOO----------........ - 0x00, 0x18, 0x00, 0x00, // -----------OO-----------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x0f, 0x80, 0xf0, 0x00, // ----OOOOO-------OOOO----........ - 0x0e, 0x00, 0x70, 0x00, // ----OOO----------OOO----........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x07, 0xc3, 0xe0, 0x00, // -----OOOOO----OOOOO-----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 212, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO----------........ - 0x00, 0x36, 0x00, 0x00, // ----------OO-OO---------........ - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO--------........ - 0x00, 0xc3, 0x80, 0x00, // --------OO----OOO-------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x0f, 0x80, 0xf0, 0x00, // ----OOOOO-------OOOO----........ - 0x0e, 0x00, 0x70, 0x00, // ----OOO----------OOO----........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x07, 0xc3, 0xe0, 0x00, // -----OOOOO----OOOOO-----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 213, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x71, 0x80, 0x00, // ---------OOO---OO-------........ - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO-------........ - 0x01, 0x8f, 0x80, 0x00, // -------OO---OOOOO-------........ - 0x01, 0x82, 0x00, 0x00, // -------OO-----O---------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x0f, 0x80, 0xf0, 0x00, // ----OOOOO-------OOOO----........ - 0x0e, 0x00, 0x70, 0x00, // ----OOO----------OOO----........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x07, 0xc3, 0xe0, 0x00, // -----OOOOO----OOOOO-----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 214, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xe3, 0x80, 0x00, // --------OOO---OOO-------........ - 0x00, 0xe3, 0x80, 0x00, // --------OOO---OOO-------........ - 0x00, 0xe3, 0x80, 0x00, // --------OOO---OOO-------........ - 0x00, 0xe3, 0x80, 0x00, // --------OOO---OOO-------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x0f, 0x80, 0xf0, 0x00, // ----OOOOO-------OOOO----........ - 0x0e, 0x00, 0x70, 0x00, // ----OOO----------OOO----........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x07, 0xc3, 0xe0, 0x00, // -----OOOOO----OOOOO-----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 215, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x06, 0x00, 0x10, 0x00, // -----OO------------O------...... - 0x0f, 0x00, 0x38, 0x00, // ----OOOO----------OOO-----...... - 0x07, 0x00, 0x78, 0x00, // -----OOO---------OOOO-----...... - 0x03, 0x80, 0xf0, 0x00, // ------OOO-------OOOO------...... - 0x01, 0xc1, 0xe0, 0x00, // -------OOO-----OOOO-------...... - 0x00, 0xe3, 0xc0, 0x00, // --------OOO---OOOO--------...... - 0x00, 0xf3, 0x80, 0x00, // --------OOOO--OOO---------...... - 0x00, 0x7f, 0x00, 0x00, // ---------OOOOOOO----------...... - 0x00, 0x3e, 0x00, 0x00, // ----------OOOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x3f, 0x00, 0x00, // ----------OOOOOO----------...... - 0x00, 0x7f, 0x80, 0x00, // ---------OOOOOOOO---------...... - 0x00, 0xf3, 0x80, 0x00, // --------OOOO--OOO---------...... - 0x01, 0xe1, 0xc0, 0x00, // -------OOOO----OOO--------...... - 0x03, 0xc0, 0xe0, 0x00, // ------OOOO------OOO-------...... - 0x07, 0x80, 0x70, 0x00, // -----OOOO--------OOO------...... - 0x07, 0x00, 0x78, 0x00, // -----OOO---------OOOO-----...... - 0x06, 0x00, 0x38, 0x00, // -----OO-----------OOO-----...... - 0x00, 0x00, 0x10, 0x00, // -------------------O------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 216, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x0c, 0x00, // --------OOOOOOOO----OO--........ - 0x03, 0xff, 0xdc, 0x00, // ------OOOOOOOOOOOO-OOO--........ - 0x07, 0xff, 0xf8, 0x00, // -----OOOOOOOOOOOOOOOO---........ - 0x0f, 0x81, 0xf0, 0x00, // ----OOOOO------OOOOO----........ - 0x0e, 0x00, 0x70, 0x00, // ----OOO----------OOO----........ - 0x1e, 0x00, 0xf8, 0x00, // ---OOOO---------OOOOO---........ - 0x1c, 0x01, 0xf8, 0x00, // ---OOO---------OOOOOO---........ - 0x3c, 0x01, 0xbc, 0x00, // --OOOO---------OO-OOOO--........ - 0x38, 0x03, 0x9c, 0x00, // --OOO---------OOO--OOO--........ - 0x38, 0x07, 0x1c, 0x00, // --OOO--------OOO---OOO--........ - 0x38, 0x0e, 0x1c, 0x00, // --OOO-------OOO----OOO--........ - 0x38, 0x0c, 0x1c, 0x00, // --OOO-------OO-----OOO--........ - 0x38, 0x18, 0x1c, 0x00, // --OOO------OO------OOO--........ - 0x38, 0x38, 0x1c, 0x00, // --OOO-----OOO------OOO--........ - 0x38, 0x70, 0x1c, 0x00, // --OOO----OOO-------OOO--........ - 0x38, 0x60, 0x1c, 0x00, // --OOO----OO--------OOO--........ - 0x38, 0xc0, 0x1c, 0x00, // --OOO---OO---------OOO--........ - 0x3d, 0xc0, 0x3c, 0x00, // --OOOO-OOO--------OOOO--........ - 0x1f, 0x80, 0x38, 0x00, // ---OOOOOO---------OOO---........ - 0x1f, 0x00, 0x38, 0x00, // ---OOOOO----------OOO---........ - 0x0e, 0x00, 0x78, 0x00, // ----OOO----------OOOO---........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x1f, 0xc3, 0xe0, 0x00, // ---OOOOOOO----OOOOO-----........ - 0x3b, 0xff, 0xc0, 0x00, // --OOO-OOOOOOOOOOOO------........ - 0x30, 0xff, 0x00, 0x00, // --OO----OOOOOOOO--------........ - 0x30, 0x00, 0x00, 0x00, // --OO--------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 217, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0xe0, 0x00, 0x00, // --------OOO-----------.......... - 0x00, 0x70, 0x00, 0x00, // ---------OOO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x18, 0x00, 0x00, // -----------OO---------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO--.......... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO---.......... - 0x1e, 0x00, 0xe0, 0x00, // ---OOOO---------OOO---.......... - 0x0e, 0x01, 0xe0, 0x00, // ----OOO--------OOOO---.......... - 0x0f, 0xc7, 0xc0, 0x00, // ----OOOOOO---OOOOO----.......... - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO-----.......... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 218, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x0c, 0x00, 0x00, // ------------OO--------.......... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO--------.......... - 0x00, 0x38, 0x00, 0x00, // ----------OOO---------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO--.......... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO---.......... - 0x1e, 0x00, 0xe0, 0x00, // ---OOOO---------OOO---.......... - 0x0e, 0x01, 0xe0, 0x00, // ----OOO--------OOOO---.......... - 0x0f, 0xc7, 0xc0, 0x00, // ----OOOOOO---OOOOO----.......... - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO-----.......... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 219, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x78, 0x00, 0x00, // ---------OOOO---------.......... - 0x00, 0x6c, 0x00, 0x00, // ---------OO-OO--------.......... - 0x00, 0xc6, 0x00, 0x00, // --------OO---OO-------.......... - 0x01, 0x87, 0x00, 0x00, // -------OO----OOO------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO--.......... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO---.......... - 0x1e, 0x00, 0xe0, 0x00, // ---OOOO---------OOO---.......... - 0x0e, 0x01, 0xe0, 0x00, // ----OOO--------OOOO---.......... - 0x0f, 0xc7, 0xc0, 0x00, // ----OOOOOO---OOOOO----.......... - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO-----.......... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 220, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x01, 0xc7, 0x00, 0x00, // -------OOO---OOO------.......... - 0x01, 0xc7, 0x00, 0x00, // -------OOO---OOO------.......... - 0x01, 0xc7, 0x00, 0x00, // -------OOO---OOO------.......... - 0x01, 0xc7, 0x00, 0x00, // -------OOO---OOO------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO--.......... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO---.......... - 0x1e, 0x00, 0xe0, 0x00, // ---OOOO---------OOO---.......... - 0x0e, 0x01, 0xe0, 0x00, // ----OOO--------OOOO---.......... - 0x0f, 0xc7, 0xc0, 0x00, // ----OOOOOO---OOOOO----.......... - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO-----.......... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 221, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xc0, 0x00, 0x00, // --------OO---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0xe0, 0x01, 0xe0, 0x00, // OOO------------OOOO............. - 0x70, 0x01, 0xc0, 0x00, // -OOO-----------OOO-............. - 0x78, 0x03, 0x80, 0x00, // -OOOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x0e, 0x0e, 0x00, 0x00, // ----OOO-----OOO----............. - 0x0f, 0x1c, 0x00, 0x00, // ----OOOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x03, 0xb8, 0x00, 0x00, // ------OOO-OOO------............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO------............. - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO-------............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 222, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1c, 0x1f, 0x00, 0x00, // ---OOO-----OOOOO---............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x1f, 0x00, 0x00, // ---OOO-----OOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 223, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO--------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x0e, 0x00, 0x00, // ---OOOO-----OOO----............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x1c, 0x1f, 0x00, 0x00, // ---OOO-----OOOOO---............. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO------............. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO-------............. - 0x1c, 0x60, 0x00, 0x00, // ---OOO---OO--------............. - 0x1c, 0x60, 0x00, 0x00, // ---OOO---OO--------............. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO-------............. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO-------............. - 0x1c, 0x7c, 0x00, 0x00, // ---OOO---OOOOO-----............. - 0x1c, 0x3e, 0x00, 0x00, // ---OOO----OOOOO----............. - 0x1c, 0x1f, 0x00, 0x00, // ---OOO-----OOOOO---............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1d, 0x83, 0x80, 0x00, // ---OOO-OO-----OOO--............. - 0x1d, 0xff, 0x80, 0x00, // ---OOO-OOOOOOOOOO--............. - 0x1d, 0xfe, 0x00, 0x00, // ---OOO-OOOOOOOO----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 224, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x0e, 0x00, 0x00, 0x00, // ----OOO------------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x03, 0x00, 0x00, 0x00, // ------OO-----------............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x00, 0xc0, 0x00, 0x00, // --------OO---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x10, 0x0e, 0x00, 0x00, // ---O--------OOO----............. - 0x00, 0x06, 0x00, 0x00, // -------------OO----............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO---............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x3c, 0x3f, 0x00, 0x00, // --OOOO----OOOOOO---............. - 0x1f, 0xf7, 0x00, 0x00, // ---OOOOOOOOO-OOO---............. - 0x0f, 0xe7, 0x00, 0x00, // ----OOOOOOO--OOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 225, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xc0, 0x00, 0x00, // --------OO---------............. - 0x01, 0x80, 0x00, 0x00, // -------OO----------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x10, 0x0e, 0x00, 0x00, // ---O--------OOO----............. - 0x00, 0x06, 0x00, 0x00, // -------------OO----............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO---............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x3c, 0x3f, 0x00, 0x00, // --OOOO----OOOOOO---............. - 0x1f, 0xf7, 0x00, 0x00, // ---OOOOOOOOO-OOO---............. - 0x0f, 0xe7, 0x00, 0x00, // ----OOOOOOO--OOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 226, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO--------............. - 0x03, 0x60, 0x00, 0x00, // ------OO-OO--------............. - 0x07, 0x30, 0x00, 0x00, // -----OOO--OO-------............. - 0x06, 0x38, 0x00, 0x00, // -----OO---OOO------............. - 0x0c, 0x18, 0x00, 0x00, // ----OO-----OO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x10, 0x0e, 0x00, 0x00, // ---O--------OOO----............. - 0x00, 0x06, 0x00, 0x00, // -------------OO----............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO---............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x3c, 0x3f, 0x00, 0x00, // --OOOO----OOOOOO---............. - 0x1f, 0xf7, 0x00, 0x00, // ---OOOOOOOOO-OOO---............. - 0x0f, 0xe7, 0x00, 0x00, // ----OOOOOOO--OOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 227, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0x8c, 0x00, 0x00, // -----OOOO---OO-----............. - 0x0f, 0xd8, 0x00, 0x00, // ----OOOOOO-OO------............. - 0x0c, 0xf8, 0x00, 0x00, // ----OO--OOOOO------............. - 0x0c, 0x70, 0x00, 0x00, // ----OO---OOO-------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x10, 0x0e, 0x00, 0x00, // ---O--------OOO----............. - 0x00, 0x06, 0x00, 0x00, // -------------OO----............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO---............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x3c, 0x3f, 0x00, 0x00, // --OOOO----OOOOOO---............. - 0x1f, 0xf7, 0x00, 0x00, // ---OOOOOOOOO-OOO---............. - 0x0f, 0xe7, 0x00, 0x00, // ----OOOOOOO--OOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 228, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO------............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO------............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO------............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x10, 0x0e, 0x00, 0x00, // ---O--------OOO----............. - 0x00, 0x06, 0x00, 0x00, // -------------OO----............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO---............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x3c, 0x3f, 0x00, 0x00, // --OOOO----OOOOOO---............. - 0x1f, 0xf7, 0x00, 0x00, // ---OOOOOOOOO-OOO---............. - 0x0f, 0xe7, 0x00, 0x00, // ----OOOOOOO--OOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 229, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-------............. - 0x07, 0x30, 0x00, 0x00, // -----OOO--OO-------............. - 0x06, 0x18, 0x00, 0x00, // -----OO----OO------............. - 0x04, 0x18, 0x00, 0x00, // -----O-----OO------............. - 0x04, 0x18, 0x00, 0x00, // -----O-----OO------............. - 0x06, 0x30, 0x00, 0x00, // -----OO---OO-------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x10, 0x0e, 0x00, 0x00, // ---O--------OOO----............. - 0x00, 0x06, 0x00, 0x00, // -------------OO----............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO---............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x3c, 0x3f, 0x00, 0x00, // --OOOO----OOOOOO---............. - 0x1f, 0xf7, 0x00, 0x00, // ---OOOOOOOOO-OOO---............. - 0x0f, 0xe7, 0x00, 0x00, // ----OOOOOOO--OOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 230, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x07, 0xf0, 0x3f, 0x00, // -----OOOOOOO------OOOOOO------.. - 0x1f, 0xfc, 0xff, 0xc0, // ---OOOOOOOOOOO--OOOOOOOOOO----.. - 0x1f, 0xff, 0xff, 0xe0, // ---OOOOOOOOOOOOOOOOOOOOOOOO---.. - 0x10, 0x0f, 0xc0, 0xe0, // ---O--------OOOOOO------OOO---.. - 0x00, 0x07, 0x80, 0x70, // -------------OOOO--------OOO--.. - 0x00, 0x07, 0x00, 0x70, // -------------OOO---------OOO--.. - 0x00, 0x07, 0x00, 0x70, // -------------OOO---------OOO--.. - 0x01, 0xff, 0x00, 0x30, // -------OOOOOOOOO----------OO--.. - 0x0f, 0xff, 0xff, 0xf0, // ----OOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x1f, 0xff, 0xff, 0xf0, // ---OOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO--------------.. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--------------.. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--------------.. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--------------.. - 0x38, 0x0f, 0x80, 0x00, // --OOO-------OOOOO-------------.. - 0x38, 0x0f, 0xc0, 0x10, // --OOO-------OOOOOO---------O--.. - 0x3c, 0x3d, 0xe0, 0x70, // --OOOO----OOOO-OOOO------OOO--.. - 0x1f, 0xf8, 0xff, 0xf0, // ---OOOOOOOOOO---OOOOOOOOOOOO--.. - 0x0f, 0xf0, 0x7f, 0xe0, // ----OOOOOOOO-----OOOOOOOOOO---.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 231, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO----............... - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO--............... - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO--............... - 0x1e, 0x02, 0x00, 0x00, // ---OOOO-------O--............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x3c, 0x00, 0x00, 0x00, // --OOOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x0f, 0x06, 0x00, 0x00, // ----OOOO-----OO--............... - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO--............... - 0x03, 0xfc, 0x00, 0x00, // ------OOOOOOOO---............... - 0x00, 0x60, 0x00, 0x00, // ---------OO------............... - 0x00, 0x30, 0x00, 0x00, // ----------OO-----............... - 0x00, 0x30, 0x00, 0x00, // ----------OO-----............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x03, 0x70, 0x00, 0x00, // ------OO-OOO-----............... - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-----............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 232, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x01, 0x80, 0x00, 0x00, // -------OO----------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x3c, 0x00, 0x00, 0x00, // --OOOO-------------............. - 0x1e, 0x00, 0x80, 0x00, // ---OOOO---------O--............. - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO--............. - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO--............. - 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 233, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x1c, 0x00, 0x00, // -----------OOO-----............. - 0x00, 0x18, 0x00, 0x00, // -----------OO------............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0xc0, 0x00, 0x00, // --------OO---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x3c, 0x00, 0x00, 0x00, // --OOOO-------------............. - 0x1e, 0x00, 0x80, 0x00, // ---OOOO---------O--............. - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO--............. - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO--............. - 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 234, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-------............. - 0x01, 0xb0, 0x00, 0x00, // -------OO-OO-------............. - 0x03, 0x98, 0x00, 0x00, // ------OOO--OO------............. - 0x03, 0x1c, 0x00, 0x00, // ------OO---OOO-----............. - 0x06, 0x0c, 0x00, 0x00, // -----OO-----OO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x3c, 0x00, 0x00, 0x00, // --OOOO-------------............. - 0x1e, 0x00, 0x80, 0x00, // ---OOOO---------O--............. - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO--............. - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO--............. - 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 235, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x3c, 0x00, 0x00, 0x00, // --OOOO-------------............. - 0x1e, 0x00, 0x80, 0x00, // ---OOOO---------O--............. - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO--............. - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO--............. - 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 236, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0xe0, 0x00, 0x00, 0x00, // OOO------....................... - 0x70, 0x00, 0x00, 0x00, // -OOO-----....................... - 0x30, 0x00, 0x00, 0x00, // --OO-----....................... - 0x38, 0x00, 0x00, 0x00, // --OOO----....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x0c, 0x00, 0x00, 0x00, // ----OO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 237, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x03, 0x80, 0x00, 0x00, // ------OOO....................... - 0x03, 0x00, 0x00, 0x00, // ------OO-....................... - 0x07, 0x00, 0x00, 0x00, // -----OOO-....................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO--....................... - 0x0c, 0x00, 0x00, 0x00, // ----OO---....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 238, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO--....................... - 0x36, 0x00, 0x00, 0x00, // --OO-OO--....................... - 0x73, 0x00, 0x00, 0x00, // -OOO--OO-....................... - 0x63, 0x80, 0x00, 0x00, // -OO---OOO....................... - 0xc1, 0x80, 0x00, 0x00, // OO-----OO....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 239, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0xe3, 0x80, 0x00, 0x00, // OOO---OOO....................... - 0xe3, 0x80, 0x00, 0x00, // OOO---OOO....................... - 0xe3, 0x80, 0x00, 0x00, // OOO---OOO....................... - 0xe3, 0x80, 0x00, 0x00, // OOO---OOO....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 240, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x03, 0x86, 0x00, 0x00, // ------OOO----OO----............. - 0x01, 0xfe, 0x00, 0x00, // -------OOOOOOOO----............. - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO-------............. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO--------............. - 0x1e, 0x70, 0x00, 0x00, // ---OOOO--OOO-------............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO-----............. - 0x03, 0xfc, 0x00, 0x00, // ------OOOOOOOO-----............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO----............. - 0x0f, 0x9f, 0x00, 0x00, // ----OOOOO--OOOOO---............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x1f, 0x1e, 0x00, 0x00, // ---OOOOO---OOOO----............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 241, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xc6, 0x00, 0x00, // ------OOOO---OO----............. - 0x07, 0xec, 0x00, 0x00, // -----OOOOOO-OO-----............. - 0x06, 0x7c, 0x00, 0x00, // -----OO--OOOOO-----............. - 0x06, 0x38, 0x00, 0x00, // -----OO---OOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0xfc, 0x00, 0x00, // ---OOO--OOOOOO-----............. - 0x1d, 0xfe, 0x00, 0x00, // ---OOO-OOOOOOOO----............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO---............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 242, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x01, 0x80, 0x00, 0x00, // -------OO----------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x1f, 0x1e, 0x00, 0x00, // ---OOOOO---OOOO----............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 243, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x1c, 0x00, 0x00, // -----------OOO-----............. - 0x00, 0x18, 0x00, 0x00, // -----------OO------............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0xc0, 0x00, 0x00, // --------OO---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x1f, 0x1e, 0x00, 0x00, // ---OOOOO---OOOO----............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 244, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-------............. - 0x01, 0xb0, 0x00, 0x00, // -------OO-OO-------............. - 0x03, 0x98, 0x00, 0x00, // ------OOO--OO------............. - 0x03, 0x1c, 0x00, 0x00, // ------OO---OOO-----............. - 0x06, 0x0c, 0x00, 0x00, // -----OO-----OO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x1f, 0x1e, 0x00, 0x00, // ---OOOOO---OOOO----............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 245, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xc6, 0x00, 0x00, // ------OOOO---OO----............. - 0x07, 0xec, 0x00, 0x00, // -----OOOOOO-OO-----............. - 0x06, 0x7c, 0x00, 0x00, // -----OO--OOOOO-----............. - 0x06, 0x38, 0x00, 0x00, // -----OO---OOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x1f, 0x1e, 0x00, 0x00, // ---OOOOO---OOOO----............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 246, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x1f, 0x1e, 0x00, 0x00, // ---OOOOO---OOOO----............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 247, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 248, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x80, 0x00, // ----------------O--............. - 0x03, 0xf1, 0x80, 0x00, // ------OOOOOO---OO--............. - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO--............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x38, 0x1f, 0x00, 0x00, // --OOO------OOOOO---............. - 0x38, 0x1b, 0x80, 0x00, // --OOO------OO-OOO--............. - 0x38, 0x33, 0x80, 0x00, // --OOO-----OO--OOO--............. - 0x38, 0x63, 0x80, 0x00, // --OOO----OO---OOO--............. - 0x38, 0xe3, 0x80, 0x00, // --OOO---OOO---OOO--............. - 0x38, 0xc3, 0x80, 0x00, // --OOO---OO----OOO--............. - 0x39, 0x83, 0x80, 0x00, // --OOO--OO-----OOO--............. - 0x3b, 0x83, 0x80, 0x00, // --OOO-OOO-----OOO--............. - 0x3f, 0x03, 0x80, 0x00, // --OOOOOO------OOO--............. - 0x3e, 0x07, 0x00, 0x00, // --OOOOO------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x1f, 0x1e, 0x00, 0x00, // ---OOOOO---OOOO----............. - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO-----............. - 0x33, 0xf8, 0x00, 0x00, // --OO--OOOOOOO------............. - 0x60, 0x00, 0x00, 0x00, // -OO----------------............. - 0x20, 0x00, 0x00, 0x00, // --O----------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 249, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x01, 0x80, 0x00, 0x00, // -------OO----------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x07, 0x80, 0x00, // ---OO--------OOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO--............. - 0x1e, 0x1f, 0x80, 0x00, // ---OOOO----OOOOOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x07, 0xf3, 0x80, 0x00, // -----OOOOOOO--OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 250, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x1c, 0x00, 0x00, // -----------OOO-----............. - 0x00, 0x18, 0x00, 0x00, // -----------OO------............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0xc0, 0x00, 0x00, // --------OO---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x07, 0x80, 0x00, // ---OO--------OOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO--............. - 0x1e, 0x1f, 0x80, 0x00, // ---OOOO----OOOOOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x07, 0xf3, 0x80, 0x00, // -----OOOOOOO--OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 251, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-------............. - 0x01, 0xb0, 0x00, 0x00, // -------OO-OO-------............. - 0x03, 0x98, 0x00, 0x00, // ------OOO--OO------............. - 0x03, 0x1c, 0x00, 0x00, // ------OO---OOO-----............. - 0x06, 0x0c, 0x00, 0x00, // -----OO-----OO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x07, 0x80, 0x00, // ---OO--------OOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO--............. - 0x1e, 0x1f, 0x80, 0x00, // ---OOOO----OOOOOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x07, 0xf3, 0x80, 0x00, // -----OOOOOOO--OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 252, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x07, 0x80, 0x00, // ---OO--------OOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO--............. - 0x1e, 0x1f, 0x80, 0x00, // ---OOOO----OOOOOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x07, 0xf3, 0x80, 0x00, // -----OOOOOOO--OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 253, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO-----.............. - 0x00, 0x30, 0x00, 0x00, // ----------OO------.............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO------.............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO-------.............. - 0x00, 0xc0, 0x00, 0x00, // --------OO--------.............. - 0x01, 0x80, 0x00, 0x00, // -------OO---------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x38, 0x03, 0x00, 0x00, // --OOO---------OO--.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x0c, 0x0e, 0x00, 0x00, // ----OO------OOO---.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x06, 0x1c, 0x00, 0x00, // -----OO----OOO----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x03, 0xb0, 0x00, 0x00, // ------OOO-OO------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO-------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0x80, 0x00, 0x00, // ------OOO---------.............. - 0x0f, 0x80, 0x00, 0x00, // ----OOOOO---------.............. - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO----------.............. - 0x3e, 0x00, 0x00, 0x00, // --OOOOO-----------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 254, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0xf8, 0x00, 0x00, // ---OOO--OOOOO------............. - 0x1d, 0xfe, 0x00, 0x00, // ---OOO-OOOOOOOO----............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO---............. - 0x1e, 0x03, 0x80, 0x00, // ---OOOO-------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x01, 0x80, 0x00, // ---OOO---------OO--............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1e, 0x07, 0x80, 0x00, // ---OOOO------OOOO--............. - 0x1f, 0x0f, 0x00, 0x00, // ---OOOOO----OOOO---............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO----............. - 0x1d, 0xfc, 0x00, 0x00, // ---OOO-OOOOOOO-----............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 255, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x38, 0x03, 0x00, 0x00, // --OOO---------OO--.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x0c, 0x0e, 0x00, 0x00, // ----OO------OOO---.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x06, 0x1c, 0x00, 0x00, // -----OO----OOO----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x03, 0xb0, 0x00, 0x00, // ------OOO-OO------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO-------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0x80, 0x00, 0x00, // ------OOO---------.............. - 0x0f, 0x80, 0x00, 0x00, // ----OOOOO---------.............. - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO----------.............. - 0x3e, 0x00, 0x00, 0x00, // --OOOOO-----------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. -}; - -static const uint8_t dejavu_40_widths[224] = -{ - 10, 12, 14, 26, 19, 29, 24, 8, - 12, 12, 15, 26, 10, 11, 10, 10, - 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 10, 10, 26, 26, 26, 16, - 31, 21, 21, 21, 24, 19, 18, 24, - 23, 9, 9, 20, 17, 26, 23, 24, - 18, 24, 21, 19, 19, 22, 21, 30, - 21, 19, 21, 12, 10, 12, 26, 15, - 15, 19, 19, 17, 19, 19, 11, 19, - 19, 9, 9, 18, 9, 30, 19, 19, - 19, 19, 13, 16, 12, 19, 18, 25, - 18, 18, 16, 19, 10, 19, 26, 10, - 10, 10, 10, 10, 10, 10, 10, 10, - 10, 10, 10, 10, 10, 10, 10, 10, - 10, 10, 10, 10, 10, 10, 10, 10, - 10, 10, 10, 10, 10, 10, 10, 10, - 10, 12, 19, 19, 19, 19, 10, 15, - 15, 31, 14, 19, 26, 11, 31, 15, - 15, 26, 12, 12, 15, 19, 19, 10, - 15, 12, 14, 19, 30, 30, 30, 16, - 21, 21, 21, 21, 21, 21, 30, 21, - 19, 19, 19, 19, 9, 9, 9, 9, - 24, 23, 24, 24, 24, 24, 24, 26, - 24, 22, 22, 22, 22, 19, 19, 19, - 19, 19, 19, 19, 19, 19, 30, 17, - 19, 19, 19, 19, 9, 9, 9, 9, - 19, 19, 19, 19, 19, 19, 19, 26, - 19, 19, 19, 19, 19, 18, 19, 18, -}; - -static const font_t dejavu_40_dsc = -{ - 224, // Letter count - 32, // First ascii code - 4, // Letters width (bytes) - 40, // Letters height (row) - 0, // Fixed width or 0 if variable - dejavu_40_widths, - dejavu_40_bitmaps -}; - -const font_t * dejavu_40_get_dsc(void) -{ - return &dejavu_40_dsc; -} - - -#endif diff --git a/lv_misc/fonts/dejavu_40.h b/lv_misc/fonts/dejavu_40.h deleted file mode 100644 index 1eedfbc83..000000000 --- a/lv_misc/fonts/dejavu_40.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef DEJAVU_40_H -#define DEJAVU_40_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_DEJAVU_40 != 0 - - -#include -#include "../font.h" - - -const font_t * dejavu_40_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/dejavu_60.c b/lv_misc/fonts/dejavu_60.c deleted file mode 100644 index 445754ec1..000000000 --- a/lv_misc/fonts/dejavu_60.c +++ /dev/null @@ -1,13980 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_60 != 0 - -#include -#include "../font.h" - -static const uint8_t dejavu_60_bitmaps[80640] = -{ - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // ASCII: 33, char width: 19 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x00, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOO--------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - - // ASCII: 34, char width: 22 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - - // ASCII: 35, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x70, 0x1e, 0x00, 0x00, // -----------------OOO-------OOOO--------......... - 0x00, 0x00, 0xf0, 0x1c, 0x00, 0x00, // ----------------OOOO-------OOO---------......... - 0x00, 0x00, 0xf0, 0x1c, 0x00, 0x00, // ----------------OOOO-------OOO---------......... - 0x00, 0x00, 0xf0, 0x3c, 0x00, 0x00, // ----------------OOOO------OOOO---------......... - 0x00, 0x00, 0xe0, 0x3c, 0x00, 0x00, // ----------------OOO-------OOOO---------......... - 0x00, 0x01, 0xe0, 0x3c, 0x00, 0x00, // ---------------OOOO-------OOOO---------......... - 0x00, 0x01, 0xe0, 0x38, 0x00, 0x00, // ---------------OOOO-------OOO----------......... - 0x00, 0x01, 0xe0, 0x78, 0x00, 0x00, // ---------------OOOO------OOOO----------......... - 0x00, 0x01, 0xe0, 0x78, 0x00, 0x00, // ---------------OOOO------OOOO----------......... - 0x00, 0x01, 0xc0, 0x78, 0x00, 0x00, // ---------------OOO-------OOOO----------......... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......... - 0x00, 0x07, 0x80, 0xf0, 0x00, 0x00, // -------------OOOO-------OOOO-----------......... - 0x00, 0x07, 0x80, 0xe0, 0x00, 0x00, // -------------OOOO-------OOO------------......... - 0x00, 0x07, 0x81, 0xe0, 0x00, 0x00, // -------------OOOO------OOOO------------......... - 0x00, 0x07, 0x81, 0xe0, 0x00, 0x00, // -------------OOOO------OOOO------------......... - 0x00, 0x07, 0x01, 0xe0, 0x00, 0x00, // -------------OOO-------OOOO------------......... - 0x00, 0x0f, 0x01, 0xc0, 0x00, 0x00, // ------------OOOO-------OOO-------------......... - 0x00, 0x0f, 0x01, 0xc0, 0x00, 0x00, // ------------OOOO-------OOO-------------......... - 0x00, 0x0f, 0x03, 0xc0, 0x00, 0x00, // ------------OOOO------OOOO-------------......... - 0x00, 0x0e, 0x03, 0xc0, 0x00, 0x00, // ------------OOO-------OOOO-------------......... - 0x0f, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------......... - 0x0f, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------......... - 0x0f, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------......... - 0x00, 0x1c, 0x07, 0x80, 0x00, 0x00, // -----------OOO-------OOOO--------------......... - 0x00, 0x1c, 0x07, 0x80, 0x00, 0x00, // -----------OOO-------OOOO--------------......... - 0x00, 0x3c, 0x07, 0x00, 0x00, 0x00, // ----------OOOO-------OOO---------------......... - 0x00, 0x3c, 0x0f, 0x00, 0x00, 0x00, // ----------OOOO------OOOO---------------......... - 0x00, 0x3c, 0x0f, 0x00, 0x00, 0x00, // ----------OOOO------OOOO---------------......... - 0x00, 0x38, 0x0f, 0x00, 0x00, 0x00, // ----------OOO-------OOOO---------------......... - 0x00, 0x78, 0x0e, 0x00, 0x00, 0x00, // ---------OOOO-------OOO----------------......... - 0x00, 0x78, 0x0e, 0x00, 0x00, 0x00, // ---------OOOO-------OOO----------------......... - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO----------------......... - 0x00, 0x70, 0x1e, 0x00, 0x00, 0x00, // ---------OOO-------OOOO----------------......... - 0x00, 0x70, 0x1e, 0x00, 0x00, 0x00, // ---------OOO-------OOOO----------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 36, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO--------.................. - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO------.................. - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO------.................. - 0x07, 0xf3, 0x1f, 0x00, 0x00, 0x00, // -----OOOOOOO--OO---OOOOO------.................. - 0x07, 0xc3, 0x03, 0x00, 0x00, 0x00, // -----OOOOO----OO------OO------.................. - 0x0f, 0x83, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----OO--------------.................. - 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, // ----OOOO------OO--------------.................. - 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, // ----OOOO------OO--------------.................. - 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, // ----OOOO------OO--------------.................. - 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, // ----OOOO------OO--------------.................. - 0x0f, 0x83, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----OO--------------.................. - 0x0f, 0x83, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----OO--------------.................. - 0x07, 0xe3, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---OO--------------.................. - 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOO--------------.................. - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO------------.................. - 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO---------.................. - 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOO-------.................. - 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOO------.................. - 0x00, 0x03, 0xff, 0x80, 0x00, 0x00, // --------------OOOOOOOOOOO-----.................. - 0x00, 0x03, 0x1f, 0x80, 0x00, 0x00, // --------------OO---OOOOOO-----.................. - 0x00, 0x03, 0x0f, 0xc0, 0x00, 0x00, // --------------OO----OOOOOO----.................. - 0x00, 0x03, 0x07, 0xc0, 0x00, 0x00, // --------------OO-----OOOOO----.................. - 0x00, 0x03, 0x07, 0xc0, 0x00, 0x00, // --------------OO-----OOOOO----.................. - 0x00, 0x03, 0x03, 0xc0, 0x00, 0x00, // --------------OO------OOOO----.................. - 0x00, 0x03, 0x03, 0xc0, 0x00, 0x00, // --------------OO------OOOO----.................. - 0x00, 0x03, 0x07, 0xc0, 0x00, 0x00, // --------------OO-----OOOOO----.................. - 0x00, 0x03, 0x07, 0x80, 0x00, 0x00, // --------------OO-----OOOO-----.................. - 0x0c, 0x03, 0x0f, 0x80, 0x00, 0x00, // ----OO--------OO----OOOOO-----.................. - 0x0f, 0x03, 0x1f, 0x80, 0x00, 0x00, // ----OOOO------OO---OOOOOO-----.................. - 0x0f, 0xff, 0xff, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOO------.................. - 0x0f, 0xff, 0xfe, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOO-------.................. - 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOO---------.................. - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 37, char width: 44 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x20, 0x00, 0x01, 0xe0, 0x00, // ----------O--------------------OOOO---------.... - 0x03, 0xfc, 0x00, 0x03, 0xc0, 0x00, // ------OOOOOOOO----------------OOOO----------.... - 0x07, 0xff, 0x00, 0x03, 0xc0, 0x00, // -----OOOOOOOOOOO--------------OOOO----------.... - 0x0f, 0xff, 0x00, 0x07, 0x80, 0x00, // ----OOOOOOOOOOOO-------------OOOO-----------.... - 0x0f, 0x07, 0x80, 0x07, 0x80, 0x00, // ----OOOO-----OOOO------------OOOO-----------.... - 0x1e, 0x03, 0x80, 0x0f, 0x00, 0x00, // ---OOOO-------OOO-----------OOOO------------.... - 0x1e, 0x03, 0xc0, 0x0e, 0x00, 0x00, // ---OOOO-------OOOO----------OOO-------------.... - 0x1e, 0x03, 0xc0, 0x1e, 0x00, 0x00, // ---OOOO-------OOOO---------OOOO-------------.... - 0x1c, 0x01, 0xc0, 0x1c, 0x00, 0x00, // ---OOO---------OOO---------OOO--------------.... - 0x1c, 0x01, 0xc0, 0x3c, 0x00, 0x00, // ---OOO---------OOO--------OOOO--------------.... - 0x1c, 0x01, 0xc0, 0x38, 0x00, 0x00, // ---OOO---------OOO--------OOO---------------.... - 0x1c, 0x01, 0xc0, 0x78, 0x00, 0x00, // ---OOO---------OOO-------OOOO---------------.... - 0x1c, 0x01, 0xc0, 0xf0, 0x00, 0x00, // ---OOO---------OOO------OOOO----------------.... - 0x1c, 0x03, 0xc0, 0xf0, 0x00, 0x00, // ---OOO--------OOOO------OOOO----------------.... - 0x1e, 0x03, 0xc1, 0xe0, 0x00, 0x00, // ---OOOO-------OOOO-----OOOO-----------------.... - 0x1e, 0x03, 0xc1, 0xe0, 0x00, 0x00, // ---OOOO-------OOOO-----OOOO-----------------.... - 0x0f, 0x07, 0x83, 0xc0, 0x00, 0x00, // ----OOOO-----OOOO-----OOOO------------------.... - 0x0f, 0x8f, 0x83, 0x80, 0x00, 0x00, // ----OOOOO---OOOOO-----OOO-------------------.... - 0x07, 0xff, 0x07, 0x80, 0x00, 0x00, // -----OOOOOOOOOOO-----OOOO-------------------.... - 0x03, 0xfe, 0x07, 0x01, 0xf8, 0x00, // ------OOOOOOOOO------OOO-------OOOOOO-------.... - 0x00, 0xf8, 0x0f, 0x03, 0xfc, 0x00, // --------OOOOO-------OOOO------OOOOOOOO------.... - 0x00, 0x00, 0x0e, 0x07, 0xfe, 0x00, // --------------------OOO------OOOOOOOOOO-----.... - 0x00, 0x00, 0x1e, 0x0f, 0x9f, 0x00, // -------------------OOOO-----OOOOO--OOOOO----.... - 0x00, 0x00, 0x1c, 0x1e, 0x07, 0x80, // -------------------OOO-----OOOO------OOOO---.... - 0x00, 0x00, 0x3c, 0x1e, 0x07, 0x80, // ------------------OOOO-----OOOO------OOOO---.... - 0x00, 0x00, 0x78, 0x1c, 0x03, 0x80, // -----------------OOOO------OOO--------OOO---.... - 0x00, 0x00, 0x78, 0x3c, 0x03, 0xc0, // -----------------OOOO-----OOOO--------OOOO--.... - 0x00, 0x00, 0xf0, 0x3c, 0x03, 0xc0, // ----------------OOOO------OOOO--------OOOO--.... - 0x00, 0x00, 0xe0, 0x3c, 0x03, 0xc0, // ----------------OOO-------OOOO--------OOOO--.... - 0x00, 0x01, 0xe0, 0x3c, 0x03, 0xc0, // ---------------OOOO-------OOOO--------OOOO--.... - 0x00, 0x01, 0xc0, 0x3c, 0x03, 0xc0, // ---------------OOO--------OOOO--------OOOO--.... - 0x00, 0x03, 0xc0, 0x3c, 0x03, 0xc0, // --------------OOOO--------OOOO--------OOOO--.... - 0x00, 0x03, 0x80, 0x3c, 0x03, 0xc0, // --------------OOO---------OOOO--------OOOO--.... - 0x00, 0x07, 0x80, 0x1c, 0x03, 0x80, // -------------OOOO----------OOO--------OOO---.... - 0x00, 0x07, 0x00, 0x1e, 0x07, 0x80, // -------------OOO-----------OOOO------OOOO---.... - 0x00, 0x0f, 0x00, 0x1f, 0x0f, 0x80, // ------------OOOO-----------OOOOO----OOOOO---.... - 0x00, 0x1e, 0x00, 0x0f, 0xff, 0x00, // -----------OOOO-------------OOOOOOOOOOOO----.... - 0x00, 0x1e, 0x00, 0x07, 0xfe, 0x00, // -----------OOOO--------------OOOOOOOOOO-----.... - 0x00, 0x3c, 0x00, 0x03, 0xfc, 0x00, // ----------OOOO----------------OOOOOOOO------.... - 0x00, 0x3c, 0x00, 0x00, 0xf0, 0x00, // ----------OOOO------------------OOOO--------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - - // ASCII: 38, char width: 36 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, // ---------------OO-------------------............ - 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOO--------------............ - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO------------............ - 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOO------------............ - 0x00, 0xff, 0x7f, 0x00, 0x00, 0x00, // --------OOOOOOOO-OOOOOOO------------............ - 0x00, 0xf8, 0x07, 0x00, 0x00, 0x00, // --------OOOOO--------OOO------------............ - 0x01, 0xf0, 0x01, 0x00, 0x00, 0x00, // -------OOOOO-----------O------------............ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------------------............ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------------------------............ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------------------------............ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------------------------............ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------------------............ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------------------............ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------------............ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------------............ - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------------------............ - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO---------------------............ - 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO--------------------............ - 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO-------------------............ - 0x03, 0xef, 0xc0, 0x07, 0x80, 0x00, // ------OOOOO-OOOOOO-----------OOOO---............ - 0x07, 0xc7, 0xe0, 0x07, 0x80, 0x00, // -----OOOOO---OOOOOO----------OOOO---............ - 0x0f, 0x83, 0xf0, 0x07, 0x80, 0x00, // ----OOOOO-----OOOOOO---------OOOO---............ - 0x0f, 0x01, 0xf8, 0x07, 0x80, 0x00, // ----OOOO-------OOOOOO--------OOOO---............ - 0x1f, 0x00, 0xf8, 0x0f, 0x80, 0x00, // ---OOOOO--------OOOOO-------OOOOO---............ - 0x1f, 0x00, 0x7c, 0x0f, 0x00, 0x00, // ---OOOOO---------OOOOO------OOOO----............ - 0x1e, 0x00, 0x7e, 0x0f, 0x00, 0x00, // ---OOOO----------OOOOOO-----OOOO----............ - 0x1e, 0x00, 0x3f, 0x1f, 0x00, 0x00, // ---OOOO-----------OOOOOO---OOOOO----............ - 0x1e, 0x00, 0x1f, 0x9e, 0x00, 0x00, // ---OOOO------------OOOOOO--OOOO-----............ - 0x1e, 0x00, 0x0f, 0xfe, 0x00, 0x00, // ---OOOO-------------OOOOOOOOOOO-----............ - 0x1f, 0x00, 0x07, 0xfc, 0x00, 0x00, // ---OOOOO-------------OOOOOOOOO------............ - 0x1f, 0x00, 0x03, 0xf8, 0x00, 0x00, // ---OOOOO--------------OOOOOOO-------............ - 0x0f, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOO---------------OOOOOO-------............ - 0x0f, 0x80, 0x01, 0xf8, 0x00, 0x00, // ----OOOOO--------------OOOOOO-------............ - 0x0f, 0xc0, 0x03, 0xfc, 0x00, 0x00, // ----OOOOOO------------OOOOOOOO------............ - 0x07, 0xe0, 0x07, 0xfe, 0x00, 0x00, // -----OOOOOO----------OOOOOOOOOO-----............ - 0x03, 0xfc, 0x7f, 0xff, 0x00, 0x00, // ------OOOOOOOO---OOOOOOOOOOOOOOO----............ - 0x01, 0xff, 0xff, 0x9f, 0x80, 0x00, // -------OOOOOOOOOOOOOOOOOO--OOOOOO---............ - 0x00, 0xff, 0xfe, 0x0f, 0xc0, 0x00, // --------OOOOOOOOOOOOOOO-----OOOOOO--............ - 0x00, 0x3f, 0xf8, 0x07, 0xe0, 0x00, // ----------OOOOOOOOOOO--------OOOOOO-............ - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - - // ASCII: 39, char width: 13 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - - // ASCII: 40, char width: 18 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, // ---------OOO------.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO-----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -----------OOO----.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - - // ASCII: 41, char width: 18 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOO----------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOO---------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----.............................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----.............................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----.............................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----.............................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - - // ASCII: 42, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x30, 0x38, 0x08, 0x00, 0x00, 0x00, // --OO------OOO-------O--......................... - 0x38, 0x38, 0x3c, 0x00, 0x00, 0x00, // --OOO-----OOO-----OOOO-......................... - 0x3e, 0x38, 0x7c, 0x00, 0x00, 0x00, // --OOOOO---OOO----OOOOO-......................... - 0x1f, 0x39, 0xf0, 0x00, 0x00, 0x00, // ---OOOOO--OOO--OOOOO---......................... - 0x07, 0xfb, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOO-OOOO-----......................... - 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOO------......................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO--------......................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------......................... - 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO-------......................... - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO-----......................... - 0x0f, 0xbb, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO-OOO-OOOOO----......................... - 0x1f, 0x38, 0xf8, 0x00, 0x00, 0x00, // ---OOOOO--OOO---OOOOO--......................... - 0x3c, 0x38, 0x7c, 0x00, 0x00, 0x00, // --OOOO----OOO----OOOOO-......................... - 0x38, 0x38, 0x18, 0x00, 0x00, 0x00, // --OOO-----OOO------OO--......................... - 0x00, 0x38, 0x08, 0x00, 0x00, 0x00, // ----------OOO-------O--......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - - // ASCII: 43, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 44, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------................................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------................................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------................................. - 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOO--------................................. - 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOO--------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // ASCII: 45, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOO--............................... - 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOO--............................... - 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOO--............................... - 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOO--............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - - // ASCII: 46, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // ASCII: 47, char width: 16 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO................................ - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-................................ - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-................................ - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-................................ - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-................................ - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--................................ - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--................................ - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--................................ - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO---................................ - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO---................................ - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO---................................ - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO---................................ - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO----................................ - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO----................................ - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO----................................ - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO----................................ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-----................................ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-----................................ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-----................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOO--------................................ - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO--------................................ - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO--------................................ - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO--------................................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO---------................................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO---------................................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO---------................................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO---------................................ - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO----------................................ - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO----------................................ - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO----------................................ - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO-----------................................ - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO-----------................................ - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO-----------................................ - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO-----------................................ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO------------................................ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - - // ASCII: 48, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO----------.................. - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO---------.................. - 0x00, 0xff, 0xfc, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOO--------.................. - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-------.................. - 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO------.................. - 0x03, 0xe0, 0x1f, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOO------.................. - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO-----.................. - 0x07, 0x80, 0x0f, 0x80, 0x00, 0x00, // -----OOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ----OOOO--------------OOOO----.................. - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO----.................. - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO----.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO----.................. - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO----.................. - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x07, 0x80, 0x0f, 0x80, 0x00, 0x00, // -----OOOO-----------OOOOO-----.................. - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO-----.................. - 0x07, 0xe0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOOO--------OOOOO------.................. - 0x03, 0xe0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOO------.................. - 0x01, 0xfc, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOO--OOOOOOO-------.................. - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO--------.................. - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO---------.................. - 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO----------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 49, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO------------.................. - 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOO------------.................. - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------------.................. - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------------.................. - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------------.................. - 0x07, 0xc7, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO---OOOOO------------.................. - 0x04, 0x07, 0xc0, 0x00, 0x00, 0x00, // -----O-------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO-----.................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO-----.................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO-----.................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO-----.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 50, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO---------------.................. - 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOO-----------.................. - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO---------.................. - 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO--------.................. - 0x0f, 0xff, 0xfe, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOO-------.................. - 0x0f, 0x80, 0x7e, 0x00, 0x00, 0x00, // ----OOOOO--------OOOOOO-------.................. - 0x0e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ----OOO-----------OOOOOO------.................. - 0x08, 0x00, 0x1f, 0x00, 0x00, 0x00, // ----O--------------OOOOO------.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO------.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // ------------------OOOOO-------.................. - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----------------OOOOOO-------.................. - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO--------.................. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO---------.................. - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ---------------OOOOOO---------.................. - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO----------.................. - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-----------.................. - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOO------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------------.................. - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------------.................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------------.................. - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO----------------.................. - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------------.................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------.................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------------.................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------------.................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------------------.................. - 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOO-----.................. - 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOO-----.................. - 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOO-----.................. - 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOO-----.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 51, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, // -------------OO---------------.................. - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO----------.................. - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO---------.................. - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-------.................. - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-------.................. - 0x07, 0x00, 0x7f, 0x00, 0x00, 0x00, // -----OOO---------OOOOOOO------.................. - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -------------------OOOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------------------OOOOOO------.................. - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, // ---------------OOOOOOOO-------.................. - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO---------.................. - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------.................. - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO---------.................. - 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOO-------.................. - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // -----------------OOOOOOO------.................. - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -------------------OOOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x08, 0x00, 0x1f, 0x80, 0x00, 0x00, // ----O--------------OOOOOO-----.................. - 0x0e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ----OOO-----------OOOOOO------.................. - 0x0f, 0xff, 0xff, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOO------.................. - 0x0f, 0xff, 0xfe, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOO-------.................. - 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO--------.................. - 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOO----------.................. - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 52, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----------------OOOOOO--------.................. - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----------------OOOOOO--------.................. - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ---------------OOOOOOO--------.................. - 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, // --------------OOOOOOOO--------.................. - 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, // --------------OOOOOOOO--------.................. - 0x00, 0x07, 0xbc, 0x00, 0x00, 0x00, // -------------OOOO-OOOO--------.................. - 0x00, 0x07, 0xbc, 0x00, 0x00, 0x00, // -------------OOOO-OOOO--------.................. - 0x00, 0x0f, 0x3c, 0x00, 0x00, 0x00, // ------------OOOO--OOOO--------.................. - 0x00, 0x1e, 0x3c, 0x00, 0x00, 0x00, // -----------OOOO---OOOO--------.................. - 0x00, 0x1e, 0x3c, 0x00, 0x00, 0x00, // -----------OOOO---OOOO--------.................. - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO--------.................. - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO--------.................. - 0x00, 0x78, 0x3c, 0x00, 0x00, 0x00, // ---------OOOO-----OOOO--------.................. - 0x00, 0x78, 0x3c, 0x00, 0x00, 0x00, // ---------OOOO-----OOOO--------.................. - 0x00, 0xf0, 0x3c, 0x00, 0x00, 0x00, // --------OOOO------OOOO--------.................. - 0x01, 0xe0, 0x3c, 0x00, 0x00, 0x00, // -------OOOO-------OOOO--------.................. - 0x01, 0xe0, 0x3c, 0x00, 0x00, 0x00, // -------OOOO-------OOOO--------.................. - 0x03, 0xc0, 0x3c, 0x00, 0x00, 0x00, // ------OOOO--------OOOO--------.................. - 0x03, 0xc0, 0x3c, 0x00, 0x00, 0x00, // ------OOOO--------OOOO--------.................. - 0x07, 0x80, 0x3c, 0x00, 0x00, 0x00, // -----OOOO---------OOOO--------.................. - 0x0f, 0x80, 0x3c, 0x00, 0x00, 0x00, // ----OOOOO---------OOOO--------.................. - 0x0f, 0x00, 0x3c, 0x00, 0x00, 0x00, // ----OOOO----------OOOO--------.................. - 0x1e, 0x00, 0x3c, 0x00, 0x00, 0x00, // ---OOOO-----------OOOO--------.................. - 0x1e, 0x00, 0x3c, 0x00, 0x00, 0x00, // ---OOOO-----------OOOO--------.................. - 0x3c, 0x00, 0x3c, 0x00, 0x00, 0x00, // --OOOO------------OOOO--------.................. - 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOO---.................. - 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOO---.................. - 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOO---.................. - 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOO---.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 53, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-------.................. - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-------.................. - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-------.................. - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xbf, 0x80, 0x00, 0x00, 0x00, // -----OOOO-OOOOOOO-------------.................. - 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOO----------.................. - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO---------.................. - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO--------.................. - 0x07, 0xe1, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOO----OOOOOOOO-------.................. - 0x04, 0x00, 0x7f, 0x00, 0x00, 0x00, // -----O-----------OOOOOOO------.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -------------------OOOOOO-----.................. - 0x08, 0x00, 0x3f, 0x00, 0x00, 0x00, // ----O-------------OOOOOO------.................. - 0x0e, 0x00, 0x7f, 0x00, 0x00, 0x00, // ----OOO----------OOOOOOO------.................. - 0x0f, 0xff, 0xfe, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOO-------.................. - 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO--------.................. - 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO---------.................. - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO-----------.................. - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 54, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, // -----------------O------------.................. - 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO-------.................. - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO-----.................. - 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOO-----.................. - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO-----.................. - 0x01, 0xfc, 0x03, 0x80, 0x00, 0x00, // -------OOOOOOO--------OOO-----.................. - 0x01, 0xf0, 0x00, 0x80, 0x00, 0x00, // -------OOOOO------------O-----.................. - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------.................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------------------.................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------------------.................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOO-----OOOOOO-----------.................. - 0x0f, 0x1f, 0xfc, 0x00, 0x00, 0x00, // ----OOOO---OOOOOOOOOOO--------.................. - 0x1f, 0x7f, 0xfe, 0x00, 0x00, 0x00, // ---OOOOO-OOOOOOOOOOOOOO-------.................. - 0x1f, 0x7f, 0xff, 0x00, 0x00, 0x00, // ---OOOOO-OOOOOOOOOOOOOOO------.................. - 0x1f, 0xf8, 0x3f, 0x80, 0x00, 0x00, // ---OOOOOOOOOO-----OOOOOOO-----.................. - 0x1f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ---OOOOOOOO---------OOOOO-----.................. - 0x1f, 0xc0, 0x0f, 0xc0, 0x00, 0x00, // ---OOOOOOO----------OOOOOO----.................. - 0x1f, 0xc0, 0x07, 0xc0, 0x00, 0x00, // ---OOOOOOO-----------OOOOO----.................. - 0x1f, 0x80, 0x03, 0xc0, 0x00, 0x00, // ---OOOOOO-------------OOOO----.................. - 0x1f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ---OOOOOO-------------OOOOO---.................. - 0x1f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ---OOOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x07, 0x80, 0x03, 0xc0, 0x00, 0x00, // -----OOOO-------------OOOO----.................. - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO----.................. - 0x07, 0xc0, 0x07, 0xc0, 0x00, 0x00, // -----OOOOO-----------OOOOO----.................. - 0x03, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ------OOOOO---------OOOOO-----.................. - 0x03, 0xf0, 0x1f, 0x80, 0x00, 0x00, // ------OOOOOO-------OOOOOO-----.................. - 0x01, 0xfc, 0x7f, 0x00, 0x00, 0x00, // -------OOOOOOO---OOOOOOO------.................. - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO-------.................. - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO--------.................. - 0x00, 0x3f, 0xf8, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOO---------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 55, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOO----.................. - 0x0f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOO----.................. - 0x0f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOO----.................. - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // ------------------OOOOO-------.................. - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // ------------------OOOOO-------.................. - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // ------------------OOOOO-------.................. - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO--------.................. - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO--------.................. - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO--------.................. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO---------.................. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO---------.................. - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO----------.................. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO----------.................. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO----------.................. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO-----------.................. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOO-----------.................. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOO-----------.................. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------------.................. - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------------.................. - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------------.................. - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------------.................. - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------------.................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------------.................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------------.................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 56, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO----------.................. - 0x00, 0xff, 0xfc, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOO--------.................. - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO-------.................. - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO------.................. - 0x07, 0xe0, 0x1f, 0x80, 0x00, 0x00, // -----OOOOOO--------OOOOOO-----.................. - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO-----.................. - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO------.................. - 0x03, 0xf0, 0x3e, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOO-------.................. - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO--------.................. - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO----------.................. - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO---------.................. - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-------.................. - 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO------.................. - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO-----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO----.................. - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO----.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO----.................. - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x0f, 0xc0, 0x00, 0x00, // ----OOOOO-----------OOOOOO----.................. - 0x0f, 0xe0, 0x1f, 0x80, 0x00, 0x00, // ----OOOOOOO--------OOOOOO-----.................. - 0x07, 0xfc, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOO--OOOOOOOOO-----.................. - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO------.................. - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-------.................. - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO---------.................. - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOO------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 57, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, // -------------OO---------------.................. - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------.................. - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO---------.................. - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO--------.................. - 0x03, 0xfd, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOO-OOOOOOOO-------.................. - 0x07, 0xe0, 0x3e, 0x00, 0x00, 0x00, // -----OOOOOO-------OOOOO-------.................. - 0x0f, 0xc0, 0x1f, 0x00, 0x00, 0x00, // ----OOOOOO---------OOOOO------.................. - 0x0f, 0x80, 0x0f, 0x00, 0x00, 0x00, // ----OOOOO-----------OOOO------.................. - 0x0f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ----OOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO-----.................. - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO-----.................. - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO----.................. - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO----.................. - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO----.................. - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO----.................. - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO----.................. - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO----.................. - 0x1f, 0x00, 0x0f, 0xc0, 0x00, 0x00, // ---OOOOO------------OOOOOO----.................. - 0x0f, 0x80, 0x0f, 0xc0, 0x00, 0x00, // ----OOOOO-----------OOOOOO----.................. - 0x0f, 0x80, 0x1f, 0xc0, 0x00, 0x00, // ----OOOOO----------OOOOOOO----.................. - 0x0f, 0xc0, 0x1f, 0xc0, 0x00, 0x00, // ----OOOOOO---------OOOOOOO----.................. - 0x07, 0xe0, 0x7f, 0xc0, 0x00, 0x00, // -----OOOOOO------OOOOOOOOO----.................. - 0x03, 0xff, 0xfb, 0xc0, 0x00, 0x00, // ------OOOOOOOOOOOOOOO-OOOO----.................. - 0x01, 0xff, 0xf3, 0xc0, 0x00, 0x00, // -------OOOOOOOOOOOOO--OOOO----.................. - 0x00, 0xff, 0xe3, 0xc0, 0x00, 0x00, // --------OOOOOOOOOOO---OOOO----.................. - 0x00, 0x3f, 0xc7, 0xc0, 0x00, 0x00, // ----------OOOOOOOO---OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // ------------------OOOOO-------.................. - 0x06, 0x00, 0xfe, 0x00, 0x00, 0x00, // -----OO---------OOOOOOO-------.................. - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO--------.................. - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO---------.................. - 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOO----------.................. - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO------------.................. - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 58, char width: 16 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - - // ASCII: 59, char width: 16 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO--------................................ - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO--------................................ - 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOO---------................................ - 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOO---------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - - // ASCII: 60, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, // --------------------------------OO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, // ---------------------------OOOOOOO-----......... - 0x00, 0x00, 0x00, 0x7f, 0xc0, 0x00, // -------------------------OOOOOOOOO-----......... - 0x00, 0x00, 0x01, 0xff, 0xc0, 0x00, // -----------------------OOOOOOOOOOO-----......... - 0x00, 0x00, 0x0f, 0xfe, 0x00, 0x00, // --------------------OOOOOOOOOOO--------......... - 0x00, 0x00, 0x3f, 0xf8, 0x00, 0x00, // ------------------OOOOOOOOOOO----------......... - 0x00, 0x01, 0xff, 0xc0, 0x00, 0x00, // ---------------OOOOOOOOOOO-------------......... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO---------------......... - 0x00, 0x3f, 0xf8, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOO------------------......... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO--------------------......... - 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOO-----------------------......... - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO-------------------------......... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......... - 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOO--------------------------......... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO------------------------......... - 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOO---------------------......... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO-------------------......... - 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO----------------......... - 0x00, 0x03, 0xff, 0x80, 0x00, 0x00, // --------------OOOOOOOOOOO--------------......... - 0x00, 0x00, 0x7f, 0xf0, 0x00, 0x00, // -----------------OOOOOOOOOOO-----------......... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, // -------------------OOOOOOOOOOO---------......... - 0x00, 0x00, 0x03, 0xff, 0x80, 0x00, // ----------------------OOOOOOOOOOO------......... - 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, // ------------------------OOOOOOOOOO-----......... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, // ---------------------------OOOOOOO-----......... - 0x00, 0x00, 0x00, 0x07, 0xc0, 0x00, // -----------------------------OOOOO-----......... - 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, // --------------------------------OO-----......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 61, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 62, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OO--------------------------------......... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------------------......... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------------------......... - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO-------------------------......... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO----------------------......... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO--------------------......... - 0x00, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOO-----------------......... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO---------------......... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, // ---------------OOOOOOOOOOOO------------......... - 0x00, 0x00, 0x3f, 0xf8, 0x00, 0x00, // ------------------OOOOOOOOOOO----------......... - 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, // --------------------OOOOOOOOOOOO-------......... - 0x00, 0x00, 0x01, 0xff, 0xc0, 0x00, // -----------------------OOOOOOOOOOO-----......... - 0x00, 0x00, 0x00, 0x7f, 0xc0, 0x00, // -------------------------OOOOOOOOO-----......... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, // ----------------------------OOOOOO-----......... - 0x00, 0x00, 0x00, 0x3f, 0xc0, 0x00, // --------------------------OOOOOOOO-----......... - 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, // ------------------------OOOOOOOOOO-----......... - 0x00, 0x00, 0x07, 0xff, 0x80, 0x00, // ---------------------OOOOOOOOOOOO------......... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, // -------------------OOOOOOOOOOO---------......... - 0x00, 0x00, 0xff, 0xf0, 0x00, 0x00, // ----------------OOOOOOOOOOOO-----------......... - 0x00, 0x03, 0xff, 0x80, 0x00, 0x00, // --------------OOOOOOOOOOO--------------......... - 0x00, 0x1f, 0xfe, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO----------------......... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO-------------------......... - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO---------------------......... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO------------------------......... - 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOO--------------------------......... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------------------------......... - 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOO-------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 63, char width: 25 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, // -----------OO------------....................... - 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOO--------....................... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO------....................... - 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOO-----....................... - 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOO-----....................... - 0x1f, 0x01, 0xf8, 0x00, 0x00, 0x00, // ---OOOOO-------OOOOOO----....................... - 0x1c, 0x00, 0xf8, 0x00, 0x00, 0x00, // ---OOO----------OOOOO----....................... - 0x10, 0x00, 0x78, 0x00, 0x00, 0x00, // ---O-------------OOOO----....................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO---....................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO---....................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO---....................... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, // -----------------OOOO----....................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----....................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ---------------OOOOOO----....................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO-----....................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOO------....................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO-------....................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO--------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO---------....................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO------------....................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO------------....................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO------------....................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO------------....................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - - // ASCII: 64, char width: 47 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x01, 0xc0, 0x00, 0x00, // -----------------------OOO---------------------. - 0x00, 0x00, 0x7f, 0xfe, 0x00, 0x00, // -----------------OOOOOOOOOOOOOO----------------. - 0x00, 0x01, 0xff, 0xff, 0x80, 0x00, // ---------------OOOOOOOOOOOOOOOOOO--------------. - 0x00, 0x07, 0xff, 0xff, 0xe0, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOO------------. - 0x00, 0x0f, 0xf0, 0x0f, 0xf0, 0x00, // ------------OOOOOOOO--------OOOOOOOO-----------. - 0x00, 0x1f, 0x80, 0x01, 0xf8, 0x00, // -----------OOOOOO--------------OOOOOO----------. - 0x00, 0x3e, 0x00, 0x00, 0x7c, 0x00, // ----------OOOOO------------------OOOOO---------. - 0x00, 0x7c, 0x00, 0x00, 0x3e, 0x00, // ---------OOOOO--------------------OOOOO--------. - 0x00, 0xf0, 0x00, 0x00, 0x1f, 0x00, // --------OOOO-----------------------OOOOO-------. - 0x01, 0xe0, 0x00, 0x00, 0x0f, 0x00, // -------OOOO-------------------------OOOO-------. - 0x03, 0xe0, 0x00, 0x00, 0x07, 0x80, // ------OOOOO--------------------------OOOO------. - 0x03, 0xc0, 0x00, 0x00, 0x03, 0xc0, // ------OOOO----------------------------OOOO-----. - 0x07, 0x80, 0x0f, 0xc3, 0x83, 0xc0, // -----OOOO-----------OOOOOO----OOO-----OOOO-----. - 0x07, 0x80, 0x3f, 0xf3, 0x81, 0xc0, // -----OOOO---------OOOOOOOOOO--OOO------OOO-----. - 0x07, 0x00, 0x7f, 0xfb, 0x81, 0xe0, // -----OOO---------OOOOOOOOOOOO-OOO------OOOO----. - 0x0f, 0x00, 0xff, 0xff, 0x80, 0xe0, // ----OOOO--------OOOOOOOOOOOOOOOOO-------OOO----. - 0x0e, 0x01, 0xf0, 0x3f, 0x80, 0xe0, // ----OOO--------OOOOO------OOOOOOO-------OOO----. - 0x0e, 0x01, 0xe0, 0x0f, 0x80, 0xe0, // ----OOO--------OOOO---------OOOOO-------OOO----. - 0x1e, 0x03, 0xe0, 0x0f, 0x80, 0xe0, // ---OOOO-------OOOOO---------OOOOO-------OOO----. - 0x1e, 0x03, 0xc0, 0x07, 0x80, 0xe0, // ---OOOO-------OOOO-----------OOOO-------OOO----. - 0x1c, 0x03, 0xc0, 0x07, 0x80, 0xf0, // ---OOO--------OOOO-----------OOOO-------OOOO---. - 0x1c, 0x03, 0xc0, 0x07, 0x80, 0xe0, // ---OOO--------OOOO-----------OOOO-------OOO----. - 0x1c, 0x03, 0x80, 0x07, 0x80, 0xe0, // ---OOO--------OOO------------OOOO-------OOO----. - 0x1c, 0x03, 0x80, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------------OOO-------OOO----. - 0x1c, 0x03, 0x80, 0x07, 0x80, 0xe0, // ---OOO--------OOO------------OOOO-------OOO----. - 0x1c, 0x03, 0xc0, 0x07, 0x81, 0xe0, // ---OOO--------OOOO-----------OOOO------OOOO----. - 0x1e, 0x03, 0xc0, 0x07, 0x81, 0xe0, // ---OOOO-------OOOO-----------OOOO------OOOO----. - 0x1e, 0x03, 0xc0, 0x07, 0x81, 0xc0, // ---OOOO-------OOOO-----------OOOO------OOO-----. - 0x0e, 0x01, 0xe0, 0x0f, 0x83, 0xc0, // ----OOO--------OOOO---------OOOOO-----OOOO-----. - 0x0e, 0x01, 0xe0, 0x0f, 0x87, 0x80, // ----OOO--------OOOO---------OOOOO----OOOO------. - 0x0e, 0x01, 0xf8, 0x3f, 0x9f, 0x00, // ----OOO--------OOOOOO-----OOOOOOO--OOOOO-------. - 0x0f, 0x00, 0xff, 0xfb, 0xfe, 0x00, // ----OOOO--------OOOOOOOOOOOOO-OOOOOOOOO--------. - 0x07, 0x00, 0x7f, 0xfb, 0xfc, 0x00, // -----OOO---------OOOOOOOOOOOO-OOOOOOOO---------. - 0x07, 0x80, 0x3f, 0xe3, 0xf0, 0x00, // -----OOOO---------OOOOOOOOO---OOOOOO-----------. - 0x03, 0x80, 0x0f, 0x83, 0x80, 0x00, // ------OOO-----------OOOOO-----OOO--------------. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO-------------------------------------. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO------------------------------------. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-----------------------------------. - 0x00, 0xf8, 0x00, 0x00, 0x20, 0x00, // --------OOOOO---------------------O------------. - 0x00, 0x7c, 0x00, 0x00, 0x70, 0x00, // ---------OOOOO-------------------OOO-----------. - 0x00, 0x3f, 0x00, 0x01, 0xf0, 0x00, // ----------OOOOOO---------------OOOOO-----------. - 0x00, 0x1f, 0xc0, 0x07, 0xf0, 0x00, // -----------OOOOOOO-----------OOOOOOO-----------. - 0x00, 0x0f, 0xff, 0xff, 0xe0, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOO------------. - 0x00, 0x03, 0xff, 0xff, 0x80, 0x00, // --------------OOOOOOOOOOOOOOOOOOO--------------. - 0x00, 0x00, 0xff, 0xfe, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOO----------------. - 0x00, 0x00, 0x1f, 0xf0, 0x00, 0x00, // -------------------OOOOOOOOO-------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - - // ASCII: 65, char width: 32 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1e, 0x78, 0x00, 0x00, 0x00, // -----------OOOO--OOOO-----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO---------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, // --------OOOO--------OOOO--------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO-------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ------OOOO------------OOOO------................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0x00, 0x00, 0xf0, 0x00, 0x00, // ----OOOO----------------OOOO----................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1e, 0x00, 0x00, 0x78, 0x00, 0x00, // ---OOOO------------------OOOO---................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, // --OOOO--------------------OOOO--................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, // -OOOO----------------------OOOO-................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 66, char width: 32 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOO------------................ - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO---------................ - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO--------................ - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-------................ - 0x07, 0x80, 0x3f, 0xc0, 0x00, 0x00, // -----OOOO---------OOOOOOOO------................ - 0x07, 0x80, 0x07, 0xe0, 0x00, 0x00, // -----OOOO------------OOOOOO-----................ - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-----................ - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-----................ - 0x07, 0x80, 0x01, 0xe0, 0x00, 0x00, // -----OOOO--------------OOOO-----................ - 0x07, 0x80, 0x01, 0xe0, 0x00, 0x00, // -----OOOO--------------OOOO-----................ - 0x07, 0x80, 0x01, 0xe0, 0x00, 0x00, // -----OOOO--------------OOOO-----................ - 0x07, 0x80, 0x01, 0xe0, 0x00, 0x00, // -----OOOO--------------OOOO-----................ - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-----................ - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-----................ - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO------................ - 0x07, 0x80, 0x3f, 0xc0, 0x00, 0x00, // -----OOOO---------OOOOOOOO------................ - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO--------................ - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO----------................ - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO--------................ - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO------................ - 0x07, 0x80, 0x0f, 0xe0, 0x00, 0x00, // -----OOOO-----------OOOOOOO-----................ - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-----................ - 0x07, 0x80, 0x01, 0xf0, 0x00, 0x00, // -----OOOO--------------OOOOO----................ - 0x07, 0x80, 0x01, 0xf0, 0x00, 0x00, // -----OOOO--------------OOOOO----................ - 0x07, 0x80, 0x00, 0xf0, 0x00, 0x00, // -----OOOO---------------OOOO----................ - 0x07, 0x80, 0x00, 0xf8, 0x00, 0x00, // -----OOOO---------------OOOOO---................ - 0x07, 0x80, 0x00, 0xf8, 0x00, 0x00, // -----OOOO---------------OOOOO---................ - 0x07, 0x80, 0x00, 0xf8, 0x00, 0x00, // -----OOOO---------------OOOOO---................ - 0x07, 0x80, 0x00, 0xf8, 0x00, 0x00, // -----OOOO---------------OOOOO---................ - 0x07, 0x80, 0x00, 0xf8, 0x00, 0x00, // -----OOOO---------------OOOOO---................ - 0x07, 0x80, 0x01, 0xf0, 0x00, 0x00, // -----OOOO--------------OOOOO----................ - 0x07, 0x80, 0x01, 0xf0, 0x00, 0x00, // -----OOOO--------------OOOOO----................ - 0x07, 0x80, 0x03, 0xf0, 0x00, 0x00, // -----OOOO-------------OOOOOO----................ - 0x07, 0x80, 0x1f, 0xe0, 0x00, 0x00, // -----OOOO----------OOOOOOOO-----................ - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO------................ - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-------................ - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO--------................ - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO-----------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 67, char width: 33 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, // ------------------OO-------------............... - 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, // -------------OOOOOOOOOOOOO-------............... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO-----............... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO----............... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO---............... - 0x01, 0xfe, 0x00, 0xfc, 0x00, 0x00, // -------OOOOOOOO---------OOOOOO---............... - 0x03, 0xf8, 0x00, 0x3c, 0x00, 0x00, // ------OOOOOOO-------------OOOO---............... - 0x03, 0xf0, 0x00, 0x0c, 0x00, 0x00, // ------OOOOOO----------------OO---............... - 0x07, 0xe0, 0x00, 0x04, 0x00, 0x00, // -----OOOOOO------------------O---............... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO--------------------------............... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO--------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------------------............... - 0x07, 0xe0, 0x00, 0x04, 0x00, 0x00, // -----OOOOOO------------------O---............... - 0x03, 0xe0, 0x00, 0x0c, 0x00, 0x00, // ------OOOOO-----------------OO---............... - 0x03, 0xf8, 0x00, 0x1c, 0x00, 0x00, // ------OOOOOOO--------------OOO---............... - 0x01, 0xfc, 0x00, 0x7c, 0x00, 0x00, // -------OOOOOOO-----------OOOOO---............... - 0x00, 0xff, 0xef, 0xfc, 0x00, 0x00, // --------OOOOOOOOOOO-OOOOOOOOOO---............... - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO---............... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO-----............... - 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, // -------------OOOOOOOOOOOOO-------............... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - - // ASCII: 68, char width: 36 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO-----------------............ - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-------------............ - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----------............ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---------............ - 0x07, 0x80, 0x7f, 0xf0, 0x00, 0x00, // -----OOOO--------OOOOOOOOOOO--------............ - 0x07, 0x80, 0x03, 0xf8, 0x00, 0x00, // -----OOOO-------------OOOOOOO-------............ - 0x07, 0x80, 0x01, 0xfc, 0x00, 0x00, // -----OOOO--------------OOOOOOO------............ - 0x07, 0x80, 0x00, 0x7e, 0x00, 0x00, // -----OOOO----------------OOOOOO-----............ - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO-----............ - 0x07, 0x80, 0x00, 0x3f, 0x00, 0x00, // -----OOOO-----------------OOOOOO----............ - 0x07, 0x80, 0x00, 0x1f, 0x00, 0x00, // -----OOOO------------------OOOOO----............ - 0x07, 0x80, 0x00, 0x1f, 0x00, 0x00, // -----OOOO------------------OOOOO----............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x1f, 0x00, 0x00, // -----OOOO------------------OOOOO----............ - 0x07, 0x80, 0x00, 0x1f, 0x00, 0x00, // -----OOOO------------------OOOOO----............ - 0x07, 0x80, 0x00, 0x3f, 0x00, 0x00, // -----OOOO-----------------OOOOOO----............ - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO-----............ - 0x07, 0x80, 0x00, 0x7e, 0x00, 0x00, // -----OOOO----------------OOOOOO-----............ - 0x07, 0x80, 0x00, 0xfc, 0x00, 0x00, // -----OOOO---------------OOOOOO------............ - 0x07, 0x80, 0x03, 0xf8, 0x00, 0x00, // -----OOOO-------------OOOOOOO-------............ - 0x07, 0x80, 0x3f, 0xf8, 0x00, 0x00, // -----OOOO---------OOOOOOOOOOO-------............ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---------............ - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----------............ - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO------------............ - 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOO----------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - - // ASCII: 69, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 70, char width: 27 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO---..................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO---..................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO---..................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO---..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO----..................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO----..................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO----..................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO----..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - - // ASCII: 71, char width: 36 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, // -------------------OO---------------............ - 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, // -------------OOOOOOOOOOOOO----------............ - 0x00, 0x1f, 0xff, 0xf8, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOO-------............ - 0x00, 0x7f, 0xff, 0xfe, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOO-----............ - 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOO----............ - 0x01, 0xfe, 0x00, 0x7f, 0x00, 0x00, // -------OOOOOOOO----------OOOOOOO----............ - 0x03, 0xf8, 0x00, 0x1f, 0x00, 0x00, // ------OOOOOOO--------------OOOOO----............ - 0x03, 0xf0, 0x00, 0x07, 0x00, 0x00, // ------OOOOOO-----------------OOO----............ - 0x07, 0xe0, 0x00, 0x03, 0x00, 0x00, // -----OOOOOO-------------------OO----............ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------------------------............ - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------------------------............ - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------------------------............ - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------------------------............ - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------------............ - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------------............ - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------------............ - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------------............ - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------------............ - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------------............ - 0x1e, 0x00, 0x0f, 0xff, 0x00, 0x00, // ---OOOO-------------OOOOOOOOOOOO----............ - 0x1e, 0x00, 0x0f, 0xff, 0x00, 0x00, // ---OOOO-------------OOOOOOOOOOOO----............ - 0x1f, 0x00, 0x0f, 0xff, 0x00, 0x00, // ---OOOOO------------OOOOOOOOOOOO----............ - 0x1f, 0x00, 0x0f, 0xff, 0x00, 0x00, // ---OOOOO------------OOOOOOOOOOOO----............ - 0x1f, 0x00, 0x00, 0x0f, 0x00, 0x00, // ---OOOOO--------------------OOOO----............ - 0x1f, 0x00, 0x00, 0x0f, 0x00, 0x00, // ---OOOOO--------------------OOOO----............ - 0x1f, 0x00, 0x00, 0x0f, 0x00, 0x00, // ---OOOOO--------------------OOOO----............ - 0x1f, 0x00, 0x00, 0x0f, 0x00, 0x00, // ---OOOOO--------------------OOOO----............ - 0x0f, 0x00, 0x00, 0x0f, 0x00, 0x00, // ----OOOO--------------------OOOO----............ - 0x0f, 0x80, 0x00, 0x0f, 0x00, 0x00, // ----OOOOO-------------------OOOO----............ - 0x0f, 0x80, 0x00, 0x0f, 0x00, 0x00, // ----OOOOO-------------------OOOO----............ - 0x07, 0xc0, 0x00, 0x0f, 0x00, 0x00, // -----OOOOO------------------OOOO----............ - 0x07, 0xe0, 0x00, 0x0f, 0x00, 0x00, // -----OOOOOO-----------------OOOO----............ - 0x03, 0xe0, 0x00, 0x0f, 0x00, 0x00, // ------OOOOO-----------------OOOO----............ - 0x03, 0xf8, 0x00, 0x0f, 0x00, 0x00, // ------OOOOOOO---------------OOOO----............ - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, // -------OOOOOOO------------OOOOOO----............ - 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOO----............ - 0x00, 0x7f, 0xff, 0xfe, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOO-----............ - 0x00, 0x1f, 0xff, 0xf8, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOO-------............ - 0x00, 0x07, 0xff, 0xe0, 0x00, 0x00, // -------------OOOOOOOOOOOOOO---------............ - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----------------OOOOOO-------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - - // ASCII: 72, char width: 35 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0xff, 0xff, 0xfe, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOO----............. - 0x07, 0xff, 0xff, 0xfe, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOO----............. - 0x07, 0xff, 0xff, 0xfe, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOO----............. - 0x07, 0xff, 0xff, 0xfe, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - - // ASCII: 73, char width: 14 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - - // ASCII: 74, char width: 14 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----.................................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----.................................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----.................................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----.................................. - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------.................................. - 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOO------.................................. - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-------.................................. - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-------.................................. - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO--------.................................. - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO----------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - - // ASCII: 75, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x07, 0x80, 0x00, 0xfc, 0x00, 0x00, // -----OOOO---------------OOOOOO-................. - 0x07, 0x80, 0x01, 0xf8, 0x00, 0x00, // -----OOOO--------------OOOOOO--................. - 0x07, 0x80, 0x03, 0xf0, 0x00, 0x00, // -----OOOO-------------OOOOOO---................. - 0x07, 0x80, 0x07, 0xe0, 0x00, 0x00, // -----OOOO------------OOOOOO----................. - 0x07, 0x80, 0x0f, 0xc0, 0x00, 0x00, // -----OOOO-----------OOOOOO-----................. - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO------................. - 0x07, 0x80, 0x3f, 0x00, 0x00, 0x00, // -----OOOO---------OOOOOO-------................. - 0x07, 0x80, 0x7e, 0x00, 0x00, 0x00, // -----OOOO--------OOOOOO--------................. - 0x07, 0x80, 0xfc, 0x00, 0x00, 0x00, // -----OOOO-------OOOOOO---------................. - 0x07, 0x80, 0xf8, 0x00, 0x00, 0x00, // -----OOOO-------OOOOO----------................. - 0x07, 0x81, 0xf8, 0x00, 0x00, 0x00, // -----OOOO------OOOOOO----------................. - 0x07, 0x83, 0xf0, 0x00, 0x00, 0x00, // -----OOOO-----OOOOOO-----------................. - 0x07, 0x87, 0xe0, 0x00, 0x00, 0x00, // -----OOOO----OOOOOO------------................. - 0x07, 0x8f, 0xc0, 0x00, 0x00, 0x00, // -----OOOO---OOOOOO-------------................. - 0x07, 0x9f, 0x80, 0x00, 0x00, 0x00, // -----OOOO--OOOOOO--------------................. - 0x07, 0xbf, 0x00, 0x00, 0x00, 0x00, // -----OOOO-OOOOOO---------------................. - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----------------................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO-----------------................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO-----------------................. - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----------------................. - 0x07, 0xbf, 0x00, 0x00, 0x00, 0x00, // -----OOOO-OOOOOO---------------................. - 0x07, 0x9f, 0x80, 0x00, 0x00, 0x00, // -----OOOO--OOOOOO--------------................. - 0x07, 0x8f, 0xc0, 0x00, 0x00, 0x00, // -----OOOO---OOOOOO-------------................. - 0x07, 0x87, 0xe0, 0x00, 0x00, 0x00, // -----OOOO----OOOOOO------------................. - 0x07, 0x87, 0xf0, 0x00, 0x00, 0x00, // -----OOOO----OOOOOOO-----------................. - 0x07, 0x83, 0xf0, 0x00, 0x00, 0x00, // -----OOOO-----OOOOOO-----------................. - 0x07, 0x81, 0xf8, 0x00, 0x00, 0x00, // -----OOOO------OOOOOO----------................. - 0x07, 0x80, 0xfc, 0x00, 0x00, 0x00, // -----OOOO-------OOOOOO---------................. - 0x07, 0x80, 0x7e, 0x00, 0x00, 0x00, // -----OOOO--------OOOOOO--------................. - 0x07, 0x80, 0x3f, 0x00, 0x00, 0x00, // -----OOOO---------OOOOOO-------................. - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO------................. - 0x07, 0x80, 0x0f, 0xc0, 0x00, 0x00, // -----OOOO-----------OOOOOO-----................. - 0x07, 0x80, 0x07, 0xe0, 0x00, 0x00, // -----OOOO------------OOOOOO----................. - 0x07, 0x80, 0x03, 0xf0, 0x00, 0x00, // -----OOOO-------------OOOOOO---................. - 0x07, 0x80, 0x03, 0xf8, 0x00, 0x00, // -----OOOO-------------OOOOOOO--................. - 0x07, 0x80, 0x01, 0xf8, 0x00, 0x00, // -----OOOO--------------OOOOOO--................. - 0x07, 0x80, 0x00, 0xfc, 0x00, 0x00, // -----OOOO---------------OOOOOO-................. - 0x07, 0x80, 0x00, 0x7e, 0x00, 0x00, // -----OOOO----------------OOOOOO................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - - // ASCII: 76, char width: 26 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO...................... - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO...................... - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO...................... - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - - // ASCII: 77, char width: 40 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x07, 0xf0, 0x00, 0x07, 0xf0, 0x00, // -----OOOOOOO-----------------OOOOOOO----........ - 0x07, 0xf0, 0x00, 0x0f, 0xf0, 0x00, // -----OOOOOOO----------------OOOOOOOO----........ - 0x07, 0xf0, 0x00, 0x0f, 0xf0, 0x00, // -----OOOOOOO----------------OOOOOOOO----........ - 0x07, 0xf8, 0x00, 0x0f, 0xf0, 0x00, // -----OOOOOOOO---------------OOOOOOOO----........ - 0x07, 0xf8, 0x00, 0x1f, 0xf0, 0x00, // -----OOOOOOOO--------------OOOOOOOOO----........ - 0x07, 0xf8, 0x00, 0x1f, 0xf0, 0x00, // -----OOOOOOOO--------------OOOOOOOOO----........ - 0x07, 0xbc, 0x00, 0x1f, 0xf0, 0x00, // -----OOOO-OOOO-------------OOOOOOOOO----........ - 0x07, 0xbc, 0x00, 0x3d, 0xf0, 0x00, // -----OOOO-OOOO------------OOOO-OOOOO----........ - 0x07, 0xbc, 0x00, 0x3d, 0xf0, 0x00, // -----OOOO-OOOO------------OOOO-OOOOO----........ - 0x07, 0x9e, 0x00, 0x3d, 0xf0, 0x00, // -----OOOO--OOOO-----------OOOO-OOOOO----........ - 0x07, 0x9e, 0x00, 0x79, 0xf0, 0x00, // -----OOOO--OOOO----------OOOO--OOOOO----........ - 0x07, 0x9e, 0x00, 0x79, 0xf0, 0x00, // -----OOOO--OOOO----------OOOO--OOOOO----........ - 0x07, 0x8f, 0x00, 0x79, 0xf0, 0x00, // -----OOOO---OOOO---------OOOO--OOOOO----........ - 0x07, 0x8f, 0x00, 0xf1, 0xf0, 0x00, // -----OOOO---OOOO--------OOOO---OOOOO----........ - 0x07, 0x8f, 0x00, 0xf1, 0xf0, 0x00, // -----OOOO---OOOO--------OOOO---OOOOO----........ - 0x07, 0x87, 0x80, 0xf1, 0xf0, 0x00, // -----OOOO----OOOO-------OOOO---OOOOO----........ - 0x07, 0x87, 0x81, 0xe1, 0xf0, 0x00, // -----OOOO----OOOO------OOOO----OOOOO----........ - 0x07, 0x87, 0x81, 0xe1, 0xf0, 0x00, // -----OOOO----OOOO------OOOO----OOOOO----........ - 0x07, 0x83, 0xc1, 0xe1, 0xf0, 0x00, // -----OOOO-----OOOO-----OOOO----OOOOO----........ - 0x07, 0x83, 0xc3, 0xc1, 0xf0, 0x00, // -----OOOO-----OOOO----OOOO-----OOOOO----........ - 0x07, 0x83, 0xc3, 0xc1, 0xf0, 0x00, // -----OOOO-----OOOO----OOOO-----OOOOO----........ - 0x07, 0x81, 0xe3, 0xc1, 0xf0, 0x00, // -----OOOO------OOOO---OOOO-----OOOOO----........ - 0x07, 0x81, 0xe7, 0x81, 0xf0, 0x00, // -----OOOO------OOOO--OOOO------OOOOO----........ - 0x07, 0x81, 0xe7, 0x81, 0xf0, 0x00, // -----OOOO------OOOO--OOOO------OOOOO----........ - 0x07, 0x80, 0xf7, 0x81, 0xf0, 0x00, // -----OOOO-------OOOO-OOOO------OOOOO----........ - 0x07, 0x80, 0xff, 0x01, 0xf0, 0x00, // -----OOOO-------OOOOOOOO-------OOOOO----........ - 0x07, 0x80, 0xff, 0x01, 0xf0, 0x00, // -----OOOO-------OOOOOOOO-------OOOOO----........ - 0x07, 0x80, 0x7f, 0x01, 0xf0, 0x00, // -----OOOO--------OOOOOOO-------OOOOO----........ - 0x07, 0x80, 0x7e, 0x01, 0xf0, 0x00, // -----OOOO--------OOOOOO--------OOOOO----........ - 0x07, 0x80, 0x7e, 0x01, 0xf0, 0x00, // -----OOOO--------OOOOOO--------OOOOO----........ - 0x07, 0x80, 0x3e, 0x01, 0xf0, 0x00, // -----OOOO---------OOOOO--------OOOOO----........ - 0x07, 0x80, 0x00, 0x01, 0xf0, 0x00, // -----OOOO----------------------OOOOO----........ - 0x07, 0x80, 0x00, 0x01, 0xf0, 0x00, // -----OOOO----------------------OOOOO----........ - 0x07, 0x80, 0x00, 0x01, 0xf0, 0x00, // -----OOOO----------------------OOOOO----........ - 0x07, 0x80, 0x00, 0x01, 0xf0, 0x00, // -----OOOO----------------------OOOOO----........ - 0x07, 0x80, 0x00, 0x01, 0xf0, 0x00, // -----OOOO----------------------OOOOO----........ - 0x07, 0x80, 0x00, 0x01, 0xf0, 0x00, // -----OOOO----------------------OOOOO----........ - 0x07, 0x80, 0x00, 0x01, 0xf0, 0x00, // -----OOOO----------------------OOOOO----........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - - // ASCII: 78, char width: 35 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x07, 0xe0, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOO---------------OOOO-----............. - 0x07, 0xe0, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOO---------------OOOO-----............. - 0x07, 0xf0, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOO--------------OOOO-----............. - 0x07, 0xf0, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOO--------------OOOO-----............. - 0x07, 0xf8, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOOO-------------OOOO-----............. - 0x07, 0xf8, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOOO-------------OOOO-----............. - 0x07, 0xfc, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOOOO------------OOOO-----............. - 0x07, 0xbc, 0x00, 0x3c, 0x00, 0x00, // -----OOOO-OOOO------------OOOO-----............. - 0x07, 0xbe, 0x00, 0x3c, 0x00, 0x00, // -----OOOO-OOOOO-----------OOOO-----............. - 0x07, 0x9e, 0x00, 0x3c, 0x00, 0x00, // -----OOOO--OOOO-----------OOOO-----............. - 0x07, 0x9f, 0x00, 0x3c, 0x00, 0x00, // -----OOOO--OOOOO----------OOOO-----............. - 0x07, 0x8f, 0x00, 0x3c, 0x00, 0x00, // -----OOOO---OOOO----------OOOO-----............. - 0x07, 0x8f, 0x80, 0x3c, 0x00, 0x00, // -----OOOO---OOOOO---------OOOO-----............. - 0x07, 0x87, 0x80, 0x3c, 0x00, 0x00, // -----OOOO----OOOO---------OOOO-----............. - 0x07, 0x87, 0xc0, 0x3c, 0x00, 0x00, // -----OOOO----OOOOO--------OOOO-----............. - 0x07, 0x87, 0xc0, 0x3c, 0x00, 0x00, // -----OOOO----OOOOO--------OOOO-----............. - 0x07, 0x83, 0xe0, 0x3c, 0x00, 0x00, // -----OOOO-----OOOOO-------OOOO-----............. - 0x07, 0x83, 0xe0, 0x3c, 0x00, 0x00, // -----OOOO-----OOOOO-------OOOO-----............. - 0x07, 0x81, 0xf0, 0x3c, 0x00, 0x00, // -----OOOO------OOOOO------OOOO-----............. - 0x07, 0x81, 0xf0, 0x3c, 0x00, 0x00, // -----OOOO------OOOOO------OOOO-----............. - 0x07, 0x80, 0xf8, 0x3c, 0x00, 0x00, // -----OOOO-------OOOOO-----OOOO-----............. - 0x07, 0x80, 0xf8, 0x3c, 0x00, 0x00, // -----OOOO-------OOOOO-----OOOO-----............. - 0x07, 0x80, 0x7c, 0x3c, 0x00, 0x00, // -----OOOO--------OOOOO----OOOO-----............. - 0x07, 0x80, 0x7c, 0x3c, 0x00, 0x00, // -----OOOO--------OOOOO----OOOO-----............. - 0x07, 0x80, 0x3c, 0x3c, 0x00, 0x00, // -----OOOO---------OOOO----OOOO-----............. - 0x07, 0x80, 0x3e, 0x3c, 0x00, 0x00, // -----OOOO---------OOOOO---OOOO-----............. - 0x07, 0x80, 0x1e, 0x3c, 0x00, 0x00, // -----OOOO----------OOOO---OOOO-----............. - 0x07, 0x80, 0x1f, 0x3c, 0x00, 0x00, // -----OOOO----------OOOOO--OOOO-----............. - 0x07, 0x80, 0x0f, 0x3c, 0x00, 0x00, // -----OOOO-----------OOOO--OOOO-----............. - 0x07, 0x80, 0x0f, 0xbc, 0x00, 0x00, // -----OOOO-----------OOOOO-OOOO-----............. - 0x07, 0x80, 0x07, 0xbc, 0x00, 0x00, // -----OOOO------------OOOO-OOOO-----............. - 0x07, 0x80, 0x07, 0xfc, 0x00, 0x00, // -----OOOO------------OOOOOOOOO-----............. - 0x07, 0x80, 0x03, 0xfc, 0x00, 0x00, // -----OOOO-------------OOOOOOOO-----............. - 0x07, 0x80, 0x03, 0xfc, 0x00, 0x00, // -----OOOO-------------OOOOOOOO-----............. - 0x07, 0x80, 0x01, 0xfc, 0x00, 0x00, // -----OOOO--------------OOOOOOO-----............. - 0x07, 0x80, 0x01, 0xfc, 0x00, 0x00, // -----OOOO--------------OOOOOOO-----............. - 0x07, 0x80, 0x01, 0xfc, 0x00, 0x00, // -----OOOO--------------OOOOOOO-----............. - 0x07, 0x80, 0x00, 0xfc, 0x00, 0x00, // -----OOOO---------------OOOOOO-----............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - - // ASCII: 79, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // -----------------OO------------------........... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........... - 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOO-----------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0xff, 0xff, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOO--------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x03, 0xf8, 0x00, 0xfc, 0x00, 0x00, // ------OOOOOOO-----------OOOOOO-------........... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x0f, 0x80, 0x00, 0x1f, 0x80, 0x00, // ----OOOOO------------------OOOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0x80, 0x00, // ---OOOOO---------------------OOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x0f, 0x80, 0x00, // ---OOOOO--------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........... - 0x03, 0xe0, 0x00, 0x3e, 0x00, 0x00, // ------OOOOO---------------OOOOO------........... - 0x03, 0xf0, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOO------------OOOOOOO------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x00, 0xff, 0xdf, 0xf8, 0x00, 0x00, // --------OOOOOOOOOO-OOOOOOOOOO--------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------........... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOO------------........... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - - // ASCII: 80, char width: 28 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO---------.................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO------.................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----.................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO----.................... - 0x07, 0x80, 0xff, 0x80, 0x00, 0x00, // -----OOOO-------OOOOOOOOO---.................... - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO---.................... - 0x07, 0x80, 0x0f, 0xc0, 0x00, 0x00, // -----OOOO-----------OOOOOO--.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x0f, 0xc0, 0x00, 0x00, // -----OOOO-----------OOOOOO--.................... - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO---.................... - 0x07, 0x81, 0xff, 0x80, 0x00, 0x00, // -----OOOO------OOOOOOOOOO---.................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO----.................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----.................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO-------.................... - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO----------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - - // ASCII: 81, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // -----------------OO------------------........... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........... - 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOO-----------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0xff, 0xff, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOO--------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x03, 0xf8, 0x00, 0xfc, 0x00, 0x00, // ------OOOOOOO-----------OOOOOO-------........... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x0f, 0x80, 0x00, 0x1f, 0x80, 0x00, // ----OOOOO------------------OOOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0x80, 0x00, // ---OOOOO---------------------OOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x0f, 0x00, 0x00, 0x0f, 0x80, 0x00, // ----OOOO--------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........... - 0x03, 0xe0, 0x00, 0x3e, 0x00, 0x00, // ------OOOOO---------------OOOOO------........... - 0x03, 0xf0, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOO------------OOOOOOO------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x00, 0xff, 0xdf, 0xf8, 0x00, 0x00, // --------OOOOOOOOOO-OOOOOOOOOO--------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0x3f, 0xff, 0xc0, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOO-----------........... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOO------------........... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, // ----------------OOOOOOOOOO-----------........... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ---------------------OOOOOO----------........... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----------------------OOOOOO---------........... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, // -----------------------OOOOO---------........... - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ------------------------OOOOO--------........... - 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, // ------------------------OOOOOO-------........... - 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, // -------------------------OOOOOO------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - - // ASCII: 82, char width: 33 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO--------------............... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-----------............... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO----------............... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO---------............... - 0x07, 0x80, 0xff, 0x80, 0x00, 0x00, // -----OOOO-------OOOOOOOOO--------............... - 0x07, 0x80, 0x1f, 0xc0, 0x00, 0x00, // -----OOOO----------OOOOOOO-------............... - 0x07, 0x80, 0x0f, 0xc0, 0x00, 0x00, // -----OOOO-----------OOOOOO-------............... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO-------............... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO-------............... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO------............... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO------............... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO------............... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO------............... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO-------............... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO-------............... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO-------............... - 0x07, 0x80, 0x0f, 0x80, 0x00, 0x00, // -----OOOO-----------OOOOO--------............... - 0x07, 0x80, 0x7f, 0x80, 0x00, 0x00, // -----OOOO--------OOOOOOOO--------............... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO---------............... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-----------............... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO------------............... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO----------............... - 0x07, 0x80, 0x7f, 0x00, 0x00, 0x00, // -----OOOO--------OOOOOOO---------............... - 0x07, 0x80, 0x1f, 0x00, 0x00, 0x00, // -----OOOO----------OOOOO---------............... - 0x07, 0x80, 0x0f, 0x80, 0x00, 0x00, // -----OOOO-----------OOOOO--------............... - 0x07, 0x80, 0x0f, 0x80, 0x00, 0x00, // -----OOOO-----------OOOOO--------............... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO-------............... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO-------............... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO------............... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO------............... - 0x07, 0x80, 0x01, 0xf0, 0x00, 0x00, // -----OOOO--------------OOOOO-----............... - 0x07, 0x80, 0x01, 0xf0, 0x00, 0x00, // -----OOOO--------------OOOOO-----............... - 0x07, 0x80, 0x00, 0xf8, 0x00, 0x00, // -----OOOO---------------OOOOO----............... - 0x07, 0x80, 0x00, 0xf8, 0x00, 0x00, // -----OOOO---------------OOOOO----............... - 0x07, 0x80, 0x00, 0x7c, 0x00, 0x00, // -----OOOO----------------OOOOO---............... - 0x07, 0x80, 0x00, 0x7c, 0x00, 0x00, // -----OOOO----------------OOOOO---............... - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO--............... - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO--............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - - // ASCII: 83, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO--------.................. - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO-----.................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x0f, 0xe0, 0x07, 0x80, 0x00, 0x00, // ----OOOOOOO----------OOOO-----.................. - 0x0f, 0x80, 0x01, 0x80, 0x00, 0x00, // ----OOOOO--------------OO-----.................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------------------.................. - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------.................. - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------.................. - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------.................. - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------.................. - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------.................. - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------.................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO---------------------.................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------------.................. - 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOO-----------------.................. - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------------.................. - 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOO---------.................. - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-------.................. - 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOO------.................. - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, // -------------OOOOOOOOOOOO-----.................. - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, // -----------------OOOOOOOOO----.................. - 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------------------OOOOOOO----.................. - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ---------------------OOOOOO---.................. - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ---------------------OOOOOO---.................. - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----------------------OOOOO---.................. - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----------------------OOOOO---.................. - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----------------------OOOOO---.................. - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----------------------OOOOO---.................. - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----------------------OOOOO---.................. - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----------------------OOOOO---.................. - 0x10, 0x00, 0x07, 0xe0, 0x00, 0x00, // ---O-----------------OOOOOO---.................. - 0x1c, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOO---------------OOOOO----.................. - 0x1f, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ---OOOOO-----------OOOOOOO----.................. - 0x1f, 0xf9, 0xff, 0x80, 0x00, 0x00, // ---OOOOOOOOOO--OOOOOOOOOO-----.................. - 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOO------.................. - 0x0f, 0xff, 0xfe, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOO-------.................. - 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOO---------.................. - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 84, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOO................... - 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOO................... - 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOO................... - 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOO................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 85, char width: 34 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0x7c, 0x00, 0x00, // -----OOOOO---------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x03, 0xe0, 0x01, 0xf8, 0x00, 0x00, // ------OOOOO------------OOOOOO-----.............. - 0x03, 0xf0, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO----------OOOOOO------.............. - 0x01, 0xff, 0x3f, 0xe0, 0x00, 0x00, // -------OOOOOOOOO--OOOOOOOOO-------.............. - 0x00, 0xff, 0xff, 0xc0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOO--------.............. - 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOO---------.............. - 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----------.............. - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO--------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - - // ASCII: 86, char width: 32 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0xf8, 0x00, 0x00, 0x1f, 0x00, 0x00, // OOOOO----------------------OOOOO................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, // --OOOO--------------------OOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x1e, 0x00, 0x00, 0x78, 0x00, 0x00, // ---OOOO------------------OOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x0f, 0x00, 0x00, 0xf0, 0x00, 0x00, // ----OOOO----------------OOOO----................ - 0x0f, 0x80, 0x01, 0xf0, 0x00, 0x00, // ----OOOOO--------------OOOOO----................ - 0x0f, 0x80, 0x01, 0xf0, 0x00, 0x00, // ----OOOOO--------------OOOOO----................ - 0x07, 0x80, 0x01, 0xe0, 0x00, 0x00, // -----OOOO--------------OOOO-----................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x03, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ------OOOO------------OOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, // --------OOOO--------OOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x1e, 0xf8, 0x00, 0x00, 0x00, // -----------OOOO-OOOOO-----------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOO------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 87, char width: 46 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x3c, 0x00, 0x0f, 0xc0, 0x00, 0xf8, // --OOOO--------------OOOOOO--------------OOOOO-.. - 0x3e, 0x00, 0x0f, 0xc0, 0x00, 0xf0, // --OOOOO-------------OOOOOO--------------OOOO--.. - 0x3e, 0x00, 0x0f, 0xc0, 0x00, 0xf0, // --OOOOO-------------OOOOOO--------------OOOO--.. - 0x3e, 0x00, 0x0f, 0xc0, 0x01, 0xf0, // --OOOOO-------------OOOOOO-------------OOOOO--.. - 0x1e, 0x00, 0x0f, 0xe0, 0x01, 0xf0, // ---OOOO-------------OOOOOOO------------OOOOO--.. - 0x1e, 0x00, 0x1f, 0xe0, 0x01, 0xf0, // ---OOOO------------OOOOOOOO------------OOOOO--.. - 0x1f, 0x00, 0x1f, 0xe0, 0x01, 0xe0, // ---OOOOO-----------OOOOOOOO------------OOOO---.. - 0x1f, 0x00, 0x1e, 0xe0, 0x03, 0xe0, // ---OOOOO-----------OOOO-OOO-----------OOOOO---.. - 0x1f, 0x00, 0x1c, 0xf0, 0x03, 0xe0, // ---OOOOO-----------OOO--OOOO----------OOOOO---.. - 0x0f, 0x00, 0x3c, 0xf0, 0x03, 0xe0, // ----OOOO----------OOOO--OOOO----------OOOOO---.. - 0x0f, 0x80, 0x3c, 0xf0, 0x03, 0xc0, // ----OOOOO---------OOOO--OOOO----------OOOO----.. - 0x0f, 0x80, 0x3c, 0x70, 0x07, 0xc0, // ----OOOOO---------OOOO---OOO---------OOOOO----.. - 0x0f, 0x80, 0x3c, 0x78, 0x07, 0xc0, // ----OOOOO---------OOOO---OOOO--------OOOOO----.. - 0x07, 0x80, 0x38, 0x78, 0x07, 0xc0, // -----OOOO---------OOO----OOOO--------OOOOO----.. - 0x07, 0x80, 0x78, 0x78, 0x07, 0x80, // -----OOOO--------OOOO----OOOO--------OOOO-----.. - 0x07, 0xc0, 0x78, 0x78, 0x07, 0x80, // -----OOOOO-------OOOO----OOOO--------OOOO-----.. - 0x07, 0xc0, 0x78, 0x38, 0x0f, 0x80, // -----OOOOO-------OOOO-----OOO-------OOOOO-----.. - 0x07, 0xc0, 0x70, 0x3c, 0x0f, 0x80, // -----OOOOO-------OOO------OOOO------OOOOO-----.. - 0x03, 0xc0, 0xf0, 0x3c, 0x0f, 0x80, // ------OOOO------OOOO------OOOO------OOOOO-----.. - 0x03, 0xe0, 0xf0, 0x3c, 0x0f, 0x00, // ------OOOOO-----OOOO------OOOO------OOOO------.. - 0x03, 0xe0, 0xf0, 0x1c, 0x1f, 0x00, // ------OOOOO-----OOOO-------OOO-----OOOOO------.. - 0x03, 0xe0, 0xf0, 0x1e, 0x1f, 0x00, // ------OOOOO-----OOOO-------OOOO----OOOOO------.. - 0x01, 0xe0, 0xe0, 0x1e, 0x1f, 0x00, // -------OOOO-----OOO--------OOOO----OOOOO------.. - 0x01, 0xe1, 0xe0, 0x1e, 0x1e, 0x00, // -------OOOO----OOOO--------OOOO----OOOO-------.. - 0x01, 0xf1, 0xe0, 0x1e, 0x1e, 0x00, // -------OOOOO---OOOO--------OOOO----OOOO-------.. - 0x01, 0xf1, 0xe0, 0x0e, 0x3e, 0x00, // -------OOOOO---OOOO---------OOO---OOOOO-------.. - 0x00, 0xf1, 0xc0, 0x0f, 0x3e, 0x00, // --------OOOO---OOO----------OOOO--OOOOO-------.. - 0x00, 0xf3, 0xc0, 0x0f, 0x3e, 0x00, // --------OOOO--OOOO----------OOOO--OOOOO-------.. - 0x00, 0xfb, 0xc0, 0x0f, 0x3c, 0x00, // --------OOOOO-OOOO----------OOOO--OOOO--------.. - 0x00, 0xfb, 0xc0, 0x07, 0x7c, 0x00, // --------OOOOO-OOOO-----------OOO-OOOOO--------.. - 0x00, 0xfb, 0xc0, 0x07, 0xfc, 0x00, // --------OOOOO-OOOO-----------OOOOOOOOO--------.. - 0x00, 0x7b, 0x80, 0x07, 0xfc, 0x00, // ---------OOOO-OOO------------OOOOOOOOO--------.. - 0x00, 0x7f, 0x80, 0x07, 0xf8, 0x00, // ---------OOOOOOOO------------OOOOOOOO---------.. - 0x00, 0x7f, 0x80, 0x07, 0xf8, 0x00, // ---------OOOOOOOO------------OOOOOOOO---------.. - 0x00, 0x7f, 0x80, 0x03, 0xf8, 0x00, // ---------OOOOOOOO-------------OOOOOOO---------.. - 0x00, 0x3f, 0x00, 0x03, 0xf8, 0x00, // ----------OOOOOO--------------OOOOOOO---------.. - 0x00, 0x3f, 0x00, 0x03, 0xf8, 0x00, // ----------OOOOOO--------------OOOOOOO---------.. - 0x00, 0x3f, 0x00, 0x03, 0xf0, 0x00, // ----------OOOOOO--------------OOOOOO----------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - - // ASCII: 88, char width: 32 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x1f, 0x00, 0x00, 0x7c, 0x00, 0x00, // ---OOOOO-----------------OOOOO--................ - 0x0f, 0x80, 0x00, 0xf8, 0x00, 0x00, // ----OOOOO---------------OOOOO---................ - 0x0f, 0x80, 0x01, 0xf0, 0x00, 0x00, // ----OOOOO--------------OOOOO----................ - 0x07, 0xc0, 0x01, 0xf0, 0x00, 0x00, // -----OOOOO-------------OOOOO----................ - 0x03, 0xe0, 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-----------OOOOO-----................ - 0x03, 0xe0, 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-----------OOOOO-----................ - 0x01, 0xf0, 0x07, 0xc0, 0x00, 0x00, // -------OOOOO---------OOOOO------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x00, 0xf8, 0x0f, 0x80, 0x00, 0x00, // --------OOOOO-------OOOOO-------................ - 0x00, 0x7c, 0x1f, 0x00, 0x00, 0x00, // ---------OOOOO-----OOOOO--------................ - 0x00, 0x7c, 0x1f, 0x00, 0x00, 0x00, // ---------OOOOO-----OOOOO--------................ - 0x00, 0x3e, 0x3e, 0x00, 0x00, 0x00, // ----------OOOOO---OOOOO---------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x1f, 0x7c, 0x00, 0x00, 0x00, // -----------OOOOO-OOOOO----------................ - 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOO-----------................ - 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOO-----------................ - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOO------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3c, 0x3e, 0x00, 0x00, 0x00, // ----------OOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x0f, 0x80, 0x01, 0xf0, 0x00, 0x00, // ----OOOOO--------------OOOOO----................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 89, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0xf8, 0x00, 0x01, 0xf0, 0x00, 0x00, // OOOOO------------------OOOOO-................... - 0x7c, 0x00, 0x01, 0xf0, 0x00, 0x00, // -OOOOO-----------------OOOOO-................... - 0x7c, 0x00, 0x03, 0xe0, 0x00, 0x00, // -OOOOO----------------OOOOO--................... - 0x3e, 0x00, 0x03, 0xe0, 0x00, 0x00, // --OOOOO---------------OOOOO--................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x03, 0xe0, 0x3e, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOO------................... - 0x03, 0xe0, 0x7c, 0x00, 0x00, 0x00, // ------OOOOO------OOOOO-------................... - 0x01, 0xf0, 0x7c, 0x00, 0x00, 0x00, // -------OOOOO-----OOOOO-------................... - 0x01, 0xf0, 0xf8, 0x00, 0x00, 0x00, // -------OOOOO----OOOOO--------................... - 0x00, 0xf8, 0xf8, 0x00, 0x00, 0x00, // --------OOOOO---OOOOO--------................... - 0x00, 0x7d, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOO-OOOOO---------................... - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO----------................... - 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO-----------................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO-----------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 90, char width: 32 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOO---................ - 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOO---................ - 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOO---................ - 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOO---................ - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ------------------------OOOOO---................ - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, // -----------------------OOOOO----................ - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----------------------OOOOOO----................ - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ---------------------OOOOOO-----................ - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO------................ - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-------................ - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -------------------OOOOOO-------................ - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO--------................ - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // ------------------OOOOO---------................ - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----------------OOOOOO---------................ - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----------------OOOOOO----------................ - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO-----------................ - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO------------................ - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO--------------................ - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO---------------................ - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO---------------................ - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO----------------................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO-----------------................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-----------------................ - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO------------------................ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-------------------................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO--------------------................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO----------------------................ - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------................ - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-----------------------................ - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------------................ - 0x3f, 0xff, 0xff, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOO--................ - 0x3f, 0xff, 0xff, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOO--................ - 0x3f, 0xff, 0xff, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOO--................ - 0x3f, 0xff, 0xff, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOO--................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 91, char width: 18 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO----.............................. - 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO----.............................. - 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO----.............................. - 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO----.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO----.............................. - 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO----.............................. - 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO----.............................. - 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO----.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - - // ASCII: 92, char width: 16 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO------------................................ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO------------................................ - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO-----------................................ - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO-----------................................ - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO-----------................................ - 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOO-----------................................ - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO----------................................ - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO----------................................ - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO----------................................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO---------................................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO---------................................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO---------................................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO---------................................ - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO--------................................ - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO--------................................ - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO--------................................ - 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOO--------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x01, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOO------................................ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-----................................ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-----................................ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-----................................ - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO----................................ - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO----................................ - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO----................................ - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO----................................ - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO---................................ - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO---................................ - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO---................................ - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO---................................ - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--................................ - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--................................ - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--................................ - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-................................ - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-................................ - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-................................ - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO-................................ - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - - // ASCII: 93, char width: 18 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - - // ASCII: 94, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------------......... - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO---------------......... - 0x00, 0x03, 0xff, 0x80, 0x00, 0x00, // --------------OOOOOOOOOOO--------------......... - 0x00, 0x07, 0xef, 0xc0, 0x00, 0x00, // -------------OOOOOO-OOOOOO-------------......... - 0x00, 0x07, 0xc7, 0xe0, 0x00, 0x00, // -------------OOOOO---OOOOOO------------......... - 0x00, 0x0f, 0x83, 0xe0, 0x00, 0x00, // ------------OOOOO-----OOOOO------------......... - 0x00, 0x1f, 0x01, 0xf0, 0x00, 0x00, // -----------OOOOO-------OOOOO-----------......... - 0x00, 0x3e, 0x00, 0xf8, 0x00, 0x00, // ----------OOOOO---------OOOOO----------......... - 0x00, 0x7c, 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO-----------OOOOO---------......... - 0x00, 0xf8, 0x00, 0x3e, 0x00, 0x00, // --------OOOOO-------------OOOOO--------......... - 0x01, 0xf0, 0x00, 0x1f, 0x00, 0x00, // -------OOOOO---------------OOOOO-------......... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, // ------OOOOO-----------------OOOOO------......... - 0x03, 0xc0, 0x00, 0x07, 0xc0, 0x00, // ------OOOO-------------------OOOOO-----......... - 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, // -----O---------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 95, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOO........................ - 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOO........................ - 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOO........................ - - // ASCII: 96, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------......................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO--------------......................... - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO-------------......................... - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO-------------......................... - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO------------......................... - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-----------......................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----------......................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----------......................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------......................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - - // ASCII: 97, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO--------................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-------................... - 0x07, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----OOO---------OOOOOO------................... - 0x04, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----O------------OOOOO------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO-----................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-----................... - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO-----................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO-----................... - 0x0f, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOO-----................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO-----................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOO-----------OOOOOO-----................... - 0x1f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOO----------OOOOOO-----................... - 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOOOOO-----................... - 0x0f, 0xc1, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO-----OOOOOOOOO-----................... - 0x0f, 0xff, 0xef, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO-OOOO-----................... - 0x07, 0xff, 0xcf, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO--OOOO-----................... - 0x01, 0xff, 0x8f, 0x00, 0x00, 0x00, // -------OOOOOOOOOO---OOOO-----................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 98, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x07, 0xf0, 0x00, 0x00, 0x00, // ----OOOO-----OOOOOOO----------.................. - 0x0f, 0x1f, 0xfc, 0x00, 0x00, 0x00, // ----OOOO---OOOOOOOOOOO--------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x7f, 0xff, 0x00, 0x00, 0x00, // ----OOOO-OOOOOOOOOOOOOOO------.................. - 0x0f, 0x78, 0x1f, 0x80, 0x00, 0x00, // ----OOOO-OOOO------OOOOOO-----.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOOO----------OOOOO----.................. - 0x0f, 0xc0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOO-----------OOOOO----.................. - 0x0f, 0x80, 0x03, 0xc0, 0x00, 0x00, // ----OOOOO-------------OOOO----.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x00, 0x01, 0xe0, 0x00, 0x00, // ----OOOO---------------OOOO---.................. - 0x0f, 0x00, 0x01, 0xe0, 0x00, 0x00, // ----OOOO---------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xc0, 0x00, 0x00, // ----OOOOO-------------OOOO----.................. - 0x0f, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ----OOOOOO------------OOOO----.................. - 0x0f, 0xc0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOO-----------OOOOO----.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xf0, 0x1f, 0x80, 0x00, 0x00, // ----OOOOOOOO-------OOOOOO-----.................. - 0x0f, 0x7c, 0x3f, 0x00, 0x00, 0x00, // ----OOOO-OOOOO----OOOOOO------.................. - 0x0f, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOOO------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ----OOOO----OOOOOOOOO---------.................. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO-----------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 99, char width: 26 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x1f, 0xf0, 0x00, 0x00, 0x00, // -----------OOOOOOOOO------...................... - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO----...................... - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO---...................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO---...................... - 0x03, 0xf0, 0x0e, 0x00, 0x00, 0x00, // ------OOOOOO--------OOO---...................... - 0x07, 0xc0, 0x02, 0x00, 0x00, 0x00, // -----OOOOO------------O---...................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------...................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO------------------...................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------...................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------...................... - 0x07, 0xe0, 0x06, 0x00, 0x00, 0x00, // -----OOOOOO----------OO---...................... - 0x03, 0xf8, 0x3e, 0x00, 0x00, 0x00, // ------OOOOOOO-----OOOOO---...................... - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO---...................... - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO---...................... - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO----...................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO---------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - - // ASCII: 100, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x3f, 0x87, 0x80, 0x00, 0x00, // ----------OOOOOOO----OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x01, 0xff, 0xf7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOO-OOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x07, 0xe0, 0x7f, 0x80, 0x00, 0x00, // -----OOOOOO------OOOOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x0f, 0x80, 0x1f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOOO-----.................. - 0x0f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ----OOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x1f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x07, 0xf0, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOO----OOOOOOOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x01, 0xff, 0xe7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOO--OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 101, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // -----------OOOOOOOO----------................... - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO--------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO-----................... - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO----................... - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO---................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------------................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--------------------................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------------------................... - 0x07, 0xe0, 0x01, 0x80, 0x00, 0x00, // -----OOOOOO------------OO----................... - 0x03, 0xfc, 0x1f, 0x80, 0x00, 0x00, // ------OOOOOOOO-----OOOOOO----................... - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO----................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO----................... - 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO------................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 102, char width: 16 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO............................... - 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOOO............................... - 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOO............................... - 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO............................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO----................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOO................................ - 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOO................................ - 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOO................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - - // ASCII: 103, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO-------------.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x01, 0xff, 0xf7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOO-OOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x07, 0xe0, 0x7f, 0x80, 0x00, 0x00, // -----OOOOOO------OOOOOOOO-----.................. - 0x0f, 0xc0, 0x3f, 0x80, 0x00, 0x00, // ----OOOOOO--------OOOOOOO-----.................. - 0x0f, 0x80, 0x1f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOOO-----.................. - 0x0f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ----OOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO-----.................. - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO-----.................. - 0x0f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ----OOOO------------OOOOO-----.................. - 0x0f, 0x80, 0x1f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOOO-----.................. - 0x0f, 0xc0, 0x3f, 0x80, 0x00, 0x00, // ----OOOOOO--------OOOOOOO-----.................. - 0x07, 0xe0, 0x7f, 0x80, 0x00, 0x00, // -----OOOOOO------OOOOOOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x01, 0xff, 0xe7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOO--OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x00, 0x3f, 0x07, 0x80, 0x00, 0x00, // ----------OOOOOO-----OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x02, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------O-----------OOOOOO------.................. - 0x03, 0xc0, 0xfe, 0x00, 0x00, 0x00, // ------OOOO------OOOOOOO-------.................. - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO--------.................. - 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOO---------.................. - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO----------.................. - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO-------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 104, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x07, 0xf0, 0x00, 0x00, 0x00, // ----OOOO-----OOOOOOO----------.................. - 0x0f, 0x0f, 0xfc, 0x00, 0x00, 0x00, // ----OOOO----OOOOOOOOOO--------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x7f, 0xff, 0x00, 0x00, 0x00, // ----OOOO-OOOOOOOOOOOOOOO------.................. - 0x0f, 0x78, 0x3f, 0x00, 0x00, 0x00, // ----OOOO-OOOO-----OOOOOO------.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xc0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOO----------OOOOO-----.................. - 0x0f, 0xc0, 0x07, 0x80, 0x00, 0x00, // ----OOOOOO-----------OOOO-----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 105, char width: 13 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - - // ASCII: 106, char width: 13 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOO-----................................... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO------................................... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO------................................... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-------................................... - 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOO----------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - - // ASCII: 107, char width: 27 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x0f, 0xc0, 0x00, 0x00, // ----OOOO------------OOOOOO-..................... - 0x0f, 0x00, 0x1f, 0x00, 0x00, 0x00, // ----OOOO-----------OOOOO---..................... - 0x0f, 0x00, 0x3e, 0x00, 0x00, 0x00, // ----OOOO----------OOOOO----..................... - 0x0f, 0x00, 0x7c, 0x00, 0x00, 0x00, // ----OOOO---------OOOOO-----..................... - 0x0f, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----OOOO--------OOOOO------..................... - 0x0f, 0x01, 0xf0, 0x00, 0x00, 0x00, // ----OOOO-------OOOOO-------..................... - 0x0f, 0x03, 0xe0, 0x00, 0x00, 0x00, // ----OOOO------OOOOO--------..................... - 0x0f, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOO-----OOOOO---------..................... - 0x0f, 0x0f, 0x80, 0x00, 0x00, 0x00, // ----OOOO----OOOOO----------..................... - 0x0f, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOO---OOOOO-----------..................... - 0x0f, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----OOOO--OOOOO------------..................... - 0x0f, 0x7c, 0x00, 0x00, 0x00, 0x00, // ----OOOO-OOOOO-------------..................... - 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOO--------------..................... - 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOO--------------..................... - 0x0f, 0x7c, 0x00, 0x00, 0x00, 0x00, // ----OOOO-OOOOO-------------..................... - 0x0f, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----OOOO--OOOOO------------..................... - 0x0f, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOO---OOOOO-----------..................... - 0x0f, 0x0f, 0x80, 0x00, 0x00, 0x00, // ----OOOO----OOOOO----------..................... - 0x0f, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOO-----OOOOO---------..................... - 0x0f, 0x03, 0xe0, 0x00, 0x00, 0x00, // ----OOOO------OOOOO--------..................... - 0x0f, 0x03, 0xf0, 0x00, 0x00, 0x00, // ----OOOO------OOOOOO-------..................... - 0x0f, 0x01, 0xf8, 0x00, 0x00, 0x00, // ----OOOO-------OOOOOO------..................... - 0x0f, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOO--------OOOOOO-----..................... - 0x0f, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOO---------OOOOOO----..................... - 0x0f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ----OOOO----------OOOOOO---..................... - 0x0f, 0x00, 0x1f, 0x80, 0x00, 0x00, // ----OOOO-----------OOOOOO--..................... - 0x0f, 0x00, 0x0f, 0xc0, 0x00, 0x00, // ----OOOO------------OOOOOO-..................... - 0x0f, 0x00, 0x07, 0xe0, 0x00, 0x00, // ----OOOO-------------OOOOOO..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - - // ASCII: 108, char width: 13 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - - // ASCII: 109, char width: 46 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x07, 0xf0, 0x03, 0xf0, 0x00, // -------------OOOOOOO----------OOOOOO----------.. - 0x0f, 0x1f, 0xfc, 0x0f, 0xfc, 0x00, // ----OOOO---OOOOOOOOOOO------OOOOOOOOOO--------.. - 0x0f, 0x3f, 0xfc, 0x1f, 0xfe, 0x00, // ----OOOO--OOOOOOOOOOOO-----OOOOOOOOOOOO-------.. - 0x0f, 0x7f, 0xfe, 0x3f, 0xff, 0x00, // ----OOOO-OOOOOOOOOOOOOO---OOOOOOOOOOOOOO------.. - 0x0f, 0x78, 0x3f, 0x78, 0x1f, 0x00, // ----OOOO-OOOO-----OOOOOO-OOOO------OOOOO------.. - 0x0f, 0xe0, 0x1f, 0x70, 0x0f, 0x80, // ----OOOOOOO--------OOOOO-OOO--------OOOOO-----.. - 0x0f, 0xc0, 0x0f, 0xe0, 0x0f, 0x80, // ----OOOOOO----------OOOOOOO---------OOOOO-----.. - 0x0f, 0xc0, 0x0f, 0xc0, 0x07, 0x80, // ----OOOOOO----------OOOOOO-----------OOOO-----.. - 0x0f, 0x80, 0x07, 0xc0, 0x07, 0x80, // ----OOOOO------------OOOOO-----------OOOO-----.. - 0x0f, 0x80, 0x07, 0x80, 0x07, 0x80, // ----OOOOO------------OOOO------------OOOO-----.. - 0x0f, 0x80, 0x07, 0x80, 0x07, 0xc0, // ----OOOOO------------OOOO------------OOOOO----.. - 0x0f, 0x80, 0x07, 0x80, 0x07, 0xc0, // ----OOOOO------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - - // ASCII: 110, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOO----------.................. - 0x0f, 0x0f, 0xfc, 0x00, 0x00, 0x00, // ----OOOO----OOOOOOOOOO--------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x7f, 0xff, 0x00, 0x00, 0x00, // ----OOOO-OOOOOOOOOOOOOOO------.................. - 0x0f, 0x78, 0x3f, 0x00, 0x00, 0x00, // ----OOOO-OOOO-----OOOOOO------.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xc0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOO----------OOOOO-----.................. - 0x0f, 0xc0, 0x07, 0x80, 0x00, 0x00, // ----OOOOOO-----------OOOO-----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 111, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO-----------................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO---------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x07, 0xe0, 0x7e, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOO------................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOOO-----................... - 0x07, 0xf0, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO----OOOOOOO------................... - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-------................... - 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO--------................... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO---------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 112, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOO----------.................. - 0x0f, 0x1f, 0xfc, 0x00, 0x00, 0x00, // ----OOOO---OOOOOOOOOOO--------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x7f, 0xff, 0x00, 0x00, 0x00, // ----OOOO-OOOOOOOOOOOOOOO------.................. - 0x0f, 0x78, 0x1f, 0x80, 0x00, 0x00, // ----OOOO-OOOO------OOOOOO-----.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOOO----------OOOOO----.................. - 0x0f, 0xc0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOO-----------OOOOO----.................. - 0x0f, 0x80, 0x03, 0xc0, 0x00, 0x00, // ----OOOOO-------------OOOO----.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x00, 0x01, 0xe0, 0x00, 0x00, // ----OOOO---------------OOOO---.................. - 0x0f, 0x00, 0x01, 0xe0, 0x00, 0x00, // ----OOOO---------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xc0, 0x00, 0x00, // ----OOOOO-------------OOOO----.................. - 0x0f, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ----OOOOOO------------OOOO----.................. - 0x0f, 0xc0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOO-----------OOOOO----.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xf0, 0x1f, 0x80, 0x00, 0x00, // ----OOOOOOOO-------OOOOOO-----.................. - 0x0f, 0x7c, 0x3f, 0x00, 0x00, 0x00, // ----OOOO-OOOOO----OOOOOO------.................. - 0x0f, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOOO------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ----OOOO----OOOOOOOOO---------.................. - 0x0f, 0x01, 0xe0, 0x00, 0x00, 0x00, // ----OOOO-------OOOO-----------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 113, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO-------------.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x01, 0xff, 0xf7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOO-OOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x07, 0xe0, 0x7f, 0x80, 0x00, 0x00, // -----OOOOOO------OOOOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x0f, 0x80, 0x1f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOOO-----.................. - 0x0f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ----OOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x1f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x07, 0xf0, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOO----OOOOOOOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x01, 0xff, 0xe7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOO--OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x00, 0x1e, 0x07, 0x80, 0x00, 0x00, // -----------OOOO------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 114, char width: 19 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO............................. - 0x0f, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ----OOOO---OOOOOOOO............................. - 0x0f, 0x3f, 0xe0, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOO............................. - 0x0f, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ----OOOO-OOOOOOOOOO............................. - 0x0f, 0x78, 0x20, 0x00, 0x00, 0x00, // ----OOOO-OOOO-----O............................. - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------............................. - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - - // ASCII: 115, char width: 24 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOO------........................ - 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOO---........................ - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO---........................ - 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO---........................ - 0x1f, 0x80, 0x38, 0x00, 0x00, 0x00, // ---OOOOOO---------OOO---........................ - 0x1f, 0x00, 0x08, 0x00, 0x00, 0x00, // ---OOOOO------------O---........................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-----------------........................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-----------------........................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-----------------........................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-----------------........................ - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------........................ - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO--------------........................ - 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOO-----------........................ - 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOO--------........................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................ - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO----........................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO---........................ - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------------OOOOOOO---........................ - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----------------OOOOOO--........................ - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO--........................ - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--........................ - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--........................ - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--........................ - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO--........................ - 0x18, 0x00, 0xf8, 0x00, 0x00, 0x00, // ---OO-----------OOOOO---........................ - 0x1f, 0x03, 0xf8, 0x00, 0x00, 0x00, // ---OOOOO------OOOOOOO---........................ - 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOO----........................ - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO-----........................ - 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOO------........................ - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - - // ASCII: 116, char width: 18 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x7f, 0xff, 0x80, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOO-.............................. - 0x7f, 0xff, 0x80, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOO-.............................. - 0x7f, 0xff, 0x80, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOO-.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------.............................. - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO-.............................. - 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO-.............................. - 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOO-.............................. - 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOOO-.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - - // ASCII: 117, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x07, 0xf0, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOO----OOOOOOOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x01, 0xff, 0xe7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOO--OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 118, char width: 28 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x3c, 0x00, 0x03, 0xc0, 0x00, 0x00, // --OOOO----------------OOOO--.................... - 0x3c, 0x00, 0x07, 0xc0, 0x00, 0x00, // --OOOO---------------OOOOO--.................... - 0x3e, 0x00, 0x07, 0x80, 0x00, 0x00, // --OOOOO--------------OOOO---.................... - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO---.................... - 0x1e, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOO-------------OOOOO---.................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO----.................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO----.................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO----.................... - 0x0f, 0x80, 0x1e, 0x00, 0x00, 0x00, // ----OOOOO----------OOOO-----.................... - 0x07, 0x80, 0x3e, 0x00, 0x00, 0x00, // -----OOOO---------OOOOO-----.................... - 0x07, 0xc0, 0x3e, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOO-----.................... - 0x07, 0xc0, 0x3c, 0x00, 0x00, 0x00, // -----OOOOO--------OOOO------.................... - 0x03, 0xc0, 0x7c, 0x00, 0x00, 0x00, // ------OOOO-------OOOOO------.................... - 0x03, 0xe0, 0x7c, 0x00, 0x00, 0x00, // ------OOOOO------OOOOO------.................... - 0x03, 0xe0, 0x78, 0x00, 0x00, 0x00, // ------OOOOO------OOOO-------.................... - 0x01, 0xe0, 0xf8, 0x00, 0x00, 0x00, // -------OOOO-----OOOOO-------.................... - 0x01, 0xf0, 0xf8, 0x00, 0x00, 0x00, // -------OOOOO----OOOOO-------.................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO--------.................... - 0x00, 0xf1, 0xf0, 0x00, 0x00, 0x00, // --------OOOO---OOOOO--------.................... - 0x00, 0xf9, 0xf0, 0x00, 0x00, 0x00, // --------OOOOO--OOOOO--------.................... - 0x00, 0xf9, 0xe0, 0x00, 0x00, 0x00, // --------OOOOO--OOOO---------.................... - 0x00, 0x7b, 0xe0, 0x00, 0x00, 0x00, // ---------OOOO-OOOOO---------.................... - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO---------.................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO-----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - - // ASCII: 119, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x3c, 0x00, 0xfc, 0x00, 0xf0, 0x00, // --OOOO----------OOOOOO----------OOOO--.......... - 0x3e, 0x00, 0xfc, 0x00, 0xf0, 0x00, // --OOOOO---------OOOOOO----------OOOO--.......... - 0x1e, 0x00, 0xfc, 0x01, 0xf0, 0x00, // ---OOOO---------OOOOOO---------OOOOO--.......... - 0x1e, 0x00, 0xfe, 0x01, 0xe0, 0x00, // ---OOOO---------OOOOOOO--------OOOO---.......... - 0x1e, 0x01, 0xfe, 0x01, 0xe0, 0x00, // ---OOOO--------OOOOOOOO--------OOOO---.......... - 0x1f, 0x01, 0xfe, 0x01, 0xe0, 0x00, // ---OOOOO-------OOOOOOOO--------OOOO---.......... - 0x0f, 0x01, 0xee, 0x03, 0xe0, 0x00, // ----OOOO-------OOOO-OOO-------OOOOO---.......... - 0x0f, 0x01, 0xce, 0x03, 0xc0, 0x00, // ----OOOO-------OOO--OOO-------OOOO----.......... - 0x0f, 0x01, 0xcf, 0x03, 0xc0, 0x00, // ----OOOO-------OOO--OOOO------OOOO----.......... - 0x0f, 0x83, 0xcf, 0x03, 0xc0, 0x00, // ----OOOOO-----OOOO--OOOO------OOOO----.......... - 0x07, 0x83, 0xc7, 0x03, 0xc0, 0x00, // -----OOOO-----OOOO---OOO------OOOO----.......... - 0x07, 0x83, 0xc7, 0x07, 0xc0, 0x00, // -----OOOO-----OOOO---OOO-----OOOOO----.......... - 0x07, 0x83, 0x87, 0x87, 0x80, 0x00, // -----OOOO-----OOO----OOOO----OOOO-----.......... - 0x07, 0x87, 0x87, 0x87, 0x80, 0x00, // -----OOOO----OOOO----OOOO----OOOO-----.......... - 0x07, 0xc7, 0x87, 0x87, 0x80, 0x00, // -----OOOOO---OOOO----OOOO----OOOO-----.......... - 0x03, 0xc7, 0x83, 0x8f, 0x80, 0x00, // ------OOOO---OOOO-----OOO---OOOOO-----.......... - 0x03, 0xc7, 0x03, 0xcf, 0x00, 0x00, // ------OOOO---OOO------OOOO--OOOO------.......... - 0x03, 0xcf, 0x03, 0xcf, 0x00, 0x00, // ------OOOO--OOOO------OOOO--OOOO------.......... - 0x03, 0xef, 0x03, 0xcf, 0x00, 0x00, // ------OOOOO-OOOO------OOOO--OOOO------.......... - 0x01, 0xef, 0x01, 0xdf, 0x00, 0x00, // -------OOOO-OOOO-------OOO-OOOOO------.......... - 0x01, 0xee, 0x01, 0xfe, 0x00, 0x00, // -------OOOO-OOO--------OOOOOOOO-------.......... - 0x01, 0xfe, 0x01, 0xfe, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOO-------.......... - 0x01, 0xfe, 0x01, 0xfe, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOO-------.......... - 0x00, 0xfe, 0x00, 0xfe, 0x00, 0x00, // --------OOOOOOO---------OOOOOOO-------.......... - 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO----------OOOOOO--------.......... - 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO----------OOOOOO--------.......... - 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO----------OOOOOO--------.......... - 0x00, 0x7c, 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO-----------OOOOO--------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - - // ASCII: 120, char width: 28 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO---.................... - 0x1f, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOOO-----------OOOOO----.................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO----.................... - 0x07, 0xc0, 0x3e, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOO-----.................... - 0x03, 0xc0, 0x7c, 0x00, 0x00, 0x00, // ------OOOO-------OOOOO------.................... - 0x03, 0xe0, 0x7c, 0x00, 0x00, 0x00, // ------OOOOO------OOOOO------.................... - 0x01, 0xf0, 0xf8, 0x00, 0x00, 0x00, // -------OOOOO----OOOOO-------.................... - 0x00, 0xf1, 0xf0, 0x00, 0x00, 0x00, // --------OOOO---OOOOO--------.................... - 0x00, 0xf9, 0xf0, 0x00, 0x00, 0x00, // --------OOOOO--OOOOO--------.................... - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO---------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO------------.................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO-----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO----------.................... - 0x00, 0xfb, 0xe0, 0x00, 0x00, 0x00, // --------OOOOO-OOOOO---------.................... - 0x00, 0xf9, 0xf0, 0x00, 0x00, 0x00, // --------OOOOO--OOOOO--------.................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO--------.................... - 0x03, 0xe0, 0xf8, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOO-------.................... - 0x03, 0xe0, 0x7c, 0x00, 0x00, 0x00, // ------OOOOO------OOOOO------.................... - 0x07, 0xc0, 0x3c, 0x00, 0x00, 0x00, // -----OOOOO--------OOOO------.................... - 0x0f, 0x80, 0x3e, 0x00, 0x00, 0x00, // ----OOOOO---------OOOOO-----.................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO----.................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO----.................... - 0x3e, 0x00, 0x0f, 0x80, 0x00, 0x00, // --OOOOO-------------OOOOO---.................... - 0x3e, 0x00, 0x07, 0xc0, 0x00, 0x00, // --OOOOO--------------OOOOO--.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - - // ASCII: 121, char width: 28 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x3c, 0x00, 0x07, 0xc0, 0x00, 0x00, // --OOOO---------------OOOOO--.................... - 0x3e, 0x00, 0x07, 0xc0, 0x00, 0x00, // --OOOOO--------------OOOOO--.................... - 0x3e, 0x00, 0x07, 0x80, 0x00, 0x00, // --OOOOO--------------OOOO---.................... - 0x1e, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOO-------------OOOOO---.................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO---.................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO----.................... - 0x0f, 0x00, 0x1f, 0x00, 0x00, 0x00, // ----OOOO-----------OOOOO----.................... - 0x0f, 0x80, 0x1e, 0x00, 0x00, 0x00, // ----OOOOO----------OOOO-----.................... - 0x07, 0x80, 0x1e, 0x00, 0x00, 0x00, // -----OOOO----------OOOO-----.................... - 0x07, 0x80, 0x3e, 0x00, 0x00, 0x00, // -----OOOO---------OOOOO-----.................... - 0x07, 0xc0, 0x3c, 0x00, 0x00, 0x00, // -----OOOOO--------OOOO------.................... - 0x03, 0xc0, 0x3c, 0x00, 0x00, 0x00, // ------OOOO--------OOOO------.................... - 0x03, 0xe0, 0x7c, 0x00, 0x00, 0x00, // ------OOOOO------OOOOO------.................... - 0x01, 0xe0, 0x78, 0x00, 0x00, 0x00, // -------OOOO------OOOO-------.................... - 0x01, 0xe0, 0xf8, 0x00, 0x00, 0x00, // -------OOOO-----OOOOO-------.................... - 0x01, 0xf0, 0xf8, 0x00, 0x00, 0x00, // -------OOOOO----OOOOO-------.................... - 0x00, 0xf0, 0xf0, 0x00, 0x00, 0x00, // --------OOOO----OOOO--------.................... - 0x00, 0xf1, 0xf0, 0x00, 0x00, 0x00, // --------OOOO---OOOOO--------.................... - 0x00, 0xf9, 0xe0, 0x00, 0x00, 0x00, // --------OOOOO--OOOO---------.................... - 0x00, 0x79, 0xe0, 0x00, 0x00, 0x00, // ---------OOOO--OOOO---------.................... - 0x00, 0x7b, 0xe0, 0x00, 0x00, 0x00, // ---------OOOO-OOOOO---------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO------------.................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO------------.................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------------.................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------------.................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO-------------.................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--------------.................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO--------------.................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO---------------.................... - 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOO---------------.................... - 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOO----------------.................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-----------------.................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - - // ASCII: 122, char width: 25 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x1f, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOO--....................... - 0x1f, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOO--....................... - 0x1f, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOO--....................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // ------------------OOOOO--....................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO---....................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----....................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ---------------OOOOOO----....................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO-----....................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOO------....................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO-------....................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO--------....................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO--------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO-----------....................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO------------....................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------------....................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------------....................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO---------------....................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------....................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------....................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-----------------....................... - 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO------------------....................... - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO--....................... - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO--....................... - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO--....................... - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO--....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - - // ASCII: 123, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, // ----------------------OO------.................. - 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ----------------OOOOOOOO------.................. - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO------.................. - 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // --------------OOOOOOOOOO------.................. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOO-----------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------------.................. - 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------.................. - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO---------------.................. - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-----------------.................. - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO---------------.................. - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO--------------.................. - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO----------.................. - 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // --------------OOOOOOOOOO------.................. - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO------.................. - 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ----------------OOOOOOOO------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 124, char width: 16 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - - // ASCII: 125, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, // ------O-----------------------.................. - 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------------.................. - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO---------------.................. - 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOO--------------.................. - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, // --------------OOOOOOOO--------.................. - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO------.................. - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // -----------------OOOOOOO------.................. - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO------.................. - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------------OOOOOOO---------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------------.................. - 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOO--------------.................. - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO---------------.................. - 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 126, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x3f, 0x80, 0x00, 0x40, 0x00, // ----------OOOOOOO----------------O-----......... - 0x00, 0xff, 0xf0, 0x01, 0xc0, 0x00, // --------OOOOOOOOOOOO-----------OOO-----......... - 0x03, 0xff, 0xfc, 0x03, 0xc0, 0x00, // ------OOOOOOOOOOOOOOOO--------OOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xe0, 0xff, 0xff, 0x80, 0x00, // -----OOOOOO-----OOOOOOOOOOOOOOOOO------......... - 0x07, 0x00, 0x3f, 0xff, 0x00, 0x00, // -----OOO----------OOOOOOOOOOOOOO-------......... - 0x06, 0x00, 0x07, 0xfc, 0x00, 0x00, // -----OO--------------OOOOOOOOO---------......... - 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, // -----O---------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // No glyph for ASCII: 127, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 128, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 129, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 130, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 131, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 132, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 133, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 134, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 135, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 136, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 137, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 138, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 139, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 140, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 141, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 142, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 143, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 144, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 145, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 146, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 147, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 148, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 149, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 150, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 151, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 152, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 153, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 154, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 155, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 156, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 157, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 158, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 159, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // ASCII: 160, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // ASCII: 161, char width: 19 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOO--------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - - // ASCII: 162, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, // -------------OOOOOOOO---------.................. - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO------.................. - 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOO------.................. - 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOO------.................. - 0x01, 0xfd, 0xc7, 0x00, 0x00, 0x00, // -------OOOOOOO-OOO---OOO------.................. - 0x03, 0xf1, 0xc1, 0x00, 0x00, 0x00, // ------OOOOOO---OOO-----O------.................. - 0x03, 0xe1, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----OOO------------.................. - 0x07, 0xc1, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO-----OOO------------.................. - 0x07, 0xc1, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO-----OOO------------.................. - 0x07, 0x81, 0xc0, 0x00, 0x00, 0x00, // -----OOOO------OOO------------.................. - 0x0f, 0x81, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------OOO------------.................. - 0x0f, 0x81, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------OOO------------.................. - 0x0f, 0x81, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------OOO------------.................. - 0x0f, 0x01, 0xc0, 0x00, 0x00, 0x00, // ----OOOO-------OOO------------.................. - 0x0f, 0x01, 0xc0, 0x00, 0x00, 0x00, // ----OOOO-------OOO------------.................. - 0x0f, 0x01, 0xc0, 0x00, 0x00, 0x00, // ----OOOO-------OOO------------.................. - 0x0f, 0x01, 0xc0, 0x00, 0x00, 0x00, // ----OOOO-------OOO------------.................. - 0x0f, 0x81, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------OOO------------.................. - 0x0f, 0x81, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------OOO------------.................. - 0x0f, 0x81, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------OOO------------.................. - 0x07, 0x81, 0xc0, 0x00, 0x00, 0x00, // -----OOOO------OOO------------.................. - 0x07, 0xc1, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO-----OOO------------.................. - 0x07, 0xc1, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO-----OOO------------.................. - 0x03, 0xe1, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----OOO------------.................. - 0x03, 0xf1, 0xc3, 0x00, 0x00, 0x00, // ------OOOOOO---OOO----OO------.................. - 0x01, 0xff, 0xcf, 0x00, 0x00, 0x00, // -------OOOOOOOOOOO--OOOO------.................. - 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOO------.................. - 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOO------.................. - 0x00, 0x1f, 0xfe, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO-------.................. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO----------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 163, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // -----------------OO-----------.................. - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO------.................. - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOO-----.................. - 0x00, 0x1f, 0xff, 0x80, 0x00, 0x00, // -----------OOOOOOOOOOOOOO-----.................. - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO-----.................. - 0x00, 0x3e, 0x01, 0x80, 0x00, 0x00, // ----------OOOOO--------OO-----.................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------------.................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------------.................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----------------.................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO--------.................. - 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO--------.................. - 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO--------.................. - 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO--------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO----.................. - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO----.................. - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO----.................. - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO----.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 164, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0c, 0x00, 0x00, 0xc0, 0x00, 0x00, // ----OO------------------OO----.................. - 0x1e, 0x00, 0x01, 0xe0, 0x00, 0x00, // ---OOOO----------------OOOO---.................. - 0x3e, 0x00, 0x03, 0xf0, 0x00, 0x00, // --OOOOO---------------OOOOOO--.................. - 0x1f, 0x0f, 0xc7, 0xe0, 0x00, 0x00, // ---OOOOO----OOOOOO---OOOOOO---.................. - 0x0f, 0xbf, 0xf7, 0xc0, 0x00, 0x00, // ----OOOOO-OOOOOOOOOO-OOOOO----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO------.................. - 0x01, 0xf0, 0x7e, 0x00, 0x00, 0x00, // -------OOOOO-----OOOOOO-------.................. - 0x03, 0xe0, 0x1e, 0x00, 0x00, 0x00, // ------OOOOO--------OOOO-------.................. - 0x03, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ------OOOO----------OOOO------.................. - 0x03, 0x80, 0x0f, 0x00, 0x00, 0x00, // ------OOO-----------OOOO------.................. - 0x07, 0x80, 0x07, 0x00, 0x00, 0x00, // -----OOOO------------OOO------.................. - 0x07, 0x80, 0x07, 0x80, 0x00, 0x00, // -----OOOO------------OOOO-----.................. - 0x07, 0x80, 0x07, 0x80, 0x00, 0x00, // -----OOOO------------OOOO-----.................. - 0x07, 0x80, 0x07, 0x80, 0x00, 0x00, // -----OOOO------------OOOO-----.................. - 0x07, 0x80, 0x07, 0x80, 0x00, 0x00, // -----OOOO------------OOOO-----.................. - 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, // ------OOO------------OOO------.................. - 0x03, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ------OOOO----------OOOO------.................. - 0x03, 0xe0, 0x1f, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOO------.................. - 0x01, 0xf0, 0x3e, 0x00, 0x00, 0x00, // -------OOOOO------OOOOO-------.................. - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO------.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO-----.................. - 0x1f, 0x9f, 0xe7, 0xc0, 0x00, 0x00, // ---OOOOOO--OOOOOOOO--OOOOO----.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1e, 0x00, 0x01, 0xe0, 0x00, 0x00, // ---OOOO----------------OOOO---.................. - 0x1c, 0x00, 0x00, 0xc0, 0x00, 0x00, // ---OOO------------------OO----.................. - 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, // ----O-------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 165, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x3c, 0x00, 0x01, 0xf0, 0x00, 0x00, // --OOOO-----------------OOOOO--.................. - 0x1e, 0x00, 0x01, 0xe0, 0x00, 0x00, // ---OOOO----------------OOOO---.................. - 0x1e, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOO---------------OOOOO---.................. - 0x0f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ----OOOO--------------OOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x07, 0x80, 0x0f, 0x80, 0x00, 0x00, // -----OOOO-----------OOOOO-----.................. - 0x07, 0xc0, 0x0f, 0x00, 0x00, 0x00, // -----OOOOO----------OOOO------.................. - 0x03, 0xc0, 0x1f, 0x00, 0x00, 0x00, // ------OOOO---------OOOOO------.................. - 0x03, 0xe0, 0x1e, 0x00, 0x00, 0x00, // ------OOOOO--------OOOO-------.................. - 0x01, 0xe0, 0x3e, 0x00, 0x00, 0x00, // -------OOOO-------OOOOO-------.................. - 0x01, 0xf0, 0x3c, 0x00, 0x00, 0x00, // -------OOOOO------OOOO--------.................. - 0x00, 0xf0, 0x7c, 0x00, 0x00, 0x00, // --------OOOO-----OOOOO--------.................. - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO---------.................. - 0x00, 0x78, 0xf8, 0x00, 0x00, 0x00, // ---------OOOO---OOOOO---------.................. - 0x1f, 0xfc, 0xff, 0xe0, 0x00, 0x00, // ---OOOOOOOOOOO--OOOOOOOOOOO---.................. - 0x1f, 0xfc, 0xff, 0xe0, 0x00, 0x00, // ---OOOOOOOOOOO--OOOOOOOOOOO---.................. - 0x1f, 0xff, 0xff, 0xe0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOO---.................. - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // -----------OOOOOOOO-----------.................. - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO------------.................. - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOO------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x1f, 0xff, 0xff, 0xe0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOO---.................. - 0x1f, 0xff, 0xff, 0xe0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOO---.................. - 0x1f, 0xff, 0xff, 0xe0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOO---.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 166, char width: 16 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - - // ASCII: 167, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, // -----------OO----------......................... - 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOO-----......................... - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO----......................... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO----......................... - 0x0f, 0xc1, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-----OOOO----......................... - 0x0f, 0x80, 0x20, 0x00, 0x00, 0x00, // ----OOOOO---------O----......................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------......................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------......................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------......................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------......................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--------------......................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------------......................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-----------......................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO----------......................... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO--------......................... - 0x0f, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----OOOO-OOOOOOO-------......................... - 0x1e, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---OOOO----OOOOOO------......................... - 0x1e, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ---OOOO-----OOOOOOO----......................... - 0x3c, 0x03, 0xf0, 0x00, 0x00, 0x00, // --OOOO--------OOOOOO---......................... - 0x3c, 0x01, 0xf0, 0x00, 0x00, 0x00, // --OOOO---------OOOOO---......................... - 0x3c, 0x00, 0xf8, 0x00, 0x00, 0x00, // --OOOO----------OOOOO--......................... - 0x3c, 0x00, 0x78, 0x00, 0x00, 0x00, // --OOOO-----------OOOO--......................... - 0x3e, 0x00, 0x78, 0x00, 0x00, 0x00, // --OOOOO----------OOOO--......................... - 0x1e, 0x00, 0x38, 0x00, 0x00, 0x00, // ---OOOO-----------OOO--......................... - 0x1f, 0x80, 0x78, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOO--......................... - 0x0f, 0xc0, 0x78, 0x00, 0x00, 0x00, // ----OOOOOO-------OOOO--......................... - 0x07, 0xe0, 0x78, 0x00, 0x00, 0x00, // -----OOOOOO------OOOO--......................... - 0x03, 0xf8, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOO---OOOO---......................... - 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOO----......................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----......................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO------......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOO-----......................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO----......................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOO----......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO---......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO---......................... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO---......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO---......................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO----......................... - 0x0e, 0x03, 0xe0, 0x00, 0x00, 0x00, // ----OOO-------OOOOO----......................... - 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO----......................... - 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOO-----......................... - 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOO------......................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - - // ASCII: 168, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x07, 0xc3, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO----OOOO-----......................... - 0x07, 0xc3, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO----OOOO-----......................... - 0x07, 0xc3, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO----OOOO-----......................... - 0x07, 0xc3, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO----OOOO-----......................... - 0x07, 0xc3, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO----OOOO-----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - - // ASCII: 169, char width: 47 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO----------------------. - 0x00, 0x00, 0x7f, 0xf8, 0x00, 0x00, // -----------------OOOOOOOOOOOO------------------. - 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOO----------------. - 0x00, 0x03, 0xe0, 0x1f, 0x80, 0x00, // --------------OOOOO--------OOOOOO--------------. - 0x00, 0x07, 0x80, 0x03, 0xc0, 0x00, // -------------OOOO-------------OOOO-------------. - 0x00, 0x0f, 0x00, 0x01, 0xe0, 0x00, // ------------OOOO---------------OOOO------------. - 0x00, 0x1c, 0x00, 0x00, 0x70, 0x00, // -----------OOO-------------------OOO-----------. - 0x00, 0x38, 0x00, 0x00, 0x38, 0x00, // ----------OOO---------------------OOO----------. - 0x00, 0x70, 0x0f, 0xf8, 0x38, 0x00, // ---------OOO--------OOOOOOOOO-----OOO----------. - 0x00, 0x70, 0x3f, 0xfc, 0x1c, 0x00, // ---------OOO------OOOOOOOOOOOO-----OOO---------. - 0x00, 0xe0, 0xff, 0xfc, 0x0c, 0x00, // --------OOO-----OOOOOOOOOOOOOO------OO---------. - 0x00, 0xe0, 0xf8, 0x0c, 0x0e, 0x00, // --------OOO-----OOOOO-------OO------OOO--------. - 0x01, 0xc1, 0xe0, 0x00, 0x06, 0x00, // -------OOO-----OOOO------------------OO--------. - 0x01, 0xc3, 0xe0, 0x00, 0x07, 0x00, // -------OOO----OOOOO------------------OOO-------. - 0x01, 0x83, 0xc0, 0x00, 0x07, 0x00, // -------OO-----OOOO-------------------OOO-------. - 0x01, 0x83, 0xc0, 0x00, 0x03, 0x00, // -------OO-----OOOO--------------------OO-------. - 0x01, 0x87, 0x80, 0x00, 0x03, 0x00, // -------OO----OOOO---------------------OO-------. - 0x01, 0x87, 0x80, 0x00, 0x03, 0x00, // -------OO----OOOO---------------------OO-------. - 0x03, 0x87, 0x80, 0x00, 0x03, 0x00, // ------OOO----OOOO---------------------OO-------. - 0x03, 0x87, 0x80, 0x00, 0x03, 0x00, // ------OOO----OOOO---------------------OO-------. - 0x03, 0x87, 0x80, 0x00, 0x03, 0x00, // ------OOO----OOOO---------------------OO-------. - 0x01, 0x87, 0x80, 0x00, 0x03, 0x00, // -------OO----OOOO---------------------OO-------. - 0x01, 0x83, 0x80, 0x00, 0x03, 0x00, // -------OO-----OOO---------------------OO-------. - 0x01, 0x83, 0xc0, 0x00, 0x07, 0x00, // -------OO-----OOOO-------------------OOO-------. - 0x01, 0xc3, 0xc0, 0x00, 0x07, 0x00, // -------OOO----OOOO-------------------OOO-------. - 0x01, 0xc1, 0xe0, 0x00, 0x06, 0x00, // -------OOO-----OOOO------------------OO--------. - 0x00, 0xc1, 0xf0, 0x04, 0x0e, 0x00, // --------OO-----OOOOO---------O------OOO--------. - 0x00, 0xe0, 0xfe, 0x7c, 0x0e, 0x00, // --------OOO-----OOOOOOO--OOOOO------OOO--------. - 0x00, 0x60, 0x7f, 0xfc, 0x1c, 0x00, // ---------OO------OOOOOOOOOOOOO-----OOO---------. - 0x00, 0x70, 0x1f, 0xfc, 0x1c, 0x00, // ---------OOO-------OOOOOOOOOOO-----OOO---------. - 0x00, 0x38, 0x03, 0x80, 0x38, 0x00, // ----------OOO---------OOO---------OOO----------. - 0x00, 0x1c, 0x00, 0x00, 0x70, 0x00, // -----------OOO-------------------OOO-----------. - 0x00, 0x1e, 0x00, 0x00, 0xe0, 0x00, // -----------OOOO-----------------OOO------------. - 0x00, 0x0f, 0x00, 0x03, 0xc0, 0x00, // ------------OOOO--------------OOOO-------------. - 0x00, 0x03, 0xc0, 0x0f, 0x80, 0x00, // --------------OOOO----------OOOOO--------------. - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO---------------. - 0x00, 0x00, 0x7f, 0xfc, 0x00, 0x00, // -----------------OOOOOOOOOOOOO-----------------. - 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // -------------------OOOOOOOO--------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - - // ASCII: 170, char width: 22 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, // ----------OO----------.......................... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO-------.......................... - 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOO-----.......................... - 0x0f, 0x9f, 0x80, 0x00, 0x00, 0x00, // ----OOOOO--OOOOOO-----.......................... - 0x08, 0x03, 0xc0, 0x00, 0x00, 0x00, // ----O---------OOOO----.......................... - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO----.......................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO---.......................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO---.......................... - 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOO---.......................... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO---.......................... - 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO---.......................... - 0x1f, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOOOO-------OOOO---.......................... - 0x1e, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOOO--------OOOO---.......................... - 0x1c, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOO---------OOOO---.......................... - 0x1c, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOO---------OOOO---.......................... - 0x1c, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOO---------OOOO---.......................... - 0x1c, 0x03, 0xe0, 0x00, 0x00, 0x00, // ---OOO--------OOOOO---.......................... - 0x1e, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOO------OOOOOO---.......................... - 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO---.......................... - 0x0f, 0xfd, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOO-OOOO---.......................... - 0x03, 0xf9, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO--OOOO---.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - - // ASCII: 171, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x04, 0x01, 0x00, 0x00, 0x00, // -------------O---------O-----................... - 0x00, 0x0c, 0x03, 0x00, 0x00, 0x00, // ------------OO--------OO-----................... - 0x00, 0x1c, 0x07, 0x00, 0x00, 0x00, // -----------OOO-------OOO-----................... - 0x00, 0x3c, 0x0f, 0x00, 0x00, 0x00, // ----------OOOO------OOOO-----................... - 0x00, 0x7c, 0x1f, 0x00, 0x00, 0x00, // ---------OOOOO-----OOOOO-----................... - 0x00, 0xf8, 0x3e, 0x00, 0x00, 0x00, // --------OOOOO-----OOOOO------................... - 0x01, 0xf0, 0x7c, 0x00, 0x00, 0x00, // -------OOOOO-----OOOOO-------................... - 0x03, 0xe0, 0xf8, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOO--------................... - 0x07, 0xc1, 0xf0, 0x00, 0x00, 0x00, // -----OOOOO-----OOOOO---------................... - 0x0f, 0x83, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO-----OOOOO----------................... - 0x0f, 0x03, 0xc0, 0x00, 0x00, 0x00, // ----OOOO------OOOO-----------................... - 0x0f, 0x03, 0xc0, 0x00, 0x00, 0x00, // ----OOOO------OOOO-----------................... - 0x0f, 0x83, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO-----OOOOO----------................... - 0x07, 0xc1, 0xf0, 0x00, 0x00, 0x00, // -----OOOOO-----OOOOO---------................... - 0x03, 0xe0, 0xf8, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOO--------................... - 0x01, 0xf0, 0x7c, 0x00, 0x00, 0x00, // -------OOOOO-----OOOOO-------................... - 0x00, 0xf8, 0x3e, 0x00, 0x00, 0x00, // --------OOOOO-----OOOOO------................... - 0x00, 0x7c, 0x1f, 0x00, 0x00, 0x00, // ---------OOOOO-----OOOOO-----................... - 0x00, 0x3c, 0x0f, 0x00, 0x00, 0x00, // ----------OOOO------OOOO-----................... - 0x00, 0x1c, 0x07, 0x00, 0x00, 0x00, // -----------OOO-------OOO-----................... - 0x00, 0x0c, 0x03, 0x00, 0x00, 0x00, // ------------OO--------OO-----................... - 0x00, 0x04, 0x01, 0x00, 0x00, 0x00, // -------------O---------O-----................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 172, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 173, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOO--............................... - 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOO--............................... - 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOO--............................... - 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOO--............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - - // ASCII: 174, char width: 47 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO----------------------. - 0x00, 0x00, 0x7f, 0xf8, 0x00, 0x00, // -----------------OOOOOOOOOOOO------------------. - 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOO----------------. - 0x00, 0x03, 0xe0, 0x1f, 0x80, 0x00, // --------------OOOOO--------OOOOOO--------------. - 0x00, 0x07, 0x80, 0x03, 0xc0, 0x00, // -------------OOOO-------------OOOO-------------. - 0x00, 0x0f, 0x00, 0x01, 0xe0, 0x00, // ------------OOOO---------------OOOO------------. - 0x00, 0x1c, 0x00, 0x00, 0x70, 0x00, // -----------OOO-------------------OOO-----------. - 0x00, 0x38, 0x00, 0x00, 0x38, 0x00, // ----------OOO---------------------OOO----------. - 0x00, 0x70, 0xff, 0xc0, 0x38, 0x00, // ---------OOO----OOOOOOOOOO--------OOO----------. - 0x00, 0x70, 0xff, 0xf8, 0x1c, 0x00, // ---------OOO----OOOOOOOOOOOOO------OOO---------. - 0x00, 0xe0, 0xff, 0xfc, 0x0c, 0x00, // --------OOO-----OOOOOOOOOOOOOO------OO---------. - 0x00, 0xe0, 0xf0, 0x3c, 0x0e, 0x00, // --------OOO-----OOOO------OOOO------OOO--------. - 0x01, 0xc0, 0xf0, 0x1e, 0x06, 0x00, // -------OOO------OOOO-------OOOO------OO--------. - 0x01, 0xc0, 0xf0, 0x1e, 0x07, 0x00, // -------OOO------OOOO-------OOOO------OOO-------. - 0x01, 0x80, 0xf0, 0x1e, 0x07, 0x00, // -------OO-------OOOO-------OOOO------OOO-------. - 0x01, 0x80, 0xf0, 0x1e, 0x03, 0x00, // -------OO-------OOOO-------OOOO-------OO-------. - 0x01, 0x80, 0xf0, 0x1e, 0x03, 0x00, // -------OO-------OOOO-------OOOO-------OO-------. - 0x01, 0x80, 0xf0, 0x7c, 0x03, 0x00, // -------OO-------OOOO-----OOOOO--------OO-------. - 0x03, 0x80, 0xff, 0xf8, 0x03, 0x00, // ------OOO-------OOOOOOOOOOOOO---------OO-------. - 0x03, 0x80, 0xff, 0xe0, 0x03, 0x00, // ------OOO-------OOOOOOOOOOO-----------OO-------. - 0x03, 0x80, 0xf3, 0xe0, 0x03, 0x00, // ------OOO-------OOOO--OOOOO-----------OO-------. - 0x01, 0x80, 0xf0, 0xf0, 0x03, 0x00, // -------OO-------OOOO----OOOO----------OO-------. - 0x01, 0x80, 0xf0, 0x78, 0x03, 0x00, // -------OO-------OOOO-----OOOO---------OO-------. - 0x01, 0x80, 0xf0, 0x78, 0x07, 0x00, // -------OO-------OOOO-----OOOO--------OOO-------. - 0x01, 0xc0, 0xf0, 0x3c, 0x07, 0x00, // -------OOO------OOOO------OOOO-------OOO-------. - 0x01, 0xc0, 0xf0, 0x3c, 0x06, 0x00, // -------OOO------OOOO------OOOO-------OO--------. - 0x00, 0xc0, 0xf0, 0x1e, 0x0e, 0x00, // --------OO------OOOO-------OOOO-----OOO--------. - 0x00, 0xe0, 0xf0, 0x0f, 0x0e, 0x00, // --------OOO-----OOOO--------OOOO----OOO--------. - 0x00, 0x60, 0xf0, 0x0f, 0x1c, 0x00, // ---------OO-----OOOO--------OOOO---OOO---------. - 0x00, 0x70, 0x00, 0x00, 0x1c, 0x00, // ---------OOO-----------------------OOO---------. - 0x00, 0x38, 0x00, 0x00, 0x38, 0x00, // ----------OOO---------------------OOO----------. - 0x00, 0x1c, 0x00, 0x00, 0x70, 0x00, // -----------OOO-------------------OOO-----------. - 0x00, 0x1e, 0x00, 0x00, 0xe0, 0x00, // -----------OOOO-----------------OOO------------. - 0x00, 0x0f, 0x00, 0x03, 0xc0, 0x00, // ------------OOOO--------------OOOO-------------. - 0x00, 0x03, 0xc0, 0x0f, 0x80, 0x00, // --------------OOOO----------OOOOO--------------. - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO---------------. - 0x00, 0x00, 0x7f, 0xfc, 0x00, 0x00, // -----------------OOOOOOOOOOOOO-----------------. - 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // -------------------OOOOOOOO--------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - - // ASCII: 175, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO----......................... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO----......................... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO----......................... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - - // ASCII: 176, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, // -----------OO----------......................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO--------......................... - 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOO------......................... - 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO------......................... - 0x07, 0x83, 0xc0, 0x00, 0x00, 0x00, // -----OOOO-----OOOO-----......................... - 0x07, 0x01, 0xc0, 0x00, 0x00, 0x00, // -----OOO-------OOO-----......................... - 0x07, 0x00, 0xe0, 0x00, 0x00, 0x00, // -----OOO--------OOO----......................... - 0x06, 0x00, 0xe0, 0x00, 0x00, 0x00, // -----OO---------OOO----......................... - 0x0e, 0x00, 0xe0, 0x00, 0x00, 0x00, // ----OOO---------OOO----......................... - 0x06, 0x00, 0xe0, 0x00, 0x00, 0x00, // -----OO---------OOO----......................... - 0x07, 0x00, 0xe0, 0x00, 0x00, 0x00, // -----OOO--------OOO----......................... - 0x07, 0x01, 0xc0, 0x00, 0x00, 0x00, // -----OOO-------OOO-----......................... - 0x07, 0x83, 0xc0, 0x00, 0x00, 0x00, // -----OOOO-----OOOO-----......................... - 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO------......................... - 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOO------......................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO--------......................... - 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, // -----------O-----------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - - // ASCII: 177, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 178, char width: 19 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, // --------O----------............................. - 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOO------............................. - 0x3f, 0xfc, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOO-----............................. - 0x3c, 0x3e, 0x00, 0x00, 0x00, 0x00, // --OOOO----OOOOO----............................. - 0x20, 0x1e, 0x00, 0x00, 0x00, 0x00, // --O--------OOOO----............................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---............................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---............................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---............................. - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO----............................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO-----............................. - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO------............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO---------............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO------------............................. - 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOO---............................. - 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOO---............................. - 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOO---............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - - // ASCII: 179, char width: 19 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, // --------O----------............................. - 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOO------............................. - 0x1f, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOO----............................. - 0x1c, 0x3e, 0x00, 0x00, 0x00, 0x00, // ---OOO----OOOOO----............................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---............................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---............................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---............................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---............................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----............................. - 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO-----............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------............................. - 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO-----............................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----............................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---............................. - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO---............................. - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO---............................. - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO---............................. - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO---............................. - 0x20, 0x0f, 0x00, 0x00, 0x00, 0x00, // --O---------OOOO---............................. - 0x3c, 0x7e, 0x00, 0x00, 0x00, 0x00, // --OOOO---OOOOOO----............................. - 0x3f, 0xfc, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOO-----............................. - 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOO------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - - // ASCII: 180, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO----......................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOO----......................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO-----......................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------......................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------......................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------......................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------......................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------......................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----------......................... - 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, // ---------OOO-----------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - - // ASCII: 181, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0xc0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOO----------OOOOO-----.................. - 0x0f, 0xc0, 0x3f, 0xc0, 0x00, 0x00, // ----OOOOOO--------OOOOOOOO----.................. - 0x0f, 0xf8, 0xff, 0xf8, 0x00, 0x00, // ----OOOOOOOOO---OOOOOOOOOOOOO-.................. - 0x0f, 0x7f, 0xfb, 0xf8, 0x00, 0x00, // ----OOOO-OOOOOOOOOOOO-OOOOOOO-.................. - 0x0f, 0x7f, 0xf3, 0xf8, 0x00, 0x00, // ----OOOO-OOOOOOOOOOO--OOOOOOO-.................. - 0x0f, 0x3f, 0xe3, 0xf8, 0x00, 0x00, // ----OOOO--OOOOOOOOO---OOOOOOO-.................. - 0x0f, 0x07, 0x80, 0xe0, 0x00, 0x00, // ----OOOO-----OOOO-------OOO---.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 182, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x1f, 0xff, 0x80, 0x00, 0x00, // -----------OOOOOOOOOOOOOO-----.................. - 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOO-----.................. - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO-----.................. - 0x03, 0xff, 0x87, 0x80, 0x00, 0x00, // ------OOOOOOOOOOO----OOOO-----.................. - 0x07, 0xff, 0x87, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOO----OOOO-----.................. - 0x07, 0xff, 0x87, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x07, 0xff, 0x87, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOO----OOOO-----.................. - 0x03, 0xff, 0x87, 0x80, 0x00, 0x00, // ------OOOOOOOOOOO----OOOO-----.................. - 0x03, 0xff, 0x87, 0x80, 0x00, 0x00, // ------OOOOOOOOOOO----OOOO-----.................. - 0x00, 0xff, 0x87, 0x80, 0x00, 0x00, // --------OOOOOOOOO----OOOO-----.................. - 0x00, 0x7f, 0x87, 0x80, 0x00, 0x00, // ---------OOOOOOOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 183, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // ASCII: 184, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -----------OOO---------......................... - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO--------......................... - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO--------......................... - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO-------......................... - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO-------......................... - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO-------......................... - 0x01, 0x0f, 0x00, 0x00, 0x00, 0x00, // -------O----OOOO-------......................... - 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO-------......................... - 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO--------......................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - - // ASCII: 185, char width: 19 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------............................. - 0x1f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOO-------............................. - 0x1f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOO-------............................. - 0x10, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---O----OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOO---............................. - 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOO---............................. - 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOO---............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - - // ASCII: 186, char width: 22 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, // ----------OO----------.......................... - 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO-------.......................... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO-----.......................... - 0x0f, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO--OOOOOO----.......................... - 0x0f, 0x03, 0xc0, 0x00, 0x00, 0x00, // ----OOOO------OOOO----.......................... - 0x1e, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOOO--------OOOO---.......................... - 0x1e, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOOO--------OOOO---.......................... - 0x1c, 0x00, 0xe0, 0x00, 0x00, 0x00, // ---OOO----------OOO---.......................... - 0x3c, 0x00, 0xf0, 0x00, 0x00, 0x00, // --OOOO----------OOOO--.......................... - 0x3c, 0x00, 0xf0, 0x00, 0x00, 0x00, // --OOOO----------OOOO--.......................... - 0x3c, 0x00, 0xf0, 0x00, 0x00, 0x00, // --OOOO----------OOOO--.......................... - 0x3c, 0x00, 0xf0, 0x00, 0x00, 0x00, // --OOOO----------OOOO--.......................... - 0x3c, 0x00, 0xf0, 0x00, 0x00, 0x00, // --OOOO----------OOOO--.......................... - 0x3c, 0x00, 0xf0, 0x00, 0x00, 0x00, // --OOOO----------OOOO--.......................... - 0x1c, 0x00, 0xe0, 0x00, 0x00, 0x00, // ---OOO----------OOO---.......................... - 0x1e, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOOO--------OOOO---.......................... - 0x1e, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOOO--------OOOO---.......................... - 0x0f, 0x03, 0xc0, 0x00, 0x00, 0x00, // ----OOOO------OOOO----.......................... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO-----.......................... - 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOO------.......................... - 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO-------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - - // ASCII: 187, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, // ----O---------O--------------................... - 0x0c, 0x03, 0x00, 0x00, 0x00, 0x00, // ----OO--------OO-------------................... - 0x0e, 0x03, 0x80, 0x00, 0x00, 0x00, // ----OOO-------OOO------------................... - 0x0f, 0x03, 0xc0, 0x00, 0x00, 0x00, // ----OOOO------OOOO-----------................... - 0x0f, 0x83, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO-----OOOOO----------................... - 0x07, 0xc1, 0xf0, 0x00, 0x00, 0x00, // -----OOOOO-----OOOOO---------................... - 0x03, 0xe0, 0xf8, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOO--------................... - 0x01, 0xf0, 0x7c, 0x00, 0x00, 0x00, // -------OOOOO-----OOOOO-------................... - 0x00, 0xf8, 0x3e, 0x00, 0x00, 0x00, // --------OOOOO-----OOOOO------................... - 0x00, 0x7c, 0x1f, 0x00, 0x00, 0x00, // ---------OOOOO-----OOOOO-----................... - 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, // ----------OOOOO-----OOOOO----................... - 0x00, 0x1e, 0x07, 0x80, 0x00, 0x00, // -----------OOOO------OOOO----................... - 0x00, 0x1e, 0x0f, 0x80, 0x00, 0x00, // -----------OOOO-----OOOOO----................... - 0x00, 0x3c, 0x1f, 0x00, 0x00, 0x00, // ----------OOOO-----OOOOO-----................... - 0x00, 0x78, 0x3e, 0x00, 0x00, 0x00, // ---------OOOO-----OOOOO------................... - 0x00, 0xf0, 0x7c, 0x00, 0x00, 0x00, // --------OOOO-----OOOOO-------................... - 0x03, 0xe0, 0xf8, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOO--------................... - 0x07, 0xc1, 0xf0, 0x00, 0x00, 0x00, // -----OOOOO-----OOOOO---------................... - 0x0f, 0x83, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO-----OOOOO----------................... - 0x0f, 0x03, 0xc0, 0x00, 0x00, 0x00, // ----OOOO------OOOO-----------................... - 0x0e, 0x03, 0x80, 0x00, 0x00, 0x00, // ----OOO-------OOO------------................... - 0x0c, 0x03, 0x00, 0x00, 0x00, 0x00, // ----OO--------OO-------------................... - 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, // ----O---------O--------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 188, char width: 45 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, // --------------------------------OOO----------... - 0x07, 0xf0, 0x00, 0x01, 0xe0, 0x00, // -----OOOOOOO-------------------OOOO----------... - 0x1f, 0xf0, 0x00, 0x01, 0xc0, 0x00, // ---OOOOOOOOO-------------------OOO-----------... - 0x1f, 0xf0, 0x00, 0x03, 0xc0, 0x00, // ---OOOOOOOOO------------------OOOO-----------... - 0x10, 0xf0, 0x00, 0x03, 0x80, 0x00, // ---O----OOOO------------------OOO------------... - 0x00, 0xf0, 0x00, 0x07, 0x80, 0x00, // --------OOOO-----------------OOOO------------... - 0x00, 0xf0, 0x00, 0x0f, 0x00, 0x00, // --------OOOO----------------OOOO-------------... - 0x00, 0xf0, 0x00, 0x0f, 0x00, 0x00, // --------OOOO----------------OOOO-------------... - 0x00, 0xf0, 0x00, 0x1e, 0x00, 0x00, // --------OOOO---------------OOOO--------------... - 0x00, 0xf0, 0x00, 0x1e, 0x00, 0x00, // --------OOOO---------------OOOO--------------... - 0x00, 0xf0, 0x00, 0x3c, 0x00, 0x00, // --------OOOO--------------OOOO---------------... - 0x00, 0xf0, 0x00, 0x38, 0x00, 0x00, // --------OOOO--------------OOO----------------... - 0x00, 0xf0, 0x00, 0x78, 0x00, 0x00, // --------OOOO-------------OOOO----------------... - 0x00, 0xf0, 0x00, 0x70, 0x00, 0x00, // --------OOOO-------------OOO-----------------... - 0x00, 0xf0, 0x00, 0xf0, 0x00, 0x00, // --------OOOO------------OOOO-----------------... - 0x00, 0xf0, 0x00, 0xe0, 0x00, 0x00, // --------OOOO------------OOO------------------... - 0x00, 0xf0, 0x01, 0xe0, 0x00, 0x00, // --------OOOO-----------OOOO------------------... - 0x00, 0xf0, 0x03, 0xc0, 0x00, 0x00, // --------OOOO----------OOOO-------------------... - 0x00, 0xf0, 0x03, 0xc0, 0x07, 0x80, // --------OOOO----------OOOO-----------OOOO----... - 0x0f, 0xff, 0x07, 0x80, 0x0f, 0x80, // ----OOOOOOOOOOOO-----OOOO-----------OOOOO----... - 0x0f, 0xff, 0x07, 0x80, 0x0f, 0x80, // ----OOOOOOOOOOOO-----OOOO-----------OOOOO----... - 0x0f, 0xff, 0x0f, 0x00, 0x1f, 0x80, // ----OOOOOOOOOOOO----OOOO-----------OOOOOO----... - 0x00, 0x00, 0x0e, 0x00, 0x3b, 0x80, // --------------------OOO-----------OOO-OOO----... - 0x00, 0x00, 0x1e, 0x00, 0x33, 0x80, // -------------------OOOO-----------OO--OOO----... - 0x00, 0x00, 0x1c, 0x00, 0x73, 0x80, // -------------------OOO-----------OOO--OOO----... - 0x00, 0x00, 0x3c, 0x00, 0xe3, 0x80, // ------------------OOOO----------OOO---OOO----... - 0x00, 0x00, 0x38, 0x00, 0xc3, 0x80, // ------------------OOO-----------OO----OOO----... - 0x00, 0x00, 0x78, 0x01, 0xc3, 0x80, // -----------------OOOO----------OOO----OOO----... - 0x00, 0x00, 0x70, 0x03, 0x83, 0x80, // -----------------OOO----------OOO-----OOO----... - 0x00, 0x00, 0xf0, 0x03, 0x03, 0x80, // ----------------OOOO----------OO------OOO----... - 0x00, 0x01, 0xe0, 0x07, 0x03, 0x80, // ---------------OOOO----------OOO------OOO----... - 0x00, 0x01, 0xe0, 0x0e, 0x03, 0x80, // ---------------OOOO---------OOO-------OOO----... - 0x00, 0x03, 0xc0, 0x0f, 0xff, 0xf0, // --------------OOOO----------OOOOOOOOOOOOOOOO-... - 0x00, 0x03, 0xc0, 0x0f, 0xff, 0xf0, // --------------OOOO----------OOOOOOOOOOOOOOOO-... - 0x00, 0x07, 0x80, 0x00, 0x03, 0x80, // -------------OOOO---------------------OOO----... - 0x00, 0x07, 0x00, 0x00, 0x03, 0x80, // -------------OOO----------------------OOO----... - 0x00, 0x0f, 0x00, 0x00, 0x03, 0x80, // ------------OOOO----------------------OOO----... - 0x00, 0x0e, 0x00, 0x00, 0x03, 0x80, // ------------OOO-----------------------OOO----... - 0x00, 0x1e, 0x00, 0x00, 0x03, 0x80, // -----------OOOO-----------------------OOO----... - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -----------OOO-------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - - // ASCII: 189, char width: 45 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, // --------------------------------OOO----------... - 0x07, 0xf0, 0x00, 0x01, 0xe0, 0x00, // -----OOOOOOO-------------------OOOO----------... - 0x1f, 0xf0, 0x00, 0x01, 0xc0, 0x00, // ---OOOOOOOOO-------------------OOO-----------... - 0x1f, 0xf0, 0x00, 0x03, 0xc0, 0x00, // ---OOOOOOOOO------------------OOOO-----------... - 0x10, 0xf0, 0x00, 0x03, 0x80, 0x00, // ---O----OOOO------------------OOO------------... - 0x00, 0xf0, 0x00, 0x07, 0x80, 0x00, // --------OOOO-----------------OOOO------------... - 0x00, 0xf0, 0x00, 0x0f, 0x00, 0x00, // --------OOOO----------------OOOO-------------... - 0x00, 0xf0, 0x00, 0x0f, 0x00, 0x00, // --------OOOO----------------OOOO-------------... - 0x00, 0xf0, 0x00, 0x1e, 0x00, 0x00, // --------OOOO---------------OOOO--------------... - 0x00, 0xf0, 0x00, 0x1e, 0x00, 0x00, // --------OOOO---------------OOOO--------------... - 0x00, 0xf0, 0x00, 0x3c, 0x00, 0x00, // --------OOOO--------------OOOO---------------... - 0x00, 0xf0, 0x00, 0x38, 0x00, 0x00, // --------OOOO--------------OOO----------------... - 0x00, 0xf0, 0x00, 0x78, 0x00, 0x00, // --------OOOO-------------OOOO----------------... - 0x00, 0xf0, 0x00, 0x70, 0x00, 0x00, // --------OOOO-------------OOO-----------------... - 0x00, 0xf0, 0x00, 0xf0, 0x00, 0x00, // --------OOOO------------OOOO-----------------... - 0x00, 0xf0, 0x00, 0xe0, 0x00, 0x00, // --------OOOO------------OOO------------------... - 0x00, 0xf0, 0x01, 0xe0, 0x00, 0x00, // --------OOOO-----------OOOO------------------... - 0x00, 0xf0, 0x03, 0xc0, 0x10, 0x00, // --------OOOO----------OOOO---------O---------... - 0x00, 0xf0, 0x03, 0xc3, 0xff, 0x00, // --------OOOO----------OOOO----OOOOOOOOOO-----... - 0x0f, 0xff, 0x07, 0x87, 0xff, 0x80, // ----OOOOOOOOOOOO-----OOOO----OOOOOOOOOOOO----... - 0x0f, 0xff, 0x07, 0x87, 0x87, 0xc0, // ----OOOOOOOOOOOO-----OOOO----OOOO----OOOOO---... - 0x0f, 0xff, 0x0f, 0x04, 0x03, 0xc0, // ----OOOOOOOOOOOO----OOOO-----O--------OOOO---... - 0x00, 0x00, 0x0e, 0x00, 0x01, 0xe0, // --------------------OOO----------------OOOO--... - 0x00, 0x00, 0x1e, 0x00, 0x01, 0xe0, // -------------------OOOO----------------OOOO--... - 0x00, 0x00, 0x1c, 0x00, 0x01, 0xe0, // -------------------OOO-----------------OOOO--... - 0x00, 0x00, 0x3c, 0x00, 0x01, 0xc0, // ------------------OOOO-----------------OOO---... - 0x00, 0x00, 0x38, 0x00, 0x03, 0xc0, // ------------------OOO-----------------OOOO---... - 0x00, 0x00, 0x78, 0x00, 0x07, 0x80, // -----------------OOOO----------------OOOO----... - 0x00, 0x00, 0x70, 0x00, 0x07, 0x00, // -----------------OOO-----------------OOO-----... - 0x00, 0x00, 0xf0, 0x00, 0x0f, 0x00, // ----------------OOOO----------------OOOO-----... - 0x00, 0x01, 0xe0, 0x00, 0x1e, 0x00, // ---------------OOOO----------------OOOO------... - 0x00, 0x01, 0xe0, 0x00, 0x3c, 0x00, // ---------------OOOO---------------OOOO-------... - 0x00, 0x03, 0xc0, 0x00, 0x78, 0x00, // --------------OOOO---------------OOOO--------... - 0x00, 0x03, 0xc0, 0x00, 0xf0, 0x00, // --------------OOOO--------------OOOO---------... - 0x00, 0x07, 0x80, 0x01, 0xe0, 0x00, // -------------OOOO--------------OOOO----------... - 0x00, 0x07, 0x00, 0x03, 0xc0, 0x00, // -------------OOO--------------OOOO-----------... - 0x00, 0x0f, 0x00, 0x07, 0xff, 0xe0, // ------------OOOO-------------OOOOOOOOOOOOOO--... - 0x00, 0x0e, 0x00, 0x07, 0xff, 0xe0, // ------------OOO--------------OOOOOOOOOOOOOO--... - 0x00, 0x1e, 0x00, 0x07, 0xff, 0xe0, // -----------OOOO--------------OOOOOOOOOOOOOO--... - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -----------OOO-------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - - // ASCII: 190, char width: 45 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x80, 0x00, 0x00, 0xe0, 0x00, // --------O-----------------------OOO----------... - 0x1f, 0xf8, 0x00, 0x01, 0xe0, 0x00, // ---OOOOOOOOOO------------------OOOO----------... - 0x1f, 0xfe, 0x00, 0x01, 0xc0, 0x00, // ---OOOOOOOOOOOO----------------OOO-----------... - 0x1c, 0x3e, 0x00, 0x03, 0xc0, 0x00, // ---OOO----OOOOO---------------OOOO-----------... - 0x00, 0x0f, 0x00, 0x03, 0x80, 0x00, // ------------OOOO--------------OOO------------... - 0x00, 0x0f, 0x00, 0x07, 0x80, 0x00, // ------------OOOO-------------OOOO------------... - 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x00, // ------------OOOO------------OOOO-------------... - 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x00, // ------------OOOO------------OOOO-------------... - 0x00, 0x1e, 0x00, 0x1e, 0x00, 0x00, // -----------OOOO------------OOOO--------------... - 0x03, 0xfc, 0x00, 0x1e, 0x00, 0x00, // ------OOOOOOOO-------------OOOO--------------... - 0x03, 0xf0, 0x00, 0x3c, 0x00, 0x00, // ------OOOOOO--------------OOOO---------------... - 0x03, 0xfc, 0x00, 0x38, 0x00, 0x00, // ------OOOOOOOO------------OOO----------------... - 0x00, 0x1e, 0x00, 0x78, 0x00, 0x00, // -----------OOOO----------OOOO----------------... - 0x00, 0x0f, 0x00, 0x70, 0x00, 0x00, // ------------OOOO---------OOO-----------------... - 0x00, 0x07, 0x00, 0xf0, 0x00, 0x00, // -------------OOO--------OOOO-----------------... - 0x00, 0x07, 0x00, 0xe0, 0x00, 0x00, // -------------OOO--------OOO------------------... - 0x00, 0x07, 0x01, 0xe0, 0x00, 0x00, // -------------OOO-------OOOO------------------... - 0x00, 0x07, 0x03, 0xc0, 0x00, 0x00, // -------------OOO------OOOO-------------------... - 0x20, 0x0f, 0x03, 0xc0, 0x07, 0x80, // --O---------OOOO------OOOO-----------OOOO----... - 0x3c, 0x7e, 0x07, 0x80, 0x0f, 0x80, // --OOOO---OOOOOO------OOOO-----------OOOOO----... - 0x3f, 0xfc, 0x07, 0x80, 0x0f, 0x80, // --OOOOOOOOOOOO-------OOOO-----------OOOOO----... - 0x1f, 0xf8, 0x0f, 0x00, 0x1f, 0x80, // ---OOOOOOOOOO-------OOOO-----------OOOOOO----... - 0x00, 0x00, 0x0e, 0x00, 0x3b, 0x80, // --------------------OOO-----------OOO-OOO----... - 0x00, 0x00, 0x1e, 0x00, 0x33, 0x80, // -------------------OOOO-----------OO--OOO----... - 0x00, 0x00, 0x1c, 0x00, 0x73, 0x80, // -------------------OOO-----------OOO--OOO----... - 0x00, 0x00, 0x3c, 0x00, 0xe3, 0x80, // ------------------OOOO----------OOO---OOO----... - 0x00, 0x00, 0x38, 0x00, 0xc3, 0x80, // ------------------OOO-----------OO----OOO----... - 0x00, 0x00, 0x78, 0x01, 0xc3, 0x80, // -----------------OOOO----------OOO----OOO----... - 0x00, 0x00, 0x70, 0x03, 0x83, 0x80, // -----------------OOO----------OOO-----OOO----... - 0x00, 0x00, 0xf0, 0x03, 0x03, 0x80, // ----------------OOOO----------OO------OOO----... - 0x00, 0x01, 0xe0, 0x07, 0x03, 0x80, // ---------------OOOO----------OOO------OOO----... - 0x00, 0x01, 0xe0, 0x0e, 0x03, 0x80, // ---------------OOOO---------OOO-------OOO----... - 0x00, 0x03, 0xc0, 0x0f, 0xff, 0xf0, // --------------OOOO----------OOOOOOOOOOOOOOOO-... - 0x00, 0x03, 0xc0, 0x0f, 0xff, 0xf0, // --------------OOOO----------OOOOOOOOOOOOOOOO-... - 0x00, 0x07, 0x80, 0x00, 0x03, 0x80, // -------------OOOO---------------------OOO----... - 0x00, 0x07, 0x00, 0x00, 0x03, 0x80, // -------------OOO----------------------OOO----... - 0x00, 0x0f, 0x00, 0x00, 0x03, 0x80, // ------------OOOO----------------------OOO----... - 0x00, 0x0e, 0x00, 0x00, 0x03, 0x80, // ------------OOO-----------------------OOO----... - 0x00, 0x1e, 0x00, 0x00, 0x03, 0x80, // -----------OOOO-----------------------OOO----... - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -----------OOO-------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - - // ASCII: 191, char width: 25 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................... - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO------------....................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------------....................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------------....................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO---------------....................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------....................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------....................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------------....................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-----------------....................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-----------------....................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-----------------....................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-----------------....................... - 0x0f, 0x80, 0x18, 0x00, 0x00, 0x00, // ----OOOOO----------OO----....................... - 0x0f, 0xc0, 0x38, 0x00, 0x00, 0x00, // ----OOOOOO--------OOO----....................... - 0x0f, 0xfb, 0xf8, 0x00, 0x00, 0x00, // ----OOOOOOOOO-OOOOOOO----....................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO----....................... - 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOO----....................... - 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOO------....................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - - // ASCII: 192, char width: 32 - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-----------------................ - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO----------------................ - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO---------------................ - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO---------------................ - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO--------------................ - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO-------------................ - 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, // ----------------OOO-------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1e, 0x78, 0x00, 0x00, 0x00, // -----------OOOO--OOOO-----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO---------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, // --------OOOO--------OOOO--------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO-------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ------OOOO------------OOOO------................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0x00, 0x00, 0xf0, 0x00, 0x00, // ----OOOO----------------OOOO----................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1e, 0x00, 0x00, 0x78, 0x00, 0x00, // ---OOOO------------------OOOO---................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, // --OOOO--------------------OOOO--................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, // -OOOO----------------------OOOO-................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 193, char width: 32 - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO----------................ - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, // -----------------OOOO-----------................ - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO------------................ - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO-------------................ - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO-------------................ - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO--------------................ - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO---------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1e, 0x78, 0x00, 0x00, 0x00, // -----------OOOO--OOOO-----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO---------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, // --------OOOO--------OOOO--------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO-------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ------OOOO------------OOOO------................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0x00, 0x00, 0xf0, 0x00, 0x00, // ----OOOO----------------OOOO----................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1e, 0x00, 0x00, 0x78, 0x00, 0x00, // ---OOOO------------------OOOO---................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, // --OOOO--------------------OOOO--................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, // -OOOO----------------------OOOO-................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 194, char width: 32 - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOO------------................ - 0x00, 0x0e, 0x78, 0x00, 0x00, 0x00, // ------------OOO--OOOO-----------................ - 0x00, 0x1e, 0x3c, 0x00, 0x00, 0x00, // -----------OOOO---OOOO----------................ - 0x00, 0x3c, 0x1c, 0x00, 0x00, 0x00, // ----------OOOO-----OOO----------................ - 0x00, 0x38, 0x0e, 0x00, 0x00, 0x00, // ----------OOO-------OOO---------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1e, 0x78, 0x00, 0x00, 0x00, // -----------OOOO--OOOO-----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO---------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, // --------OOOO--------OOOO--------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO-------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ------OOOO------------OOOO------................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0x00, 0x00, 0xf0, 0x00, 0x00, // ----OOOO----------------OOOO----................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1e, 0x00, 0x00, 0x78, 0x00, 0x00, // ---OOOO------------------OOOO---................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, // --OOOO--------------------OOOO--................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, // -OOOO----------------------OOOO-................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 195, char width: 32 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x3f, 0x07, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOO--------................ - 0x00, 0x3f, 0xcf, 0x00, 0x00, 0x00, // ----------OOOOOOOO--OOOO--------................ - 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOO---------................ - 0x00, 0x71, 0xfe, 0x00, 0x00, 0x00, // ---------OOO---OOOOOOOO---------................ - 0x00, 0x70, 0x7c, 0x00, 0x00, 0x00, // ---------OOO-----OOOOO----------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1e, 0x78, 0x00, 0x00, 0x00, // -----------OOOO--OOOO-----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO---------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, // --------OOOO--------OOOO--------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO-------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ------OOOO------------OOOO------................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0x00, 0x00, 0xf0, 0x00, 0x00, // ----OOOO----------------OOOO----................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1e, 0x00, 0x00, 0x78, 0x00, 0x00, // ---OOOO------------------OOOO---................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, // --OOOO--------------------OOOO--................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, // -OOOO----------------------OOOO-................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 196, char width: 32 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x3c, 0x3e, 0x00, 0x00, 0x00, // ----------OOOO----OOOOO---------................ - 0x00, 0x3c, 0x3e, 0x00, 0x00, 0x00, // ----------OOOO----OOOOO---------................ - 0x00, 0x3c, 0x3e, 0x00, 0x00, 0x00, // ----------OOOO----OOOOO---------................ - 0x00, 0x3c, 0x3e, 0x00, 0x00, 0x00, // ----------OOOO----OOOOO---------................ - 0x00, 0x3c, 0x3e, 0x00, 0x00, 0x00, // ----------OOOO----OOOOO---------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1e, 0x78, 0x00, 0x00, 0x00, // -----------OOOO--OOOO-----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO---------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, // --------OOOO--------OOOO--------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO-------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ------OOOO------------OOOO------................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0x00, 0x00, 0xf0, 0x00, 0x00, // ----OOOO----------------OOOO----................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1e, 0x00, 0x00, 0x78, 0x00, 0x00, // ---OOOO------------------OOOO---................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, // --OOOO--------------------OOOO--................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, // -OOOO----------------------OOOO-................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 197, char width: 32 - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x38, 0x1c, 0x00, 0x00, 0x00, // ----------OOO------OOO----------................ - 0x00, 0x38, 0x1c, 0x00, 0x00, 0x00, // ----------OOO------OOO----------................ - 0x00, 0x38, 0x1c, 0x00, 0x00, 0x00, // ----------OOO------OOO----------................ - 0x00, 0x38, 0x1c, 0x00, 0x00, 0x00, // ----------OOO------OOO----------................ - 0x00, 0x38, 0x1c, 0x00, 0x00, 0x00, // ----------OOO------OOO----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1e, 0x78, 0x00, 0x00, 0x00, // -----------OOOO--OOOO-----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO---------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, // --------OOOO--------OOOO--------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO-------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ------OOOO------------OOOO------................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0x00, 0x00, 0xf0, 0x00, 0x00, // ----OOOO----------------OOOO----................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1e, 0x00, 0x00, 0x78, 0x00, 0x00, // ---OOOO------------------OOOO---................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, // --OOOO--------------------OOOO--................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, // -OOOO----------------------OOOO-................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 198, char width: 46 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x03, 0xff, 0xff, 0xff, 0xc0, // --------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x00, 0x03, 0xff, 0xff, 0xff, 0xc0, // --------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x00, 0x03, 0xff, 0xff, 0xff, 0xc0, // --------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x00, 0x07, 0xff, 0xff, 0xff, 0xc0, // -------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x00, 0x07, 0xc7, 0x80, 0x00, 0x00, // -------------OOOOO---OOOO---------------------.. - 0x00, 0x0f, 0x87, 0x80, 0x00, 0x00, // ------------OOOOO----OOOO---------------------.. - 0x00, 0x0f, 0x87, 0x80, 0x00, 0x00, // ------------OOOOO----OOOO---------------------.. - 0x00, 0x0f, 0x07, 0x80, 0x00, 0x00, // ------------OOOO-----OOOO---------------------.. - 0x00, 0x1f, 0x07, 0x80, 0x00, 0x00, // -----------OOOOO-----OOOO---------------------.. - 0x00, 0x1f, 0x07, 0x80, 0x00, 0x00, // -----------OOOOO-----OOOO---------------------.. - 0x00, 0x1e, 0x07, 0x80, 0x00, 0x00, // -----------OOOO------OOOO---------------------.. - 0x00, 0x3e, 0x07, 0x80, 0x00, 0x00, // ----------OOOOO------OOOO---------------------.. - 0x00, 0x3c, 0x07, 0x80, 0x00, 0x00, // ----------OOOO-------OOOO---------------------.. - 0x00, 0x7c, 0x07, 0x80, 0x00, 0x00, // ---------OOOOO-------OOOO---------------------.. - 0x00, 0x7c, 0x07, 0x80, 0x00, 0x00, // ---------OOOOO-------OOOO---------------------.. - 0x00, 0x78, 0x07, 0x80, 0x00, 0x00, // ---------OOOO--------OOOO---------------------.. - 0x00, 0xf8, 0x07, 0xff, 0xff, 0x80, // --------OOOOO--------OOOOOOOOOOOOOOOOOOOO-----.. - 0x00, 0xf8, 0x07, 0xff, 0xff, 0x80, // --------OOOOO--------OOOOOOOOOOOOOOOOOOOO-----.. - 0x00, 0xf0, 0x07, 0xff, 0xff, 0x80, // --------OOOO---------OOOOOOOOOOOOOOOOOOOO-----.. - 0x01, 0xf0, 0x07, 0xff, 0xff, 0x80, // -------OOOOO---------OOOOOOOOOOOOOOOOOOOO-----.. - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO---------------------.. - 0x03, 0xe0, 0x07, 0x80, 0x00, 0x00, // ------OOOOO----------OOOO---------------------.. - 0x03, 0xe0, 0x07, 0x80, 0x00, 0x00, // ------OOOOO----------OOOO---------------------.. - 0x03, 0xc0, 0x07, 0x80, 0x00, 0x00, // ------OOOO-----------OOOO---------------------.. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO---------------------.. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO---------------------.. - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO---------------------.. - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO---------------------.. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO---------------------.. - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO---------------------.. - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO---------------------.. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO---------------------.. - 0x3e, 0x00, 0x07, 0x80, 0x00, 0x00, // --OOOOO--------------OOOO---------------------.. - 0x3e, 0x00, 0x07, 0x80, 0x00, 0x00, // --OOOOO--------------OOOO---------------------.. - 0x7c, 0x00, 0x07, 0xff, 0xff, 0xe0, // -OOOOO---------------OOOOOOOOOOOOOOOOOOOOOO---.. - 0x7c, 0x00, 0x07, 0xff, 0xff, 0xe0, // -OOOOO---------------OOOOOOOOOOOOOOOOOOOOOO---.. - 0x78, 0x00, 0x07, 0xff, 0xff, 0xe0, // -OOOO----------------OOOOOOOOOOOOOOOOOOOOOO---.. - 0xf8, 0x00, 0x07, 0xff, 0xff, 0xe0, // OOOOO----------------OOOOOOOOOOOOOOOOOOOOOO---.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - - // ASCII: 199, char width: 33 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, // ------------------OO-------------............... - 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, // -------------OOOOOOOOOOOOO-------............... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO-----............... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO----............... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO---............... - 0x01, 0xfe, 0x00, 0xfc, 0x00, 0x00, // -------OOOOOOOO---------OOOOOO---............... - 0x03, 0xf8, 0x00, 0x3c, 0x00, 0x00, // ------OOOOOOO-------------OOOO---............... - 0x03, 0xf0, 0x00, 0x0c, 0x00, 0x00, // ------OOOOOO----------------OO---............... - 0x07, 0xe0, 0x00, 0x04, 0x00, 0x00, // -----OOOOOO------------------O---............... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO--------------------------............... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO--------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------------------............... - 0x07, 0xe0, 0x00, 0x04, 0x00, 0x00, // -----OOOOOO------------------O---............... - 0x03, 0xe0, 0x00, 0x0c, 0x00, 0x00, // ------OOOOO-----------------OO---............... - 0x03, 0xf8, 0x00, 0x1c, 0x00, 0x00, // ------OOOOOOO--------------OOO---............... - 0x01, 0xfc, 0x00, 0x7c, 0x00, 0x00, // -------OOOOOOO-----------OOOOO---............... - 0x00, 0xff, 0xef, 0xfc, 0x00, 0x00, // --------OOOOOOOOOOO-OOOOOOOOOO---............... - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO---............... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO-----............... - 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, // -------------OOOOOOOOOOOOO-------............... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------............... - 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, // -------------------OOO-----------............... - 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, // -------------------OOO-----------............... - 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, // --------------------OOO----------............... - 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, // --------------------OOO----------............... - 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, // --------------------OOO----------............... - 0x00, 0x02, 0x1e, 0x00, 0x00, 0x00, // --------------O----OOOO----------............... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, // --------------OOOOOOOOO----------............... - 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, // --------------OOOOOOOO-----------............... - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------------OOOOOOO------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - - // ASCII: 200, char width: 30 - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----------------.................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 201, char width: 30 - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO---------.................. - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO----------.................. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO-----------.................. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO------------.................. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 202, char width: 30 - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOO------------.................. - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------------OOOOOOO-----------.................. - 0x00, 0x1c, 0xf0, 0x00, 0x00, 0x00, // -----------OOO--OOOO----------.................. - 0x00, 0x3c, 0x78, 0x00, 0x00, 0x00, // ----------OOOO---OOOO---------.................. - 0x00, 0x78, 0x38, 0x00, 0x00, 0x00, // ---------OOOO-----OOO---------.................. - 0x00, 0x70, 0x1c, 0x00, 0x00, 0x00, // ---------OOO-------OOO--------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 203, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x78, 0x7c, 0x00, 0x00, 0x00, // ---------OOOO----OOOOO--------.................. - 0x00, 0x78, 0x7c, 0x00, 0x00, 0x00, // ---------OOOO----OOOOO--------.................. - 0x00, 0x78, 0x7c, 0x00, 0x00, 0x00, // ---------OOOO----OOOOO--------.................. - 0x00, 0x78, 0x7c, 0x00, 0x00, 0x00, // ---------OOOO----OOOOO--------.................. - 0x00, 0x78, 0x7c, 0x00, 0x00, 0x00, // ---------OOOO----OOOOO--------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 204, char width: 14 - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO--------.................................. - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------.................................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO------.................................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO------.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO----.................................. - 0x01, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOO----.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - - // ASCII: 205, char width: 14 - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-.................................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO--.................................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO---.................................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO----.................................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - - // ASCII: 206, char width: 14 - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO----.................................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----.................................. - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO---.................................. - 0x1c, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOO--OOOO--.................................. - 0x3c, 0x78, 0x00, 0x00, 0x00, 0x00, // --OOOO---OOOO-.................................. - 0x78, 0x38, 0x00, 0x00, 0x00, 0x00, // -OOOO-----OOO-.................................. - 0x70, 0x1c, 0x00, 0x00, 0x00, 0x00, // -OOO-------OOO.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - - // ASCII: 207, char width: 14 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x78, 0x7c, 0x00, 0x00, 0x00, 0x00, // -OOOO----OOOOO.................................. - 0x78, 0x7c, 0x00, 0x00, 0x00, 0x00, // -OOOO----OOOOO.................................. - 0x78, 0x7c, 0x00, 0x00, 0x00, 0x00, // -OOOO----OOOOO.................................. - 0x78, 0x7c, 0x00, 0x00, 0x00, 0x00, // -OOOO----OOOOO.................................. - 0x78, 0x7c, 0x00, 0x00, 0x00, 0x00, // -OOOO----OOOOO.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - - // ASCII: 208, char width: 36 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOO----------------............ - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO------------............ - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----------............ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---------............ - 0x07, 0x80, 0x3f, 0xf8, 0x00, 0x00, // -----OOOO---------OOOOOOOOOOO-------............ - 0x07, 0x80, 0x03, 0xfc, 0x00, 0x00, // -----OOOO-------------OOOOOOOO------............ - 0x07, 0x80, 0x00, 0xfc, 0x00, 0x00, // -----OOOO---------------OOOOOO------............ - 0x07, 0x80, 0x00, 0x7e, 0x00, 0x00, // -----OOOO----------------OOOOOO-----............ - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO-----............ - 0x07, 0x80, 0x00, 0x1f, 0x00, 0x00, // -----OOOO------------------OOOOO----............ - 0x07, 0x80, 0x00, 0x1f, 0x00, 0x00, // -----OOOO------------------OOOOO----............ - 0x07, 0x80, 0x00, 0x1f, 0x80, 0x00, // -----OOOO------------------OOOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x07, 0x80, 0x00, // -----OOOO--------------------OOOO---............ - 0xff, 0xff, 0x80, 0x07, 0x80, 0x00, // OOOOOOOOOOOOOOOOO------------OOOO---............ - 0xff, 0xff, 0x80, 0x07, 0x80, 0x00, // OOOOOOOOOOOOOOOOO------------OOOO---............ - 0xff, 0xff, 0x80, 0x07, 0x80, 0x00, // OOOOOOOOOOOOOOOOO------------OOOO---............ - 0x07, 0x80, 0x00, 0x07, 0x80, 0x00, // -----OOOO--------------------OOOO---............ - 0x07, 0x80, 0x00, 0x07, 0x80, 0x00, // -----OOOO--------------------OOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x1f, 0x00, 0x00, // -----OOOO------------------OOOOO----............ - 0x07, 0x80, 0x00, 0x1f, 0x00, 0x00, // -----OOOO------------------OOOOO----............ - 0x07, 0x80, 0x00, 0x3f, 0x00, 0x00, // -----OOOO-----------------OOOOOO----............ - 0x07, 0x80, 0x00, 0x7e, 0x00, 0x00, // -----OOOO----------------OOOOOO-----............ - 0x07, 0x80, 0x00, 0xfc, 0x00, 0x00, // -----OOOO---------------OOOOOO------............ - 0x07, 0x80, 0x03, 0xfc, 0x00, 0x00, // -----OOOO-------------OOOOOOOO------............ - 0x07, 0x80, 0x1f, 0xf8, 0x00, 0x00, // -----OOOO----------OOOOOOOOOO-------............ - 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOO--------............ - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----------............ - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO------------............ - 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOO----------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - - // ASCII: 209, char width: 35 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x1f, 0x83, 0x80, 0x00, 0x00, // -----------OOOOOO-----OOO----------............. - 0x00, 0x1f, 0xe7, 0x80, 0x00, 0x00, // -----------OOOOOOOO--OOOO----------............. - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO-----------............. - 0x00, 0x38, 0xff, 0x00, 0x00, 0x00, // ----------OOO---OOOOOOOO-----------............. - 0x00, 0x38, 0x3e, 0x00, 0x00, 0x00, // ----------OOO-----OOOOO------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x07, 0xe0, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOO---------------OOOO-----............. - 0x07, 0xe0, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOO---------------OOOO-----............. - 0x07, 0xf0, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOO--------------OOOO-----............. - 0x07, 0xf0, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOO--------------OOOO-----............. - 0x07, 0xf8, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOOO-------------OOOO-----............. - 0x07, 0xf8, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOOO-------------OOOO-----............. - 0x07, 0xfc, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOOOO------------OOOO-----............. - 0x07, 0xbc, 0x00, 0x3c, 0x00, 0x00, // -----OOOO-OOOO------------OOOO-----............. - 0x07, 0xbe, 0x00, 0x3c, 0x00, 0x00, // -----OOOO-OOOOO-----------OOOO-----............. - 0x07, 0x9e, 0x00, 0x3c, 0x00, 0x00, // -----OOOO--OOOO-----------OOOO-----............. - 0x07, 0x9f, 0x00, 0x3c, 0x00, 0x00, // -----OOOO--OOOOO----------OOOO-----............. - 0x07, 0x8f, 0x00, 0x3c, 0x00, 0x00, // -----OOOO---OOOO----------OOOO-----............. - 0x07, 0x8f, 0x80, 0x3c, 0x00, 0x00, // -----OOOO---OOOOO---------OOOO-----............. - 0x07, 0x87, 0x80, 0x3c, 0x00, 0x00, // -----OOOO----OOOO---------OOOO-----............. - 0x07, 0x87, 0xc0, 0x3c, 0x00, 0x00, // -----OOOO----OOOOO--------OOOO-----............. - 0x07, 0x87, 0xc0, 0x3c, 0x00, 0x00, // -----OOOO----OOOOO--------OOOO-----............. - 0x07, 0x83, 0xe0, 0x3c, 0x00, 0x00, // -----OOOO-----OOOOO-------OOOO-----............. - 0x07, 0x83, 0xe0, 0x3c, 0x00, 0x00, // -----OOOO-----OOOOO-------OOOO-----............. - 0x07, 0x81, 0xf0, 0x3c, 0x00, 0x00, // -----OOOO------OOOOO------OOOO-----............. - 0x07, 0x81, 0xf0, 0x3c, 0x00, 0x00, // -----OOOO------OOOOO------OOOO-----............. - 0x07, 0x80, 0xf8, 0x3c, 0x00, 0x00, // -----OOOO-------OOOOO-----OOOO-----............. - 0x07, 0x80, 0xf8, 0x3c, 0x00, 0x00, // -----OOOO-------OOOOO-----OOOO-----............. - 0x07, 0x80, 0x7c, 0x3c, 0x00, 0x00, // -----OOOO--------OOOOO----OOOO-----............. - 0x07, 0x80, 0x7c, 0x3c, 0x00, 0x00, // -----OOOO--------OOOOO----OOOO-----............. - 0x07, 0x80, 0x3c, 0x3c, 0x00, 0x00, // -----OOOO---------OOOO----OOOO-----............. - 0x07, 0x80, 0x3e, 0x3c, 0x00, 0x00, // -----OOOO---------OOOOO---OOOO-----............. - 0x07, 0x80, 0x1e, 0x3c, 0x00, 0x00, // -----OOOO----------OOOO---OOOO-----............. - 0x07, 0x80, 0x1f, 0x3c, 0x00, 0x00, // -----OOOO----------OOOOO--OOOO-----............. - 0x07, 0x80, 0x0f, 0x3c, 0x00, 0x00, // -----OOOO-----------OOOO--OOOO-----............. - 0x07, 0x80, 0x0f, 0xbc, 0x00, 0x00, // -----OOOO-----------OOOOO-OOOO-----............. - 0x07, 0x80, 0x07, 0xbc, 0x00, 0x00, // -----OOOO------------OOOO-OOOO-----............. - 0x07, 0x80, 0x07, 0xfc, 0x00, 0x00, // -----OOOO------------OOOOOOOOO-----............. - 0x07, 0x80, 0x03, 0xfc, 0x00, 0x00, // -----OOOO-------------OOOOOOOO-----............. - 0x07, 0x80, 0x03, 0xfc, 0x00, 0x00, // -----OOOO-------------OOOOOOOO-----............. - 0x07, 0x80, 0x01, 0xfc, 0x00, 0x00, // -----OOOO--------------OOOOOOO-----............. - 0x07, 0x80, 0x01, 0xfc, 0x00, 0x00, // -----OOOO--------------OOOOOOO-----............. - 0x07, 0x80, 0x01, 0xfc, 0x00, 0x00, // -----OOOO--------------OOOOOOO-----............. - 0x07, 0x80, 0x00, 0xfc, 0x00, 0x00, // -----OOOO---------------OOOOOO-----............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - - // ASCII: 210, char width: 37 - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO--------------------........... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-------------------........... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO------------------........... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO------------------........... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO-----------------........... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, // -----------------OOOO----------------........... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, // ------------------OOO----------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // -----------------OO------------------........... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........... - 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOO-----------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0xff, 0xff, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOO--------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x03, 0xf8, 0x00, 0xfc, 0x00, 0x00, // ------OOOOOOO-----------OOOOOO-------........... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x0f, 0x80, 0x00, 0x1f, 0x80, 0x00, // ----OOOOO------------------OOOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0x80, 0x00, // ---OOOOO---------------------OOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x0f, 0x80, 0x00, // ---OOOOO--------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........... - 0x03, 0xe0, 0x00, 0x3e, 0x00, 0x00, // ------OOOOO---------------OOOOO------........... - 0x03, 0xf0, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOO------------OOOOOOO------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x00, 0xff, 0xdf, 0xf8, 0x00, 0x00, // --------OOOOOOOOOO-OOOOOOOOOO--------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------........... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOO------------........... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - - // ASCII: 211, char width: 37 - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO-------------........... - 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, // -------------------OOOO--------------........... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO---------------........... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, // -----------------OOOO----------------........... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, // -----------------OOOO----------------........... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO-----------------........... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // -----------------OO------------------........... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........... - 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOO-----------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0xff, 0xff, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOO--------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x03, 0xf8, 0x00, 0xfc, 0x00, 0x00, // ------OOOOOOO-----------OOOOOO-------........... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x0f, 0x80, 0x00, 0x1f, 0x80, 0x00, // ----OOOOO------------------OOOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0x80, 0x00, // ---OOOOO---------------------OOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x0f, 0x80, 0x00, // ---OOOOO--------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........... - 0x03, 0xe0, 0x00, 0x3e, 0x00, 0x00, // ------OOOOO---------------OOOOO------........... - 0x03, 0xf0, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOO------------OOOOOOO------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x00, 0xff, 0xdf, 0xf8, 0x00, 0x00, // --------OOOOOOOOOO-OOOOOOOOOO--------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------........... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOO------------........... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - - // ASCII: 212, char width: 37 - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ---------------OOOOOO----------------........... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------........... - 0x00, 0x03, 0x9e, 0x00, 0x00, 0x00, // --------------OOO--OOOO--------------........... - 0x00, 0x07, 0x8f, 0x00, 0x00, 0x00, // -------------OOOO---OOOO-------------........... - 0x00, 0x0f, 0x07, 0x00, 0x00, 0x00, // ------------OOOO-----OOO-------------........... - 0x00, 0x0e, 0x03, 0x80, 0x00, 0x00, // ------------OOO-------OOO------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // -----------------OO------------------........... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........... - 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOO-----------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0xff, 0xff, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOO--------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x03, 0xf8, 0x00, 0xfc, 0x00, 0x00, // ------OOOOOOO-----------OOOOOO-------........... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x0f, 0x80, 0x00, 0x1f, 0x80, 0x00, // ----OOOOO------------------OOOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0x80, 0x00, // ---OOOOO---------------------OOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x0f, 0x80, 0x00, // ---OOOOO--------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........... - 0x03, 0xe0, 0x00, 0x3e, 0x00, 0x00, // ------OOOOO---------------OOOOO------........... - 0x03, 0xf0, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOO------------OOOOOOO------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x00, 0xff, 0xdf, 0xf8, 0x00, 0x00, // --------OOOOOOOOOO-OOOOOOOOOO--------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------........... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOO------------........... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - - // ASCII: 213, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x0f, 0xc1, 0xc0, 0x00, 0x00, // ------------OOOOOO-----OOO-----------........... - 0x00, 0x0f, 0xf3, 0xc0, 0x00, 0x00, // ------------OOOOOOOO--OOOO-----------........... - 0x00, 0x1f, 0xff, 0x80, 0x00, 0x00, // -----------OOOOOOOOOOOOOO------------........... - 0x00, 0x1c, 0x7f, 0x80, 0x00, 0x00, // -----------OOO---OOOOOOOO------------........... - 0x00, 0x1c, 0x1f, 0x00, 0x00, 0x00, // -----------OOO-----OOOOO-------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // -----------------OO------------------........... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........... - 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOO-----------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0xff, 0xff, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOO--------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x03, 0xf8, 0x00, 0xfc, 0x00, 0x00, // ------OOOOOOO-----------OOOOOO-------........... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x0f, 0x80, 0x00, 0x1f, 0x80, 0x00, // ----OOOOO------------------OOOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0x80, 0x00, // ---OOOOO---------------------OOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x0f, 0x80, 0x00, // ---OOOOO--------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........... - 0x03, 0xe0, 0x00, 0x3e, 0x00, 0x00, // ------OOOOO---------------OOOOO------........... - 0x03, 0xf0, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOO------------OOOOOOO------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x00, 0xff, 0xdf, 0xf8, 0x00, 0x00, // --------OOOOOOOOOO-OOOOOOOOOO--------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------........... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOO------------........... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - - // ASCII: 214, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x0f, 0x0f, 0x80, 0x00, 0x00, // ------------OOOO----OOOOO------------........... - 0x00, 0x0f, 0x0f, 0x80, 0x00, 0x00, // ------------OOOO----OOOOO------------........... - 0x00, 0x0f, 0x0f, 0x80, 0x00, 0x00, // ------------OOOO----OOOOO------------........... - 0x00, 0x0f, 0x0f, 0x80, 0x00, 0x00, // ------------OOOO----OOOOO------------........... - 0x00, 0x0f, 0x0f, 0x80, 0x00, 0x00, // ------------OOOO----OOOOO------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // -----------------OO------------------........... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........... - 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOO-----------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0xff, 0xff, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOO--------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x03, 0xf8, 0x00, 0xfc, 0x00, 0x00, // ------OOOOOOO-----------OOOOOO-------........... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x0f, 0x80, 0x00, 0x1f, 0x80, 0x00, // ----OOOOO------------------OOOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0x80, 0x00, // ---OOOOO---------------------OOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x0f, 0x80, 0x00, // ---OOOOO--------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........... - 0x03, 0xe0, 0x00, 0x3e, 0x00, 0x00, // ------OOOOO---------------OOOOO------........... - 0x03, 0xf0, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOO------------OOOOOOO------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x00, 0xff, 0xdf, 0xf8, 0x00, 0x00, // --------OOOOOOOOOO-OOOOOOOOOO--------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------........... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOO------------........... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - - // ASCII: 215, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x40, 0x00, 0x02, 0x00, 0x00, // ---------O--------------------O--------......... - 0x00, 0xc0, 0x00, 0x06, 0x00, 0x00, // --------OO-------------------OO--------......... - 0x01, 0xe0, 0x00, 0x0f, 0x00, 0x00, // -------OOOO-----------------OOOO-------......... - 0x01, 0xf0, 0x00, 0x1f, 0x00, 0x00, // -------OOOOO---------------OOOOO-------......... - 0x00, 0xf8, 0x00, 0x3f, 0x00, 0x00, // --------OOOOO-------------OOOOOO-------......... - 0x00, 0x7c, 0x00, 0x7e, 0x00, 0x00, // ---------OOOOO-----------OOOOOO--------......... - 0x00, 0x7e, 0x00, 0xfc, 0x00, 0x00, // ---------OOOOOO---------OOOOOO---------......... - 0x00, 0x3f, 0x01, 0xf8, 0x00, 0x00, // ----------OOOOOO-------OOOOOO----------......... - 0x00, 0x1f, 0x83, 0xf0, 0x00, 0x00, // -----------OOOOOO-----OOOOOO-----------......... - 0x00, 0x0f, 0xc3, 0xe0, 0x00, 0x00, // ------------OOOOOO----OOOOO------------......... - 0x00, 0x07, 0xe7, 0xc0, 0x00, 0x00, // -------------OOOOOO--OOOOO-------------......... - 0x00, 0x03, 0xef, 0x80, 0x00, 0x00, // --------------OOOOO-OOOOO--------------......... - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO---------------......... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------------......... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------------......... - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO---------------......... - 0x00, 0x03, 0xff, 0x80, 0x00, 0x00, // --------------OOOOOOOOOOO--------------......... - 0x00, 0x07, 0xef, 0xc0, 0x00, 0x00, // -------------OOOOOO-OOOOOO-------------......... - 0x00, 0x07, 0xc7, 0xe0, 0x00, 0x00, // -------------OOOOO---OOOOOO------------......... - 0x00, 0x0f, 0x83, 0xf0, 0x00, 0x00, // ------------OOOOO-----OOOOOO-----------......... - 0x00, 0x1f, 0x01, 0xf0, 0x00, 0x00, // -----------OOOOO-------OOOOO-----------......... - 0x00, 0x3e, 0x00, 0xf8, 0x00, 0x00, // ----------OOOOO---------OOOOO----------......... - 0x00, 0x7c, 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO-----------OOOOO---------......... - 0x00, 0xfc, 0x00, 0x3e, 0x00, 0x00, // --------OOOOOO------------OOOOO--------......... - 0x01, 0xf8, 0x00, 0x1f, 0x00, 0x00, // -------OOOOOO--------------OOOOO-------......... - 0x01, 0xf0, 0x00, 0x1f, 0x80, 0x00, // -------OOOOO---------------OOOOOO------......... - 0x01, 0xe0, 0x00, 0x0f, 0x00, 0x00, // -------OOOO-----------------OOOO-------......... - 0x00, 0xc0, 0x00, 0x06, 0x00, 0x00, // --------OO-------------------OO--------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 216, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x70, 0x01, 0x80, 0x00, // -----------------OOO-----------OO----........... - 0x00, 0x07, 0xff, 0x01, 0xc0, 0x00, // -------------OOOOOOOOOOO-------OOO---........... - 0x00, 0x1f, 0xff, 0xc3, 0xc0, 0x00, // -----------OOOOOOOOOOOOOOO----OOOO---........... - 0x00, 0x7f, 0xff, 0xf7, 0x80, 0x00, // ---------OOOOOOOOOOOOOOOOOOO-OOOO----........... - 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOO-----........... - 0x01, 0xfc, 0x01, 0xff, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOOO-----........... - 0x03, 0xf8, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOO------........... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........... - 0x07, 0xe0, 0x00, 0x7f, 0x00, 0x00, // -----OOOOOO--------------OOOOOOO-----........... - 0x07, 0xc0, 0x00, 0xff, 0x00, 0x00, // -----OOOOO--------------OOOOOOOO-----........... - 0x0f, 0x80, 0x00, 0xff, 0x80, 0x00, // ----OOOOO---------------OOOOOOOOO----........... - 0x0f, 0x80, 0x01, 0xef, 0x80, 0x00, // ----OOOOO--------------OOOO-OOOOO----........... - 0x0f, 0x80, 0x03, 0xcf, 0x80, 0x00, // ----OOOOO-------------OOOO--OOOOO----........... - 0x1f, 0x00, 0x07, 0x87, 0x80, 0x00, // ---OOOOO-------------OOOO----OOOO----........... - 0x1f, 0x00, 0x07, 0x87, 0xc0, 0x00, // ---OOOOO-------------OOOO----OOOOO---........... - 0x1f, 0x00, 0x0f, 0x07, 0xc0, 0x00, // ---OOOOO------------OOOO-----OOOOO---........... - 0x1f, 0x00, 0x1e, 0x07, 0xc0, 0x00, // ---OOOOO-----------OOOO------OOOOO---........... - 0x1f, 0x00, 0x3c, 0x07, 0xc0, 0x00, // ---OOOOO----------OOOO-------OOOOO---........... - 0x1f, 0x00, 0x3c, 0x07, 0xc0, 0x00, // ---OOOOO----------OOOO-------OOOOO---........... - 0x1e, 0x00, 0x78, 0x07, 0xc0, 0x00, // ---OOOO----------OOOO--------OOOOO---........... - 0x1e, 0x00, 0xf0, 0x07, 0xc0, 0x00, // ---OOOO---------OOOO---------OOOOO---........... - 0x1f, 0x01, 0xe0, 0x07, 0xc0, 0x00, // ---OOOOO-------OOOO----------OOOOO---........... - 0x1f, 0x01, 0xe0, 0x07, 0xc0, 0x00, // ---OOOOO-------OOOO----------OOOOO---........... - 0x1f, 0x03, 0xc0, 0x07, 0xc0, 0x00, // ---OOOOO------OOOO-----------OOOOO---........... - 0x1f, 0x07, 0x80, 0x07, 0xc0, 0x00, // ---OOOOO-----OOOO------------OOOOO---........... - 0x1f, 0x0f, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO----OOOO-------------OOOOO---........... - 0x1f, 0x1f, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---OOOOO-------------OOOOO---........... - 0x0f, 0x1e, 0x00, 0x0f, 0x80, 0x00, // ----OOOO---OOOO-------------OOOOO----........... - 0x0f, 0xbc, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-OOOO--------------OOOOO----........... - 0x0f, 0xf8, 0x00, 0x0f, 0x80, 0x00, // ----OOOOOOOOO---------------OOOOO----........... - 0x07, 0xf8, 0x00, 0x1f, 0x00, 0x00, // -----OOOOOOOO--------------OOOOO-----........... - 0x07, 0xf0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOOOO--------------OOOOOO-----........... - 0x03, 0xe0, 0x00, 0x3e, 0x00, 0x00, // ------OOOOO---------------OOOOO------........... - 0x03, 0xf0, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOO------------OOOOOOO------........... - 0x07, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -----OOOOOOOOO---------OOOOOOO-------........... - 0x07, 0xff, 0xdf, 0xf8, 0x00, 0x00, // -----OOOOOOOOOOOOO-OOOOOOOOOO--------........... - 0x0f, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ----OOOO-OOOOOOOOOOOOOOOOOOO---------........... - 0x1e, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ---OOOO---OOOOOOOOOOOOOOOOO----------........... - 0x3c, 0x0f, 0xff, 0x80, 0x00, 0x00, // --OOOO------OOOOOOOOOOOOO------------........... - 0x1c, 0x00, 0xf8, 0x00, 0x00, 0x00, // ---OOO----------OOOOO----------------........... - 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, // ----O--------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - - // ASCII: 217, char width: 34 - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO------------------.............. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-----------------.............. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO----------------.............. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO----------------.............. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO---------------.............. - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO--------------.............. - 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, // -----------------OOO--------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0x7c, 0x00, 0x00, // -----OOOOO---------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x03, 0xe0, 0x01, 0xf8, 0x00, 0x00, // ------OOOOO------------OOOOOO-----.............. - 0x03, 0xf0, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO----------OOOOOO------.............. - 0x01, 0xff, 0x3f, 0xe0, 0x00, 0x00, // -------OOOOOOOOO--OOOOOOOOO-------.............. - 0x00, 0xff, 0xff, 0xc0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOO--------.............. - 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOO---------.............. - 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----------.............. - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO--------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - - // ASCII: 218, char width: 34 - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // ------------------OOOOO-----------.............. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO------------.............. - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, // -----------------OOOO-------------.............. - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO--------------.............. - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO--------------.............. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO---------------.............. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO----------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0x7c, 0x00, 0x00, // -----OOOOO---------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x03, 0xe0, 0x01, 0xf8, 0x00, 0x00, // ------OOOOO------------OOOOOO-----.............. - 0x03, 0xf0, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO----------OOOOOO------.............. - 0x01, 0xff, 0x3f, 0xe0, 0x00, 0x00, // -------OOOOOOOOO--OOOOOOOOO-------.............. - 0x00, 0xff, 0xff, 0xc0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOO--------.............. - 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOO---------.............. - 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----------.............. - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO--------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - - // ASCII: 219, char width: 34 - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO--------------.............. - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO--------------.............. - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------------OOOOOOO-------------.............. - 0x00, 0x07, 0x3c, 0x00, 0x00, 0x00, // -------------OOO--OOOO------------.............. - 0x00, 0x0f, 0x1e, 0x00, 0x00, 0x00, // ------------OOOO---OOOO-----------.............. - 0x00, 0x1e, 0x0e, 0x00, 0x00, 0x00, // -----------OOOO-----OOO-----------.............. - 0x00, 0x1c, 0x07, 0x00, 0x00, 0x00, // -----------OOO-------OOO----------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0x7c, 0x00, 0x00, // -----OOOOO---------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x03, 0xe0, 0x01, 0xf8, 0x00, 0x00, // ------OOOOO------------OOOOOO-----.............. - 0x03, 0xf0, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO----------OOOOOO------.............. - 0x01, 0xff, 0x3f, 0xe0, 0x00, 0x00, // -------OOOOOOOOO--OOOOOOOOO-------.............. - 0x00, 0xff, 0xff, 0xc0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOO--------.............. - 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOO---------.............. - 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----------.............. - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO--------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - - // ASCII: 220, char width: 34 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x1e, 0x1f, 0x00, 0x00, 0x00, // -----------OOOO----OOOOO----------.............. - 0x00, 0x1e, 0x1f, 0x00, 0x00, 0x00, // -----------OOOO----OOOOO----------.............. - 0x00, 0x1e, 0x1f, 0x00, 0x00, 0x00, // -----------OOOO----OOOOO----------.............. - 0x00, 0x1e, 0x1f, 0x00, 0x00, 0x00, // -----------OOOO----OOOOO----------.............. - 0x00, 0x1e, 0x1f, 0x00, 0x00, 0x00, // -----------OOOO----OOOOO----------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0x7c, 0x00, 0x00, // -----OOOOO---------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x03, 0xe0, 0x01, 0xf8, 0x00, 0x00, // ------OOOOO------------OOOOOO-----.............. - 0x03, 0xf0, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO----------OOOOOO------.............. - 0x01, 0xff, 0x3f, 0xe0, 0x00, 0x00, // -------OOOOOOOOO--OOOOOOOOO-------.............. - 0x00, 0xff, 0xff, 0xc0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOO--------.............. - 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOO---------.............. - 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----------.............. - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO--------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - - // ASCII: 221, char width: 29 - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO---------................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO----------................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-----------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0xf8, 0x00, 0x01, 0xf0, 0x00, 0x00, // OOOOO------------------OOOOO-................... - 0x7c, 0x00, 0x01, 0xf0, 0x00, 0x00, // -OOOOO-----------------OOOOO-................... - 0x7c, 0x00, 0x03, 0xe0, 0x00, 0x00, // -OOOOO----------------OOOOO--................... - 0x3e, 0x00, 0x03, 0xe0, 0x00, 0x00, // --OOOOO---------------OOOOO--................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x03, 0xe0, 0x3e, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOO------................... - 0x03, 0xe0, 0x7c, 0x00, 0x00, 0x00, // ------OOOOO------OOOOO-------................... - 0x01, 0xf0, 0x7c, 0x00, 0x00, 0x00, // -------OOOOO-----OOOOO-------................... - 0x01, 0xf0, 0xf8, 0x00, 0x00, 0x00, // -------OOOOO----OOOOO--------................... - 0x00, 0xf8, 0xf8, 0x00, 0x00, 0x00, // --------OOOOO---OOOOO--------................... - 0x00, 0x7d, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOO-OOOOO---------................... - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO----------................... - 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO-----------................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO-----------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 222, char width: 28 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOO--------.................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO------.................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----.................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO----.................... - 0x07, 0x80, 0x3f, 0x80, 0x00, 0x00, // -----OOOO---------OOOOOOO---.................... - 0x07, 0x80, 0x0f, 0xc0, 0x00, 0x00, // -----OOOO-----------OOOOOO--.................... - 0x07, 0x80, 0x0f, 0xc0, 0x00, 0x00, // -----OOOO-----------OOOOOO--.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x0f, 0xc0, 0x00, 0x00, // -----OOOO-----------OOOOOO--.................... - 0x07, 0x80, 0x3f, 0x80, 0x00, 0x00, // -----OOOO---------OOOOOOO---.................... - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO---.................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO----.................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----.................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO-------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - - // ASCII: 223, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, // --------------O--------------................... - 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------................... - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO--------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xfd, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOO-OOOOOOOO------................... - 0x07, 0xe0, 0x3e, 0x00, 0x00, 0x00, // -----OOOOOO-------OOOOO------................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x07, 0x80, 0x0f, 0x00, 0x00, 0x00, // -----OOOO-----------OOOO-----................... - 0x0f, 0x80, 0x0f, 0x00, 0x00, 0x00, // ----OOOOO-----------OOOO-----................... - 0x0f, 0x80, 0x0f, 0x00, 0x00, 0x00, // ----OOOOO-----------OOOO-----................... - 0x0f, 0x80, 0x3f, 0x00, 0x00, 0x00, // ----OOOOO---------OOOOOO-----................... - 0x0f, 0x80, 0xff, 0x80, 0x00, 0x00, // ----OOOOO-------OOOOOOOOO----................... - 0x0f, 0x81, 0xfc, 0x00, 0x00, 0x00, // ----OOOOO------OOOOOOO-------................... - 0x0f, 0x83, 0xf0, 0x00, 0x00, 0x00, // ----OOOOO-----OOOOOO---------................... - 0x0f, 0x83, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-----OOOO-----------................... - 0x0f, 0x87, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOOO-----------................... - 0x0f, 0x87, 0x80, 0x00, 0x00, 0x00, // ----OOOOO----OOOO------------................... - 0x0f, 0x87, 0x80, 0x00, 0x00, 0x00, // ----OOOOO----OOOO------------................... - 0x0f, 0x87, 0x80, 0x00, 0x00, 0x00, // ----OOOOO----OOOO------------................... - 0x0f, 0x87, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOOO-----------................... - 0x0f, 0x87, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOOO-----------................... - 0x0f, 0x83, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO-----OOOOO----------................... - 0x0f, 0x83, 0xf8, 0x00, 0x00, 0x00, // ----OOOOO-----OOOOOOO--------................... - 0x0f, 0x81, 0xfc, 0x00, 0x00, 0x00, // ----OOOOO------OOOOOOO-------................... - 0x0f, 0x80, 0xfe, 0x00, 0x00, 0x00, // ----OOOOO-------OOOOOOO------................... - 0x0f, 0x80, 0x7f, 0x80, 0x00, 0x00, // ----OOOOO--------OOOOOOOO----................... - 0x0f, 0x80, 0x1f, 0xc0, 0x00, 0x00, // ----OOOOO----------OOOOOOO---................... - 0x0f, 0x80, 0x0f, 0xc0, 0x00, 0x00, // ----OOOOO-----------OOOOOO---................... - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO--................... - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO--................... - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO--................... - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO--................... - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO--................... - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO--................... - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO--................... - 0x0f, 0x90, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO--O----------OOOOO--................... - 0x0f, 0x9e, 0x0f, 0xc0, 0x00, 0x00, // ----OOOOO--OOOO-----OOOOOO---................... - 0x0f, 0x9f, 0xff, 0xc0, 0x00, 0x00, // ----OOOOO--OOOOOOOOOOOOOOO---................... - 0x0f, 0x9f, 0xff, 0x80, 0x00, 0x00, // ----OOOOO--OOOOOOOOOOOOOO----................... - 0x0f, 0x9f, 0xfe, 0x00, 0x00, 0x00, // ----OOOOO--OOOOOOOOOOOO------................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO---------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 224, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO-------------------................... - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO------------------................... - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-----------------................... - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-----------------................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----------------................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------------................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------------................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO--------................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-------................... - 0x07, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----OOO---------OOOOOO------................... - 0x04, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----O------------OOOOO------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO-----................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-----................... - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO-----................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO-----................... - 0x0f, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOO-----................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO-----................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOO-----------OOOOOO-----................... - 0x1f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOO----------OOOOOO-----................... - 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOOOOO-----................... - 0x0f, 0xc1, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO-----OOOOOOOOO-----................... - 0x0f, 0xff, 0xef, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO-OOOO-----................... - 0x07, 0xff, 0xcf, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO--OOOO-----................... - 0x01, 0xff, 0x8f, 0x00, 0x00, 0x00, // -------OOOOOOOOOO---OOOO-----................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 225, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, // -----------------OOOO--------................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO--------................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO---------................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO----------................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-----------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------------................... - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -----------OOO---------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO--------................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-------................... - 0x07, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----OOO---------OOOOOO------................... - 0x04, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----O------------OOOOO------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO-----................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-----................... - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO-----................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO-----................... - 0x0f, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOO-----................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO-----................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOO-----------OOOOOO-----................... - 0x1f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOO----------OOOOOO-----................... - 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOOOOO-----................... - 0x0f, 0xc1, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO-----OOOOOOOOO-----................... - 0x0f, 0xff, 0xef, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO-OOOO-----................... - 0x07, 0xff, 0xcf, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO--OOOO-----................... - 0x01, 0xff, 0x8f, 0x00, 0x00, 0x00, // -------OOOOOOOOOO---OOOO-----................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 226, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO--------------................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-------------................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO------------................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO------------................... - 0x00, 0x3b, 0xc0, 0x00, 0x00, 0x00, // ----------OOO-OOOO-----------................... - 0x00, 0x79, 0xc0, 0x00, 0x00, 0x00, // ---------OOOO--OOO-----------................... - 0x00, 0xf0, 0xe0, 0x00, 0x00, 0x00, // --------OOOO----OOO----------................... - 0x00, 0xe0, 0xf0, 0x00, 0x00, 0x00, // --------OOO-----OOOO---------................... - 0x01, 0xe0, 0x70, 0x00, 0x00, 0x00, // -------OOOO------OOO---------................... - 0x01, 0xc0, 0x38, 0x00, 0x00, 0x00, // -------OOO--------OOO--------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO--------................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-------................... - 0x07, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----OOO---------OOOOOO------................... - 0x04, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----O------------OOOOO------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO-----................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-----................... - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO-----................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO-----................... - 0x0f, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOO-----................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO-----................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOO-----------OOOOOO-----................... - 0x1f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOO----------OOOOOO-----................... - 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOOOOO-----................... - 0x0f, 0xc1, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO-----OOOOOOOOO-----................... - 0x0f, 0xff, 0xef, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO-OOOO-----................... - 0x07, 0xff, 0xcf, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO--OOOO-----................... - 0x01, 0xff, 0x8f, 0x00, 0x00, 0x00, // -------OOOOOOOOOO---OOOO-----................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 227, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0xf8, 0x38, 0x00, 0x00, 0x00, // --------OOOOO-----OOO--------................... - 0x01, 0xfc, 0x38, 0x00, 0x00, 0x00, // -------OOOOOOO----OOO--------................... - 0x01, 0xfe, 0x38, 0x00, 0x00, 0x00, // -------OOOOOOOO---OOO--------................... - 0x01, 0xcf, 0xf8, 0x00, 0x00, 0x00, // -------OOO--OOOOOOOOO--------................... - 0x03, 0x87, 0xf0, 0x00, 0x00, 0x00, // ------OOO----OOOOOOO---------................... - 0x03, 0x83, 0xf0, 0x00, 0x00, 0x00, // ------OOO-----OOOOOO---------................... - 0x03, 0x80, 0xc0, 0x00, 0x00, 0x00, // ------OOO-------OO-----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO--------................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-------................... - 0x07, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----OOO---------OOOOOO------................... - 0x04, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----O------------OOOOO------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO-----................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-----................... - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO-----................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO-----................... - 0x0f, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOO-----................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO-----................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOO-----------OOOOOO-----................... - 0x1f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOO----------OOOOOO-----................... - 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOOOOO-----................... - 0x0f, 0xc1, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO-----OOOOOOOOO-----................... - 0x0f, 0xff, 0xef, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO-OOOO-----................... - 0x07, 0xff, 0xcf, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO--OOOO-----................... - 0x01, 0xff, 0x8f, 0x00, 0x00, 0x00, // -------OOOOOOOOOO---OOOO-----................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 228, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO---------................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO---------................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO---------................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO---------................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO---------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO--------................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-------................... - 0x07, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----OOO---------OOOOOO------................... - 0x04, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----O------------OOOOO------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO-----................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-----................... - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO-----................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO-----................... - 0x0f, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOO-----................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO-----................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOO-----------OOOOOO-----................... - 0x1f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOO----------OOOOOO-----................... - 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOOOOO-----................... - 0x0f, 0xc1, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO-----OOOOOOOOO-----................... - 0x0f, 0xff, 0xef, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO-OOOO-----................... - 0x07, 0xff, 0xcf, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO--OOOO-----................... - 0x01, 0xff, 0x8f, 0x00, 0x00, 0x00, // -------OOOOOOOOOO---OOOO-----................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 229, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO--------------................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO------------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO----------................... - 0x00, 0xe0, 0xe0, 0x00, 0x00, 0x00, // --------OOO-----OOO----------................... - 0x00, 0xe0, 0x70, 0x00, 0x00, 0x00, // --------OOO------OOO---------................... - 0x01, 0xc0, 0x70, 0x00, 0x00, 0x00, // -------OOO-------OOO---------................... - 0x01, 0xc0, 0x70, 0x00, 0x00, 0x00, // -------OOO-------OOO---------................... - 0x00, 0xc0, 0x70, 0x00, 0x00, 0x00, // --------OO-------OOO---------................... - 0x00, 0xe0, 0x70, 0x00, 0x00, 0x00, // --------OOO------OOO---------................... - 0x00, 0xf0, 0xe0, 0x00, 0x00, 0x00, // --------OOOO----OOO----------................... - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO----------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO--------................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-------................... - 0x07, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----OOO---------OOOOOO------................... - 0x04, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----O------------OOOOO------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO-----................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-----................... - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO-----................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO-----................... - 0x0f, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOO-----................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO-----................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOO-----------OOOOOO-----................... - 0x1f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOO----------OOOOOO-----................... - 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOOOOO-----................... - 0x0f, 0xc1, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO-----OOOOOOOOO-----................... - 0x0f, 0xff, 0xef, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO-OOOO-----................... - 0x07, 0xff, 0xcf, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO--OOOO-----................... - 0x01, 0xff, 0x8f, 0x00, 0x00, 0x00, // -------OOOOOOOOOO---OOOO-----................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 230, char width: 46 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x7f, 0xc0, 0x0f, 0xf0, 0x00, // ---------OOOOOOOOO----------OOOOOOOO----------.. - 0x03, 0xff, 0xf0, 0x3f, 0xfc, 0x00, // ------OOOOOOOOOOOOOO------OOOOOOOOOOOO--------.. - 0x07, 0xff, 0xf8, 0x7f, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOO----OOOOOOOOOOOOOO-------.. - 0x07, 0xff, 0xfc, 0xff, 0xff, 0x00, // -----OOOOOOOOOOOOOOOOO--OOOOOOOOOOOOOOOO------.. - 0x07, 0x00, 0x7f, 0xf8, 0x1f, 0x80, // -----OOO---------OOOOOOOOOOOO------OOOOOO-----.. - 0x04, 0x00, 0x3f, 0xe0, 0x07, 0xc0, // -----O------------OOOOOOOOO----------OOOOO----.. - 0x00, 0x00, 0x1f, 0xc0, 0x03, 0xc0, // -------------------OOOOOOO------------OOOO----.. - 0x00, 0x00, 0x0f, 0xc0, 0x03, 0xe0, // --------------------OOOOOO------------OOOOO---.. - 0x00, 0x00, 0x0f, 0x80, 0x01, 0xe0, // --------------------OOOOO--------------OOOO---.. - 0x00, 0x00, 0x0f, 0x80, 0x01, 0xe0, // --------------------OOOOO--------------OOOO---.. - 0x00, 0x00, 0x0f, 0x80, 0x01, 0xe0, // --------------------OOOOO--------------OOOO---.. - 0x00, 0x3f, 0xff, 0x00, 0x01, 0xe0, // ----------OOOOOOOOOOOOOO---------------OOOO---.. - 0x01, 0xff, 0xff, 0xff, 0xff, 0xe0, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.. - 0x03, 0xff, 0xff, 0xff, 0xff, 0xe0, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xf0, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x0f, 0xc0, 0x0f, 0xff, 0xff, 0xf0, // ----OOOOOO----------OOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO----------------------.. - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO----------------------.. - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO----------------------.. - 0x1e, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOO-------------OOOOO---------------------.. - 0x1e, 0x00, 0x1f, 0x80, 0x00, 0x00, // ---OOOO------------OOOOOO---------------------.. - 0x1e, 0x00, 0x1f, 0x80, 0x00, 0x00, // ---OOOO------------OOOOOO---------------------.. - 0x1e, 0x00, 0x3f, 0xc0, 0x00, 0x00, // ---OOOO-----------OOOOOOOO--------------------.. - 0x1f, 0x00, 0x3f, 0xe0, 0x00, 0x20, // ---OOOOO----------OOOOOOOOO---------------O---.. - 0x1f, 0x80, 0x7b, 0xf0, 0x00, 0xe0, // ---OOOOOO--------OOOO-OOOOOO------------OOO---.. - 0x0f, 0xc1, 0xf9, 0xfe, 0x07, 0xe0, // ----OOOOOO-----OOOOOO--OOOOOOOO------OOOOOO---.. - 0x0f, 0xff, 0xf0, 0xff, 0xff, 0xe0, // ----OOOOOOOOOOOOOOOO----OOOOOOOOOOOOOOOOOOO---.. - 0x07, 0xff, 0xe0, 0x7f, 0xff, 0xe0, // -----OOOOOOOOOOOOOO------OOOOOOOOOOOOOOOOOO---.. - 0x01, 0xff, 0x80, 0x1f, 0xff, 0x00, // -------OOOOOOOOOO----------OOOOOOOOOOOOO------.. - 0x00, 0x3c, 0x00, 0x01, 0xf0, 0x00, // ----------OOOO-----------------OOOOO----------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - - // ASCII: 231, char width: 26 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x1f, 0xf0, 0x00, 0x00, 0x00, // -----------OOOOOOOOO------...................... - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO----...................... - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO---...................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO---...................... - 0x03, 0xf0, 0x0e, 0x00, 0x00, 0x00, // ------OOOOOO--------OOO---...................... - 0x07, 0xc0, 0x02, 0x00, 0x00, 0x00, // -----OOOOO------------O---...................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------...................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO------------------...................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------...................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------...................... - 0x07, 0xe0, 0x06, 0x00, 0x00, 0x00, // -----OOOOOO----------OO---...................... - 0x03, 0xf8, 0x3e, 0x00, 0x00, 0x00, // ------OOOOOOO-----OOOOO---...................... - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO---...................... - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO---...................... - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO----...................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO---------...................... - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO--------...................... - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO--------...................... - 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, // ----------------OOO-------...................... - 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, // ----------------OOO-------...................... - 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, // ----------------OOO-------...................... - 0x00, 0x21, 0xe0, 0x00, 0x00, 0x00, // ----------O----OOOO-------...................... - 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOO-------...................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO--------...................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO---------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - - // ASCII: 232, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO------------------................... - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-----------------................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----------------................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----------------................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------------................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // -----------OOOOOOOO----------................... - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO--------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO-----................... - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO----................... - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO---................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------------................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--------------------................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------------------................... - 0x07, 0xe0, 0x01, 0x80, 0x00, 0x00, // -----OOOOOO------------OO----................... - 0x03, 0xfc, 0x1f, 0x80, 0x00, 0x00, // ------OOOOOOOO-----OOOOOO----................... - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO----................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO----................... - 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO------................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 233, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-------................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-------................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO--------................... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO---------................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO----------................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-----------................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-----------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO--------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // -----------OOOOOOOO----------................... - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO--------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO-----................... - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO----................... - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO---................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------------................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--------------------................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------------------................... - 0x07, 0xe0, 0x01, 0x80, 0x00, 0x00, // -----OOOOOO------------OO----................... - 0x03, 0xfc, 0x1f, 0x80, 0x00, 0x00, // ------OOOOOOOO-----OOOOOO----................... - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO----................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO----................... - 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO------................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 234, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO-------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOO-----------................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO-----------................... - 0x00, 0x1d, 0xe0, 0x00, 0x00, 0x00, // -----------OOO-OOOO----------................... - 0x00, 0x3c, 0xe0, 0x00, 0x00, 0x00, // ----------OOOO--OOO----------................... - 0x00, 0x78, 0x70, 0x00, 0x00, 0x00, // ---------OOOO----OOO---------................... - 0x00, 0x70, 0x78, 0x00, 0x00, 0x00, // ---------OOO-----OOOO--------................... - 0x00, 0xf0, 0x38, 0x00, 0x00, 0x00, // --------OOOO------OOO--------................... - 0x00, 0xe0, 0x1c, 0x00, 0x00, 0x00, // --------OOO--------OOO-------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // -----------OOOOOOOO----------................... - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO--------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO-----................... - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO----................... - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO---................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------------................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--------------------................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------------------................... - 0x07, 0xe0, 0x01, 0x80, 0x00, 0x00, // -----OOOOOO------------OO----................... - 0x03, 0xfc, 0x1f, 0x80, 0x00, 0x00, // ------OOOOOOOO-----OOOOOO----................... - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO----................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO----................... - 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO------................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 235, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // -----------OOOOOOOO----------................... - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO--------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO-----................... - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO----................... - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO---................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------------................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--------------------................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------------------................... - 0x07, 0xe0, 0x01, 0x80, 0x00, 0x00, // -----OOOOOO------------OO----................... - 0x03, 0xfc, 0x1f, 0x80, 0x00, 0x00, // ------OOOOOOOO-----OOOOOO----................... - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO----................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO----................... - 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO------................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 236, char width: 13 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOO----------................................... - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO---------................................... - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO--------................................... - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO--------................................... - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO-------................................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO------................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO----................................... - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO---................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - - // ASCII: 237, char width: 13 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO.................................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO.................................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO................................... - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-................................... - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--................................... - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO---................................... - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO---................................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOO------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - - // ASCII: 238, char width: 13 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOO-----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---................................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO---................................... - 0x1d, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---OOO-OOOO--................................... - 0x3c, 0xe0, 0x00, 0x00, 0x00, 0x00, // --OOOO--OOO--................................... - 0x78, 0x70, 0x00, 0x00, 0x00, 0x00, // -OOOO----OOO-................................... - 0x70, 0x78, 0x00, 0x00, 0x00, 0x00, // -OOO-----OOOO................................... - 0xf0, 0x38, 0x00, 0x00, 0x00, 0x00, // OOOO------OOO................................... - 0xe0, 0x1c, 0x00, 0x00, 0x00, 0x00, // OOO--------OOO.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - - // ASCII: 239, char width: 13 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0xf8, 0x78, 0x00, 0x00, 0x00, 0x00, // OOOOO----OOOO................................... - 0xf8, 0x78, 0x00, 0x00, 0x00, 0x00, // OOOOO----OOOO................................... - 0xf8, 0x78, 0x00, 0x00, 0x00, 0x00, // OOOOO----OOOO................................... - 0xf8, 0x78, 0x00, 0x00, 0x00, 0x00, // OOOOO----OOOO................................... - 0xf8, 0x78, 0x00, 0x00, 0x00, 0x00, // OOOOO----OOOO................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - - // ASCII: 240, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-----------------................... - 0x00, 0xf8, 0x02, 0x00, 0x00, 0x00, // --------OOOOO---------O------................... - 0x00, 0x7c, 0x0e, 0x00, 0x00, 0x00, // ---------OOOOO------OOO------................... - 0x00, 0x3e, 0x7e, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOOO------................... - 0x00, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOO-------................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // -----------OOOOOOOO----------................... - 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOOO------------................... - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO-----------................... - 0x07, 0xe7, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO--OOOOOO----------................... - 0x07, 0x03, 0xe0, 0x00, 0x00, 0x00, // -----OOO------OOOOO----------................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO---------................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO--------................... - 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOO-------................... - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO-------................... - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x07, 0xf0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO------OOOOOO-----................... - 0x07, 0xc0, 0x0f, 0x00, 0x00, 0x00, // -----OOOOO----------OOOO-----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOOO-----................... - 0x03, 0xf0, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOOO------................... - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-------................... - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO--------................... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO---------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 241, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x7c, 0x1c, 0x00, 0x00, 0x00, // ---------OOOOO-----OOO--------.................. - 0x00, 0xfe, 0x1c, 0x00, 0x00, 0x00, // --------OOOOOOO----OOO--------.................. - 0x00, 0xff, 0x1c, 0x00, 0x00, 0x00, // --------OOOOOOOO---OOO--------.................. - 0x00, 0xe7, 0xfc, 0x00, 0x00, 0x00, // --------OOO--OOOOOOOOO--------.................. - 0x01, 0xc3, 0xf8, 0x00, 0x00, 0x00, // -------OOO----OOOOOOO---------.................. - 0x01, 0xc1, 0xf8, 0x00, 0x00, 0x00, // -------OOO-----OOOOOO---------.................. - 0x01, 0xc0, 0x60, 0x00, 0x00, 0x00, // -------OOO-------OO-----------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOO----------.................. - 0x0f, 0x0f, 0xfc, 0x00, 0x00, 0x00, // ----OOOO----OOOOOOOOOO--------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x7f, 0xff, 0x00, 0x00, 0x00, // ----OOOO-OOOOOOOOOOOOOOO------.................. - 0x0f, 0x78, 0x3f, 0x00, 0x00, 0x00, // ----OOOO-OOOO-----OOOOOO------.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xc0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOO----------OOOOO-----.................. - 0x0f, 0xc0, 0x07, 0x80, 0x00, 0x00, // ----OOOOOO-----------OOOO-----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 242, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO------------------................... - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-----------------................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----------------................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----------------................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------------................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO-----------................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO---------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x07, 0xe0, 0x7e, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOO------................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOOO-----................... - 0x07, 0xf0, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO----OOOOOOO------................... - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-------................... - 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO--------................... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO---------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 243, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-------................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-------................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO--------................... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO---------................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO----------................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-----------................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-----------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO--------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO-----------................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO---------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x07, 0xe0, 0x7e, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOO------................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOOO-----................... - 0x07, 0xf0, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO----OOOOOOO------................... - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-------................... - 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO--------................... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO---------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 244, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO-------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOO-----------................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO-----------................... - 0x00, 0x1d, 0xe0, 0x00, 0x00, 0x00, // -----------OOO-OOOO----------................... - 0x00, 0x3c, 0xe0, 0x00, 0x00, 0x00, // ----------OOOO--OOO----------................... - 0x00, 0x78, 0x70, 0x00, 0x00, 0x00, // ---------OOOO----OOO---------................... - 0x00, 0x70, 0x78, 0x00, 0x00, 0x00, // ---------OOO-----OOOO--------................... - 0x00, 0xf0, 0x38, 0x00, 0x00, 0x00, // --------OOOO------OOO--------................... - 0x00, 0xe0, 0x1c, 0x00, 0x00, 0x00, // --------OOO--------OOO-------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO-----------................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO---------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x07, 0xe0, 0x7e, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOO------................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOOO-----................... - 0x07, 0xf0, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO----OOOOOOO------................... - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-------................... - 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO--------................... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO---------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 245, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x7c, 0x1c, 0x00, 0x00, 0x00, // ---------OOOOO-----OOO-------................... - 0x00, 0xfe, 0x1c, 0x00, 0x00, 0x00, // --------OOOOOOO----OOO-------................... - 0x00, 0xff, 0x1c, 0x00, 0x00, 0x00, // --------OOOOOOOO---OOO-------................... - 0x00, 0xe7, 0xfc, 0x00, 0x00, 0x00, // --------OOO--OOOOOOOOO-------................... - 0x01, 0xc3, 0xf8, 0x00, 0x00, 0x00, // -------OOO----OOOOOOO--------................... - 0x01, 0xc1, 0xf8, 0x00, 0x00, 0x00, // -------OOO-----OOOOOO--------................... - 0x01, 0xc0, 0x60, 0x00, 0x00, 0x00, // -------OOO-------OO----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO-----------................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO---------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x07, 0xe0, 0x7e, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOO------................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOOO-----................... - 0x07, 0xf0, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO----OOOOOOO------................... - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-------................... - 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO--------................... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO---------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 246, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO-----------................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO---------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x07, 0xe0, 0x7e, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOO------................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOOO-----................... - 0x07, 0xf0, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO----OOOOOOO------................... - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-------................... - 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO--------................... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO---------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 247, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 248, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, // ------------------------OO---................... - 0x00, 0x3f, 0xc1, 0xe0, 0x00, 0x00, // ----------OOOOOOOO-----OOOO--................... - 0x00, 0xff, 0xf3, 0xc0, 0x00, 0x00, // --------OOOOOOOOOOOO--OOOO---................... - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO----................... - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO----................... - 0x07, 0xe0, 0x7f, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOOO-----................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x0f, 0x80, 0x1f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOOO----................... - 0x0f, 0x80, 0x3f, 0x80, 0x00, 0x00, // ----OOOOO---------OOOOOOO----................... - 0x1f, 0x00, 0x7f, 0x80, 0x00, 0x00, // ---OOOOO---------OOOOOOOO----................... - 0x1f, 0x00, 0xf7, 0x80, 0x00, 0x00, // ---OOOOO--------OOOO-OOOO----................... - 0x1e, 0x00, 0xe7, 0xc0, 0x00, 0x00, // ---OOOO---------OOO--OOOOO---................... - 0x1e, 0x01, 0xe7, 0xc0, 0x00, 0x00, // ---OOOO--------OOOO--OOOOO---................... - 0x1e, 0x03, 0xc7, 0xc0, 0x00, 0x00, // ---OOOO-------OOOO---OOOOO---................... - 0x1e, 0x07, 0x83, 0xc0, 0x00, 0x00, // ---OOOO------OOOO-----OOOO---................... - 0x1e, 0x07, 0x03, 0xc0, 0x00, 0x00, // ---OOOO------OOO------OOOO---................... - 0x1e, 0x0f, 0x03, 0xc0, 0x00, 0x00, // ---OOOO-----OOOO------OOOO---................... - 0x1e, 0x1e, 0x03, 0xc0, 0x00, 0x00, // ---OOOO----OOOO-------OOOO---................... - 0x1e, 0x3c, 0x07, 0xc0, 0x00, 0x00, // ---OOOO---OOOO-------OOOOO---................... - 0x1e, 0x38, 0x07, 0xc0, 0x00, 0x00, // ---OOOO---OOO--------OOOOO---................... - 0x1e, 0x78, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--OOOO--------OOOOO---................... - 0x1f, 0xf0, 0x07, 0x80, 0x00, 0x00, // ---OOOOOOOOO---------OOOO----................... - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO----................... - 0x0f, 0xc0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOO----------OOOOO----................... - 0x0f, 0xc0, 0x1f, 0x00, 0x00, 0x00, // ----OOOOOO---------OOOOO-----................... - 0x07, 0xc0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOOO-----................... - 0x07, 0xf0, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO----OOOOOOO------................... - 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO-------................... - 0x1f, 0xff, 0xf8, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOO--------................... - 0x3c, 0x7f, 0xf0, 0x00, 0x00, 0x00, // --OOOO---OOOOOOOOOOO---------................... - 0x38, 0x0f, 0x80, 0x00, 0x00, 0x00, // --OOO-------OOOOO------------................... - 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OO------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 249, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------------------.................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------------------.................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----------------.................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----------------.................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----------------.................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x07, 0xf0, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOO----OOOOOOOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x01, 0xff, 0xe7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOO--OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 250, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO--------.................. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO---------.................. - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO----------.................. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO-----------.................. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO------------.................. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x07, 0xf0, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOO----OOOOOOOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x01, 0xff, 0xe7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOO--OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 251, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO--------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOO------------.................. - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO------------.................. - 0x00, 0x1d, 0xe0, 0x00, 0x00, 0x00, // -----------OOO-OOOO-----------.................. - 0x00, 0x3c, 0xe0, 0x00, 0x00, 0x00, // ----------OOOO--OOO-----------.................. - 0x00, 0x78, 0x70, 0x00, 0x00, 0x00, // ---------OOOO----OOO----------.................. - 0x00, 0x70, 0x78, 0x00, 0x00, 0x00, // ---------OOO-----OOOO---------.................. - 0x00, 0xf0, 0x38, 0x00, 0x00, 0x00, // --------OOOO------OOO---------.................. - 0x00, 0xe0, 0x1c, 0x00, 0x00, 0x00, // --------OOO--------OOO--------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x07, 0xf0, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOO----OOOOOOOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x01, 0xff, 0xe7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOO--OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 252, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO---------.................. - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO---------.................. - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO---------.................. - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO---------.................. - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO---------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x07, 0xf0, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOO----OOOOOOOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x01, 0xff, 0xe7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOO--OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 253, char width: 28 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, // -----------------OOOO-------.................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO-------.................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO--------.................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO---------.................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO----------.................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-----------.................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-----------.................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO------------.................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------------.................... - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -----------OOO--------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x3c, 0x00, 0x07, 0xc0, 0x00, 0x00, // --OOOO---------------OOOOO--.................... - 0x3e, 0x00, 0x07, 0xc0, 0x00, 0x00, // --OOOOO--------------OOOOO--.................... - 0x3e, 0x00, 0x07, 0x80, 0x00, 0x00, // --OOOOO--------------OOOO---.................... - 0x1e, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOO-------------OOOOO---.................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO---.................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO----.................... - 0x0f, 0x00, 0x1f, 0x00, 0x00, 0x00, // ----OOOO-----------OOOOO----.................... - 0x0f, 0x80, 0x1e, 0x00, 0x00, 0x00, // ----OOOOO----------OOOO-----.................... - 0x07, 0x80, 0x1e, 0x00, 0x00, 0x00, // -----OOOO----------OOOO-----.................... - 0x07, 0x80, 0x3e, 0x00, 0x00, 0x00, // -----OOOO---------OOOOO-----.................... - 0x07, 0xc0, 0x3c, 0x00, 0x00, 0x00, // -----OOOOO--------OOOO------.................... - 0x03, 0xc0, 0x3c, 0x00, 0x00, 0x00, // ------OOOO--------OOOO------.................... - 0x03, 0xe0, 0x7c, 0x00, 0x00, 0x00, // ------OOOOO------OOOOO------.................... - 0x01, 0xe0, 0x78, 0x00, 0x00, 0x00, // -------OOOO------OOOO-------.................... - 0x01, 0xe0, 0xf8, 0x00, 0x00, 0x00, // -------OOOO-----OOOOO-------.................... - 0x01, 0xf0, 0xf8, 0x00, 0x00, 0x00, // -------OOOOO----OOOOO-------.................... - 0x00, 0xf0, 0xf0, 0x00, 0x00, 0x00, // --------OOOO----OOOO--------.................... - 0x00, 0xf1, 0xf0, 0x00, 0x00, 0x00, // --------OOOO---OOOOO--------.................... - 0x00, 0xf9, 0xe0, 0x00, 0x00, 0x00, // --------OOOOO--OOOO---------.................... - 0x00, 0x79, 0xe0, 0x00, 0x00, 0x00, // ---------OOOO--OOOO---------.................... - 0x00, 0x7b, 0xe0, 0x00, 0x00, 0x00, // ---------OOOO-OOOOO---------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO------------.................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO------------.................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------------.................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------------.................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO-------------.................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--------------.................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO--------------.................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO---------------.................... - 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOO---------------.................... - 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOO----------------.................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-----------------.................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - - // ASCII: 254, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x07, 0xf0, 0x00, 0x00, 0x00, // ----OOOO-----OOOOOOO----------.................. - 0x0f, 0x1f, 0xfc, 0x00, 0x00, 0x00, // ----OOOO---OOOOOOOOOOO--------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x7f, 0xff, 0x00, 0x00, 0x00, // ----OOOO-OOOOOOOOOOOOOOO------.................. - 0x0f, 0x78, 0x1f, 0x80, 0x00, 0x00, // ----OOOO-OOOO------OOOOOO-----.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOOO----------OOOOO----.................. - 0x0f, 0xc0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOO-----------OOOOO----.................. - 0x0f, 0x80, 0x03, 0xc0, 0x00, 0x00, // ----OOOOO-------------OOOO----.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x00, 0x01, 0xe0, 0x00, 0x00, // ----OOOO---------------OOOO---.................. - 0x0f, 0x00, 0x01, 0xe0, 0x00, 0x00, // ----OOOO---------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xc0, 0x00, 0x00, // ----OOOOO-------------OOOO----.................. - 0x0f, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ----OOOOOO------------OOOO----.................. - 0x0f, 0xc0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOO-----------OOOOO----.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xf0, 0x1f, 0x80, 0x00, 0x00, // ----OOOOOOOO-------OOOOOO-----.................. - 0x0f, 0x7c, 0x3f, 0x00, 0x00, 0x00, // ----OOOO-OOOOO----OOOOOO------.................. - 0x0f, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOOO------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ----OOOO----OOOOOOOOO---------.................. - 0x0f, 0x01, 0xe0, 0x00, 0x00, 0x00, // ----OOOO-------OOOO-----------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 255, char width: 28 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO--------.................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO--------.................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO--------.................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO--------.................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO--------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x3c, 0x00, 0x07, 0xc0, 0x00, 0x00, // --OOOO---------------OOOOO--.................... - 0x3e, 0x00, 0x07, 0xc0, 0x00, 0x00, // --OOOOO--------------OOOOO--.................... - 0x3e, 0x00, 0x07, 0x80, 0x00, 0x00, // --OOOOO--------------OOOO---.................... - 0x1e, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOO-------------OOOOO---.................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO---.................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO----.................... - 0x0f, 0x00, 0x1f, 0x00, 0x00, 0x00, // ----OOOO-----------OOOOO----.................... - 0x0f, 0x80, 0x1e, 0x00, 0x00, 0x00, // ----OOOOO----------OOOO-----.................... - 0x07, 0x80, 0x1e, 0x00, 0x00, 0x00, // -----OOOO----------OOOO-----.................... - 0x07, 0x80, 0x3e, 0x00, 0x00, 0x00, // -----OOOO---------OOOOO-----.................... - 0x07, 0xc0, 0x3c, 0x00, 0x00, 0x00, // -----OOOOO--------OOOO------.................... - 0x03, 0xc0, 0x3c, 0x00, 0x00, 0x00, // ------OOOO--------OOOO------.................... - 0x03, 0xe0, 0x7c, 0x00, 0x00, 0x00, // ------OOOOO------OOOOO------.................... - 0x01, 0xe0, 0x78, 0x00, 0x00, 0x00, // -------OOOO------OOOO-------.................... - 0x01, 0xe0, 0xf8, 0x00, 0x00, 0x00, // -------OOOO-----OOOOO-------.................... - 0x01, 0xf0, 0xf8, 0x00, 0x00, 0x00, // -------OOOOO----OOOOO-------.................... - 0x00, 0xf0, 0xf0, 0x00, 0x00, 0x00, // --------OOOO----OOOO--------.................... - 0x00, 0xf1, 0xf0, 0x00, 0x00, 0x00, // --------OOOO---OOOOO--------.................... - 0x00, 0xf9, 0xe0, 0x00, 0x00, 0x00, // --------OOOOO--OOOO---------.................... - 0x00, 0x79, 0xe0, 0x00, 0x00, 0x00, // ---------OOOO--OOOO---------.................... - 0x00, 0x7b, 0xe0, 0x00, 0x00, 0x00, // ---------OOOO-OOOOO---------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO------------.................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO------------.................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------------.................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------------.................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO-------------.................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--------------.................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO--------------.................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO---------------.................... - 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOO---------------.................... - 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOO----------------.................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-----------------.................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... -}; - -static const uint8_t dejavu_60_widths[224] = -{ - 15, 19, 22, 39, 30, 44, 36, 13, - 18, 18, 23, 39, 15, 17, 15, 16, - 30, 30, 30, 30, 30, 30, 30, 30, - 30, 30, 16, 16, 39, 39, 39, 25, - 47, 32, 32, 33, 36, 30, 27, 36, - 35, 14, 14, 31, 26, 40, 35, 37, - 28, 37, 33, 30, 29, 34, 32, 46, - 32, 29, 32, 18, 16, 18, 39, 23, - 23, 29, 30, 26, 30, 29, 16, 30, - 30, 13, 13, 27, 13, 46, 30, 29, - 30, 30, 19, 24, 18, 30, 28, 38, - 28, 28, 25, 30, 16, 30, 39, 15, - 15, 15, 15, 15, 15, 15, 15, 15, - 15, 15, 15, 15, 15, 15, 15, 15, - 15, 15, 15, 15, 15, 15, 15, 15, - 15, 15, 15, 15, 15, 15, 15, 15, - 15, 19, 30, 30, 30, 30, 16, 23, - 23, 47, 22, 29, 39, 17, 47, 23, - 23, 39, 19, 19, 23, 30, 30, 15, - 23, 19, 22, 29, 45, 45, 45, 25, - 32, 32, 32, 32, 32, 32, 46, 33, - 30, 30, 30, 30, 14, 14, 14, 14, - 36, 35, 37, 37, 37, 37, 37, 39, - 37, 34, 34, 34, 34, 29, 28, 29, - 29, 29, 29, 29, 29, 29, 46, 26, - 29, 29, 29, 29, 13, 13, 13, 13, - 29, 30, 29, 29, 29, 29, 29, 39, - 29, 30, 30, 30, 30, 28, 30, 28, -}; - -static const font_t dejavu_60_dsc = -{ - 224, // Letter count - 32, // First ascii code - 6, // Letters width (bytes) - 60, // Letters height (row) - 0, // Fixed width or 0 if variable - dejavu_60_widths, - dejavu_60_bitmaps -}; - -const font_t * dejavu_60_get_dsc(void) -{ - return &dejavu_60_dsc; -} - - -#endif \ No newline at end of file diff --git a/lv_misc/fonts/dejavu_60.h b/lv_misc/fonts/dejavu_60.h deleted file mode 100644 index e96a64d21..000000000 --- a/lv_misc/fonts/dejavu_60.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef DEJAVU_60_H -#define DEJAVU_60_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_DEJAVU_60 != 0 - - -#include -#include "../font.h" - - -const font_t * dejavu_60_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/dejavu_8.c b/lv_misc/fonts/dejavu_8.c deleted file mode 100644 index de88669f9..000000000 --- a/lv_misc/fonts/dejavu_8.c +++ /dev/null @@ -1,2332 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_8 != 0 - -#include -#include "../font.h" - -static const uint8_t dejavu_8_bitmaps[1792] = -{ - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 33, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 34, char width: 3 - 0x00, // ---..... - 0xc0, // O-O..... - 0x00, // O-O..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 35, char width: 5 - 0x00, // -----... - 0x28, // --O-O... - 0x78, // -OOOO... - 0x90, // -O-O-... - 0xf0, // OOOO-... - 0xa0, // O-O--... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 36, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0xe0, // OOO-.... - 0xc0, // OO--.... - 0x60, // -OO.... - 0xe0, // OOO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 37, char width: 6 - 0x00, // ------.. - 0xc8, // OO--O-.. - 0xd0, // OO-O--.. - 0x40, // --O--.. - 0x58, // -O-OO.. - 0x98, // O--OO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 38, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x40, // -O---... - 0xa0, // O-O--... - 0xb0, // O-OO-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 39, char width: 2 - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 40, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x40, // -O...... - 0x00, // --...... - - // ASCII: 41, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x80, // O-...... - 0x00, // --...... - - // ASCII: 42, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0xe0, // OOO..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 43, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x20, // --O--... - 0x20, // --O--... - 0xf8, // OOOOO... - 0x40, // --O--... - 0x40, // --O--... - 0x00, // -----... - - // ASCII: 44, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x40, // -O...... - 0x80, // O-...... - 0x00, // --...... - - // ASCII: 45, char width: 2 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0xc0, // OOO..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 46, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 47, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - - // ASCII: 48, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 49, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0xc0, // OO--.... - 0x40, // -O--.... - 0x40, // -O--.... - 0xe0, // OOO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 50, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x20, // --O-.... - 0x20, // --O-.... - 0x40, // -O--.... - 0xe0, // OOO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 51, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0x40, // ----.... - 0x00, // ----.... - - // ASCII: 52, char width: 4 - 0x00, // ----.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xf0, // OOOO.... - 0x20, // --O-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 53, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 54, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x80, // O---.... - 0xe0, // OOO-.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 55, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0x20, // --O-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 56, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 57, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0x70, // -OOO.... - 0x10, // ---O.... - 0x60, // -OO-.... - 0x40, // ----.... - 0x00, // ----.... - - // ASCII: 58, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 59, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - 0x40, // -O...... - 0x80, // O-...... - 0x00, // --...... - - // ASCII: 60, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x18, // ---OO... - 0x60, // -OO--... - 0x20, // --O--... - 0x18, // ---OO... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 61, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x78, // -OOOO... - 0x00, // -----... - 0x78, // -OOOO... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 62, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x60, // -OO--... - 0x18, // ---OO... - 0x30, // --OO-... - 0xc0, // OO---... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 63, char width: 3 - 0x40, // -O-..... - 0xa0, // O-O..... - 0x20, // --O..... - 0x40, // -O-..... - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 64, char width: 6 - 0x00, // ------.. - 0x78, // -OOOO-.. - 0x84, // O----O.. - 0xb4, // O-OO-O.. - 0xd4, // OO-O-O.. - 0xb8, // O-OOO-.. - 0x40, // -O----.. - 0x30, // --OO--.. - - // ASCII: 65, char width: 4 - 0x00, // ----.... - 0x20, // --O-.... - 0x50, // -O-O.... - 0x50, // -O-O.... - 0x70, // -OOO.... - 0x50, // -O-O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 66, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x90, // O--O.... - 0xe0, // OOO-.... - 0x90, // O--O.... - 0xf0, // OOOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 67, char width: 4 - 0x00, // ----.... - 0x70, // -OOO.... - 0x80, // O---.... - 0x80, // O---.... - 0x80, // O---.... - 0x70, // -OOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 68, char width: 5 - 0x00, // -----... - 0xe0, // OOO-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0xe0, // OOO--... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 69, char width: 4 - 0x00, // ----.... - 0xf0, // OOOO.... - 0x80, // O---.... - 0xe0, // OOO-.... - 0x80, // O---.... - 0xf0, // OOOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 70, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x80, // O---.... - 0xe0, // OOO-.... - 0x80, // O---.... - 0x80, // O---.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 71, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x80, // O----... - 0x98, // O--OO... - 0x88, // O---O... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 72, char width: 5 - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0xf0, // OOOO-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 73, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 74, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x80, // O-...... - 0x80, // --...... - 0x00, // --...... - - // ASCII: 75, char width: 4 - 0x00, // ----.... - 0x90, // O--O.... - 0xa0, // O-O-.... - 0xc0, // OO--.... - 0xa0, // O-O-.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 76, char width: 4 - 0x00, // ----.... - 0x80, // O---.... - 0x80, // O---.... - 0x80, // O---.... - 0x80, // O---.... - 0xe0, // OOO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 77, char width: 5 - 0x00, // -----... - 0x88, // O---O... - 0xd8, // OO-OO... - 0xd8, // OO-OO... - 0xa8, // O-O-O... - 0x88, // O---O... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 78, char width: 5 - 0x00, // -----... - 0x90, // O--O-... - 0xd0, // OO-O-... - 0xb0, // O-OO-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 79, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x88, // O---O... - 0x88, // O---O... - 0x88, // O---O... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 80, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x90, // O--O.... - 0xe0, // OOO-.... - 0x80, // O---.... - 0x80, // O---.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 81, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x88, // O---O... - 0x88, // O---O... - 0x98, // O--OO... - 0x70, // -OOO-... - 0x18, // ---OO... - 0x00, // -----... - - // ASCII: 82, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x90, // O--O.... - 0xe0, // OOO-.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 83, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x10, // ---O.... - 0xe0, // OOO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 84, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 85, char width: 5 - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x50, // -OO--... - 0x20, // -----... - 0x00, // -----... - - // ASCII: 86, char width: 4 - 0x00, // ----.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 87, char width: 6 - 0x00, // ------.. - 0x94, // O--O-O.. - 0xb4, // O-OO-O.. - 0xb4, // O-OO-O.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 88, char width: 4 - 0x00, // ----.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x90, // O--O-.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 89, char width: 4 - 0x00, // ----.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 90, char width: 4 - 0x00, // ----.... - 0x70, // -OOO.... - 0x20, // --O-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0xf0, // OOOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 91, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x40, // -O...... - 0x00, // --...... - - // ASCII: 92, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x40, // -O...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 93, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x00, // --...... - - // ASCII: 94, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x50, // -O-O-... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 95, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0xe0, // OOO..... - - // ASCII: 96, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 97, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0xa0, // O-O-.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 98, char width: 4 - 0x00, // ----.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 99, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x60, // -OO..... - 0x80, // O--..... - 0x80, // O--..... - 0x40, // -O-..... - 0x20, // --O..... - 0x00, // ---..... - - // ASCII: 100, char width: 4 - 0x00, // ----.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 101, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0xe0, // OOO-.... - 0x40, // -O--.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 102, char width: 2 - 0x00, // --...... - 0xc0, // OO...... - 0xc0, // OO...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 103, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x60, // -OO-.... - - // ASCII: 104, char width: 4 - 0x00, // ----.... - 0x80, // O---.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 105, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 106, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - - // ASCII: 107, char width: 4 - 0x00, // ----.... - 0x80, // O---.... - 0xa0, // O-O-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0xa0, // O-O-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 108, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 109, char width: 6 - 0x00, // ------.. - 0x00, // ------.. - 0x68, // -OO-O-.. - 0xb4, // O-OO-O.. - 0xa4, // O-O--O.. - 0xa4, // O-O--O.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 110, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 111, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 112, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x00, // ----.... - - // ASCII: 113, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 114, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x60, // -OO..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 115, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x60, // -OO..... - 0x80, // O--..... - 0x60, // -OO..... - 0xa0, // O-O..... - 0x40, // -O-..... - 0x00, // ---..... - - // ASCII: 116, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0xc0, // OO...... - 0x80, // O-...... - 0x80, // O-...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 117, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 118, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x80, // O---.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 119, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0xa8, // O-O-O... - 0xe8, // OOO-O... - 0xf0, // OOOO-... - 0x50, // -O-O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 120, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 121, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x80, // O---.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 122, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0xe0, // OOO..... - 0x40, // -O-..... - 0x40, // -O-..... - 0xe0, // OOO..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 123, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x20, // --O-.... - - // ASCII: 124, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - - // ASCII: 125, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 126, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x68, // -OO-O... - 0x10, // ---O-... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - - // No glyph for ASCII: 127, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 128, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 129, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 130, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 131, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 132, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 133, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 134, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 135, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 136, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 137, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 138, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 139, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 140, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 141, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 142, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 143, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 144, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 145, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 146, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 147, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 148, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 149, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 150, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 151, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 152, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 153, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 154, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 155, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 156, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 157, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 158, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 159, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 160, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 161, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 162, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0xc0, // OO--.... - 0xc0, // OO--.... - 0x40, // -O--.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 163, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0xe0, // OOO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 164, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0xf0, // OOOO.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0xd0, // OO-O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 165, char width: 4 - 0x00, // ----.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 166, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - - // ASCII: 167, char width: 3 - 0x00, // ---..... - 0xe0, // OOO..... - 0x40, // -O-..... - 0xa0, // O-O..... - 0x60, // -OO..... - 0x20, // --O..... - 0x40, // -O-..... - 0x00, // ---..... - - // ASCII: 168, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 169, char width: 6 - 0x00, // ------.. - 0x78, // -OOOO-.. - 0xa8, // O-O-O-.. - 0xc8, // OO--O-.. - 0xa8, // O-O-O-.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 170, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0xe0, // OOO..... - 0x60, // -OO..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 171, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 172, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x78, // -OOOO... - 0x08, // ----O... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 173, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 174, char width: 6 - 0x00, // ------.. - 0x78, // -OOOO-.. - 0xb8, // O-OOO-.. - 0xb8, // O-OOO-.. - 0xa8, // O-O-O-.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 175, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 176, char width: 3 - 0x00, // ---..... - 0xc0, // OO-..... - 0xc0, // OO-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 177, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x20, // --O--... - 0x78, // -OOOO... - 0x20, // --O--... - 0x78, // -OOOO... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 178, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0xc0, // OO-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 179, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0xc0, // OO-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 180, char width: 3 - 0x20, // --O..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 181, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x70, // -OOO.... - 0x80, // O---.... - 0x00, // ----.... - - // ASCII: 182, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0xe0, // OOO-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 183, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 184, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 185, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0xc0, // OO-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 186, char width: 3 - 0x00, // ---..... - 0xe0, // OOO..... - 0xa0, // O-O..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 187, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 188, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x50, // -O-O--.. - 0xd4, // OO-O-O.. - 0x2c, // --O-OO.. - 0x24, // --O--O.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 189, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x50, // -O-O--.. - 0xd4, // OO-O-O.. - 0x24, // --O--O.. - 0x2c, // --O-OO.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 190, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x50, // -O-O--.. - 0xd4, // OO-O-O.. - 0x2c, // --O-OO.. - 0x24, // --O--O.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 191, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x80, // O--..... - 0x60, // -OO..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 192, char width: 4 - 0x20, // --O-.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x70, // -OOO.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 193, char width: 4 - 0x20, // --O-.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x70, // -OOO.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 194, char width: 4 - 0x00, // ----.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x70, // -OOO.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 195, char width: 4 - 0x40, // -O--.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x70, // -OOO.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 196, char width: 4 - 0x00, // ----.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x70, // -OOO.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 197, char width: 4 - 0x60, // -OO-.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x70, // -OOO.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 198, char width: 6 - 0x00, // ------.. - 0x78, // -OOOO-.. - 0x60, // -OO---.. - 0x5c, // -O-OOO.. - 0x60, // -OO---.. - 0x9c, // O--OOO.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 199, char width: 4 - 0x00, // ----.... - 0x70, // -OOO.... - 0x80, // O---.... - 0x80, // O---.... - 0x80, // O---.... - 0x50, // -O-O.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 200, char width: 4 - 0x20, // --O-.... - 0xc0, // OO--.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x70, // -OOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 201, char width: 4 - 0x20, // --O-.... - 0xc0, // OO--.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x70, // -OOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 202, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x70, // -OOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 203, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x70, // -OOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 204, char width: 2 - 0x40, // -O...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 205, char width: 2 - 0x40, // -O...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 206, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 207, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 208, char width: 5 - 0x00, // -----... - 0xf0, // OOOO-... - 0x90, // O--O-... - 0xc8, // OO--O... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 209, char width: 5 - 0x40, // -O---... - 0x50, // -O-O-... - 0xd0, // OO-O-... - 0xb0, // O-OO-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 210, char width: 5 - 0x20, // --O--... - 0x50, // -O-O-... - 0x88, // O---O... - 0x88, // O---O... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 211, char width: 5 - 0x20, // --O--... - 0x50, // -O-O-... - 0x88, // O---O... - 0x88, // O---O... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 212, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x88, // O---O... - 0x88, // O---O... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 213, char width: 5 - 0x40, // -O---... - 0x70, // -OOO-... - 0x88, // O---O... - 0x88, // O---O... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 214, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x88, // O---O... - 0x88, // O---O... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 215, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x50, // -O-O-... - 0x20, // --O--... - 0x50, // -O-O-... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 216, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0xb0, // O-OO-... - 0xa8, // O-O-O... - 0xd0, // OO-O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 217, char width: 5 - 0x20, // --O--... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 218, char width: 5 - 0x20, // --O--... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 219, char width: 5 - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 220, char width: 5 - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 221, char width: 4 - 0x20, // --O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 222, char width: 4 - 0x00, // ----.... - 0x80, // O---.... - 0xe0, // OOO-.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 223, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x90, // O--O.... - 0x50, // -O-O.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 224, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0xa0, // O-O-.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 225, char width: 4 - 0x20, // --O-.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0xa0, // O-O-.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 226, char width: 4 - 0x40, // -O--.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0xa0, // O-O-.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 227, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0xa0, // O-O-.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 228, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0xa0, // O-O-.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 229, char width: 4 - 0xc0, // OO--.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0xa0, // O-O-.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 230, char width: 6 - 0x00, // ------.. - 0x00, // ------.. - 0x78, // -OOOO-.. - 0x24, // --O--O.. - 0xf8, // OOOOO-.. - 0xb4, // O-OO-O.. - 0x48, // -O--O-.. - 0x00, // ------.. - - // ASCII: 231, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x60, // -OO..... - 0x80, // O--..... - 0x80, // O--..... - 0x40, // -O-..... - 0x20, // --O..... - 0x00, // ---..... - - // ASCII: 232, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0xe0, // OOO-.... - 0x40, // -O--.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 233, char width: 4 - 0x20, // --O-.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0xe0, // OOO-.... - 0x40, // -O--.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 234, char width: 4 - 0x40, // -O--.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0xe0, // OOO-.... - 0x40, // -O--.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 235, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0xe0, // OOO-.... - 0x40, // -O--.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 236, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 237, char width: 2 - 0x40, // -O...... - 0x80, // O-...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 238, char width: 2 - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 239, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 240, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 241, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 242, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 243, char width: 4 - 0x20, // --O-.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 244, char width: 4 - 0x40, // -O--.... - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 245, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 246, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 247, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x20, // --O--... - 0x00, // -----... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 248, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xe0, // OOO-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 249, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x00, // ----.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 250, char width: 4 - 0x20, // --O-.... - 0x40, // -O--.... - 0x00, // ----.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 251, char width: 4 - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 252, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 253, char width: 4 - 0x20, // --O-.... - 0x40, // -O--.... - 0x80, // O---.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 254, char width: 4 - 0x00, // ----.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x00, // ----.... - - // ASCII: 255, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x80, // O---.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x00, // ----.... -}; - -static const uint8_t dejavu_8_widths[224] = -{ - 2, 3, 3, 5, 4, 6, 5, 2, - 2, 2, 3, 5, 2, 3, 2, 2, - 4, 4, 4, 4, 4, 4, 4, 4, - 4, 4, 2, 2, 5, 5, 5, 3, - 6, 4, 4, 4, 5, 4, 4, 5, - 5, 2, 2, 4, 4, 5, 5, 5, - 4, 5, 4, 4, 4, 5, 4, 6, - 4, 4, 4, 2, 2, 2, 5, 3, - 3, 4, 4, 3, 4, 4, 2, 4, - 4, 2, 2, 4, 2, 6, 4, 4, - 4, 4, 3, 3, 2, 4, 4, 5, - 4, 4, 3, 4, 2, 4, 5, 2, - 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, - 2, 3, 4, 4, 4, 4, 2, 3, - 3, 6, 3, 4, 5, 2, 6, 3, - 3, 5, 3, 3, 3, 4, 4, 2, - 3, 3, 3, 4, 6, 6, 6, 3, - 4, 4, 4, 4, 4, 4, 6, 4, - 4, 4, 4, 4, 2, 2, 2, 2, - 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 4, 4, 4, - 4, 4, 4, 4, 4, 4, 6, 3, - 4, 4, 4, 4, 2, 2, 2, 2, - 4, 4, 4, 4, 4, 4, 4, 5, - 4, 4, 4, 4, 4, 4, 4, 4, -}; - -static const font_t dejavu_8_dsc = -{ - 224, // Letter count - 32, // First ascii code - 1, // Letters width (bytes) - 8, // Letters height (row) - 0, // Fixed width or 0 if variable - dejavu_8_widths, - dejavu_8_bitmaps -}; - -const font_t * dejavu_8_get_dsc(void) -{ - return &dejavu_8_dsc; -} - - -#endif \ No newline at end of file diff --git a/lv_misc/fonts/dejavu_8.h b/lv_misc/fonts/dejavu_8.h deleted file mode 100644 index 96a9fbc88..000000000 --- a/lv_misc/fonts/dejavu_8.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef DEJAVU_8_H -#define DEJAVU_8_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_DEJAVU_8 != 0 - - -#include -#include "../font.h" - - -const font_t * dejavu_8_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/dejavu_80.c b/lv_misc/fonts/dejavu_80.c deleted file mode 100644 index 7a6efafa3..000000000 --- a/lv_misc/fonts/dejavu_80.c +++ /dev/null @@ -1,18460 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_80 != 0 - -#include -#include "../font.h" - -static const uint8_t dejavu_80_bitmaps[143360] = -{ - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // ASCII: 33, char width: 25 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - - // ASCII: 34, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - - // ASCII: 35, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x03, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----------------------OOOOO---------OOOOO-----------............ - 0x00, 0x00, 0x03, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----------------------OOOOO---------OOOOO-----------............ - 0x00, 0x00, 0x03, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----------------------OOOOO---------OOOOO-----------............ - 0x00, 0x00, 0x03, 0xe0, 0x1f, 0x00, 0x00, 0x00, // ----------------------OOOOO--------OOOOO------------............ - 0x00, 0x00, 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // ---------------------OOOOO---------OOOOO------------............ - 0x00, 0x00, 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // ---------------------OOOOO---------OOOOO------------............ - 0x00, 0x00, 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // ---------------------OOOOO---------OOOOO------------............ - 0x00, 0x00, 0x07, 0xc0, 0x3e, 0x00, 0x00, 0x00, // ---------------------OOOOO--------OOOOO-------------............ - 0x00, 0x00, 0x0f, 0x80, 0x3e, 0x00, 0x00, 0x00, // --------------------OOOOO---------OOOOO-------------............ - 0x00, 0x00, 0x0f, 0x80, 0x3e, 0x00, 0x00, 0x00, // --------------------OOOOO---------OOOOO-------------............ - 0x00, 0x00, 0x0f, 0x80, 0x3e, 0x00, 0x00, 0x00, // --------------------OOOOO---------OOOOO-------------............ - 0x00, 0x00, 0x0f, 0x80, 0x3c, 0x00, 0x00, 0x00, // --------------------OOOOO---------OOOO--------------............ - 0x00, 0x00, 0x0f, 0x80, 0x7c, 0x00, 0x00, 0x00, // --------------------OOOOO--------OOOOO--------------............ - 0x00, 0x00, 0x1f, 0x00, 0x7c, 0x00, 0x00, 0x00, // -------------------OOOOO---------OOOOO--------------............ - 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............ - 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............ - 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............ - 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............ - 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............ - 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............ - 0x00, 0x00, 0x3e, 0x00, 0xf0, 0x00, 0x00, 0x00, // ------------------OOOOO---------OOOO----------------............ - 0x00, 0x00, 0x3e, 0x01, 0xf0, 0x00, 0x00, 0x00, // ------------------OOOOO--------OOOOO----------------............ - 0x00, 0x00, 0x7c, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------------OOOOO---------OOOOO----------------............ - 0x00, 0x00, 0x7c, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------------OOOOO---------OOOOO----------------............ - 0x00, 0x00, 0x7c, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------------OOOOO---------OOOOO----------------............ - 0x00, 0x00, 0x7c, 0x03, 0xe0, 0x00, 0x00, 0x00, // -----------------OOOOO--------OOOOO-----------------............ - 0x00, 0x00, 0xf8, 0x03, 0xe0, 0x00, 0x00, 0x00, // ----------------OOOOO---------OOOOO-----------------............ - 0x00, 0x00, 0xf8, 0x03, 0xe0, 0x00, 0x00, 0x00, // ----------------OOOOO---------OOOOO-----------------............ - 0x00, 0x00, 0xf8, 0x03, 0xe0, 0x00, 0x00, 0x00, // ----------------OOOOO---------OOOOO-----------------............ - 0x00, 0x00, 0xf8, 0x03, 0xc0, 0x00, 0x00, 0x00, // ----------------OOOOO---------OOOO------------------............ - 0x00, 0x00, 0xf0, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----------------OOOO---------OOOOO------------------............ - 0x07, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............ - 0x07, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............ - 0x07, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............ - 0x07, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............ - 0x07, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............ - 0x00, 0x03, 0xe0, 0x0f, 0x80, 0x00, 0x00, 0x00, // --------------OOOOO---------OOOOO-------------------............ - 0x00, 0x03, 0xe0, 0x0f, 0x80, 0x00, 0x00, 0x00, // --------------OOOOO---------OOOOO-------------------............ - 0x00, 0x03, 0xe0, 0x0f, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO---------OOOO--------------------............ - 0x00, 0x03, 0xc0, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------------OOOO---------OOOOO--------------------............ - 0x00, 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---------OOOOO--------------------............ - 0x00, 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---------OOOOO--------------------............ - 0x00, 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---------OOOOO--------------------............ - 0x00, 0x07, 0xc0, 0x3e, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO--------OOOOO---------------------............ - 0x00, 0x0f, 0x80, 0x3e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---------OOOOO---------------------............ - 0x00, 0x0f, 0x80, 0x3e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---------OOOOO---------------------............ - 0x00, 0x0f, 0x80, 0x3e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---------OOOOO---------------------............ - 0x00, 0x0f, 0x80, 0x3c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---------OOOO----------------------............ - 0x00, 0x0f, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---------OOOOO----------------------............ - 0x00, 0x1f, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------OOOOO----------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 36, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......................... - 0x00, 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOO-----------......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x7f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOO-------......................... - 0x01, 0xff, 0xb9, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO-OOO--OOOOOOOOO-------......................... - 0x01, 0xfc, 0x38, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO----OOO------OOOOO-------......................... - 0x03, 0xf8, 0x38, 0x03, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-----OOO---------OO-------......................... - 0x03, 0xf0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------OOO------------------......................... - 0x07, 0xe0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOO------------------......................... - 0x07, 0xe0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOO------------------......................... - 0x07, 0xe0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOO------------------......................... - 0x07, 0xe0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOO------------------......................... - 0x07, 0xe0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOO------------------......................... - 0x07, 0xe0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOO------------------......................... - 0x07, 0xe0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOO------------------......................... - 0x03, 0xf0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------OOO------------------......................... - 0x03, 0xf8, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-----OOO------------------......................... - 0x03, 0xff, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOO--OOO------------------......................... - 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO------------------......................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO--------------......................... - 0x00, 0x7f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOO------------......................... - 0x00, 0x1f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOO--------......................... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x38, 0xff, 0x80, 0x00, 0x00, 0x00, // ------------------OOO---OOOOOOOOO------......................... - 0x00, 0x00, 0x38, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO-----OOOOOOOO-----......................... - 0x00, 0x00, 0x38, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO------OOOOOOO-----......................... - 0x00, 0x00, 0x38, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO-------OOOOOO-----......................... - 0x00, 0x00, 0x38, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO-------OOOOOO-----......................... - 0x00, 0x00, 0x38, 0x07, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO--------OOOOO-----......................... - 0x00, 0x00, 0x38, 0x07, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO--------OOOOO-----......................... - 0x00, 0x00, 0x38, 0x07, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO--------OOOOO-----......................... - 0x00, 0x00, 0x38, 0x07, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO--------OOOOO-----......................... - 0x00, 0x00, 0x38, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO-------OOOOOO-----......................... - 0x04, 0x00, 0x38, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----O------------OOO-------OOOOOO-----......................... - 0x07, 0x00, 0x38, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOO----------OOO------OOOOOO------......................... - 0x07, 0xc0, 0x38, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOO--------OOO-----OOOOOOO------......................... - 0x07, 0xf8, 0x38, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOO-----OOO---OOOOOOOO-------......................... - 0x07, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOO-------......................... - 0x07, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x7f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOO------------......................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO---------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 37, char width: 59 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x7c, 0x00, 0x00, // ----------OOOOOOOO-----------------------OOOOO-------------..... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOO---------------------OOOOO--------------..... - 0x01, 0xff, 0xf8, 0x00, 0x00, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOO-------------------OOOOO--------------..... - 0x03, 0xff, 0xfc, 0x00, 0x01, 0xf0, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-----------------OOOOO---------------..... - 0x03, 0xf0, 0xfc, 0x00, 0x01, 0xf0, 0x00, 0x00, // ------OOOOOO----OOOOOO-----------------OOOOO---------------..... - 0x07, 0xe0, 0x7e, 0x00, 0x03, 0xe0, 0x00, 0x00, // -----OOOOOO------OOOOOO---------------OOOOO----------------..... - 0x07, 0xc0, 0x3e, 0x00, 0x03, 0xc0, 0x00, 0x00, // -----OOOOO--------OOOOO---------------OOOO-----------------..... - 0x0f, 0x80, 0x3f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO---------OOOOOO-------------OOOOO-----------------..... - 0x0f, 0x80, 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOO------------OOOOO------------------..... - 0x0f, 0x80, 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOO------------OOOOO------------------..... - 0x0f, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x00, 0x00, // ----OOOO-----------OOOOO-----------OOOOO-------------------..... - 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOOO-----------OOOOO-----------OOOOO-------------------..... - 0x1f, 0x00, 0x1f, 0x00, 0x3e, 0x00, 0x00, 0x00, // ---OOOOO-----------OOOOO----------OOOOO--------------------..... - 0x1f, 0x00, 0x1f, 0x00, 0x3e, 0x00, 0x00, 0x00, // ---OOOOO-----------OOOOO----------OOOOO--------------------..... - 0x1f, 0x00, 0x1f, 0x00, 0x7c, 0x00, 0x00, 0x00, // ---OOOOO-----------OOOOO---------OOOOO---------------------..... - 0x0f, 0x00, 0x1f, 0x00, 0x7c, 0x00, 0x00, 0x00, // ----OOOO-----------OOOOO---------OOOOO---------------------..... - 0x0f, 0x00, 0x1f, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----OOOO-----------OOOOO--------OOOOO----------------------..... - 0x0f, 0x80, 0x1f, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO--------OOOO-----------------------..... - 0x0f, 0x80, 0x1f, 0x01, 0xf0, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-------OOOOO-----------------------..... - 0x0f, 0x80, 0x3f, 0x01, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO---------OOOOOO-------OOOO------------------------..... - 0x07, 0xc0, 0x3e, 0x03, 0xe0, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOO-------OOOOO------------------------..... - 0x07, 0xe0, 0x7e, 0x07, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOO------OOOOO-------------------------..... - 0x03, 0xf0, 0xfc, 0x07, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOO-------OOOOO-------------------------..... - 0x03, 0xff, 0xfc, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO------OOOOO--------------------------..... - 0x01, 0xff, 0xf8, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO-------OOOOO--------------------------..... - 0x00, 0xff, 0xf0, 0x1f, 0x00, 0x7f, 0x80, 0x00, // --------OOOOOOOOOOOO-------OOOOO---------OOOOOOOO----------..... - 0x00, 0x3f, 0xc0, 0x1f, 0x01, 0xff, 0xe0, 0x00, // ----------OOOOOOOO---------OOOOO-------OOOOOOOOOOOO--------..... - 0x00, 0x00, 0x00, 0x3e, 0x03, 0xff, 0xf0, 0x00, // --------------------------OOOOO-------OOOOOOOOOOOOOO-------..... - 0x00, 0x00, 0x00, 0x3e, 0x07, 0xff, 0xf8, 0x00, // --------------------------OOOOO------OOOOOOOOOOOOOOOO------..... - 0x00, 0x00, 0x00, 0x7c, 0x07, 0xe1, 0xfc, 0x00, // -------------------------OOOOO-------OOOOOO----OOOOOOO-----..... - 0x00, 0x00, 0x00, 0x78, 0x0f, 0xc0, 0x7c, 0x00, // -------------------------OOOO-------OOOOOO-------OOOOO-----..... - 0x00, 0x00, 0x00, 0xf8, 0x0f, 0x80, 0x7c, 0x00, // ------------------------OOOOO-------OOOOO--------OOOOO-----..... - 0x00, 0x00, 0x01, 0xf0, 0x1f, 0x00, 0x3e, 0x00, // -----------------------OOOOO-------OOOOO----------OOOOO----..... - 0x00, 0x00, 0x01, 0xf0, 0x1f, 0x00, 0x3e, 0x00, // -----------------------OOOOO-------OOOOO----------OOOOO----..... - 0x00, 0x00, 0x03, 0xe0, 0x1f, 0x00, 0x3e, 0x00, // ----------------------OOOOO--------OOOOO----------OOOOO----..... - 0x00, 0x00, 0x03, 0xe0, 0x1f, 0x00, 0x1e, 0x00, // ----------------------OOOOO--------OOOOO-----------OOOO----..... - 0x00, 0x00, 0x07, 0xc0, 0x1f, 0x00, 0x1f, 0x00, // ---------------------OOOOO---------OOOOO-----------OOOOO---..... - 0x00, 0x00, 0x07, 0xc0, 0x1f, 0x00, 0x1f, 0x00, // ---------------------OOOOO---------OOOOO-----------OOOOO---..... - 0x00, 0x00, 0x0f, 0x80, 0x1f, 0x00, 0x1f, 0x00, // --------------------OOOOO----------OOOOO-----------OOOOO---..... - 0x00, 0x00, 0x0f, 0x80, 0x1f, 0x00, 0x1f, 0x00, // --------------------OOOOO----------OOOOO-----------OOOOO---..... - 0x00, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00, // -------------------OOOOO-----------OOOOO-----------OOOOO---..... - 0x00, 0x00, 0x1e, 0x00, 0x1f, 0x00, 0x3e, 0x00, // -------------------OOOO------------OOOOO----------OOOOO----..... - 0x00, 0x00, 0x3e, 0x00, 0x1f, 0x00, 0x3e, 0x00, // ------------------OOOOO------------OOOOO----------OOOOO----..... - 0x00, 0x00, 0x7c, 0x00, 0x1f, 0x00, 0x3e, 0x00, // -----------------OOOOO-------------OOOOO----------OOOOO----..... - 0x00, 0x00, 0x7c, 0x00, 0x0f, 0x80, 0x3e, 0x00, // -----------------OOOOO--------------OOOOO---------OOOOO----..... - 0x00, 0x00, 0xf8, 0x00, 0x0f, 0x80, 0x7c, 0x00, // ----------------OOOOO---------------OOOOO--------OOOOO-----..... - 0x00, 0x00, 0xf8, 0x00, 0x0f, 0xc0, 0xfc, 0x00, // ----------------OOOOO---------------OOOOOO------OOOOOO-----..... - 0x00, 0x01, 0xf0, 0x00, 0x07, 0xf3, 0xf8, 0x00, // ---------------OOOOO-----------------OOOOOOO--OOOOOOO------..... - 0x00, 0x01, 0xf0, 0x00, 0x03, 0xff, 0xf8, 0x00, // ---------------OOOOO------------------OOOOOOOOOOOOOOO------..... - 0x00, 0x03, 0xe0, 0x00, 0x01, 0xff, 0xf0, 0x00, // --------------OOOOO--------------------OOOOOOOOOOOOO-------..... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0xff, 0xc0, 0x00, // --------------OOOOO---------------------OOOOOOOOOO---------..... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x3f, 0x00, 0x00, // -------------OOOOO------------------------OOOOOO-----------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - - // ASCII: 38, char width: 48 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOO---------------------................ - 0x00, 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOO------------------................ - 0x00, 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOO-----------------................ - 0x00, 0x0f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOO-----------------................ - 0x00, 0x1f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOO-----------------................ - 0x00, 0x1f, 0xf0, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOO-----OOOOOO-----------------................ - 0x00, 0x3f, 0x80, 0x0e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO-----------OOO-----------------................ - 0x00, 0x3f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------------O-----------------................ - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO--------------------------------................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------------------------------................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------------------------------................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------------------------------................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------------------------------................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------------------------------................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------------------------------................ - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------------------------------................ - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------------------------------................ - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO-------------------------------................ - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO------------------------------................ - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----------------------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOO----------------------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO---------------------------................ - 0x00, 0x3f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOO---------------------------................ - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO--------------------------................ - 0x00, 0xfe, 0xfe, 0x00, 0x01, 0xf0, 0x00, 0x00, // --------OOOOOOO-OOOOOOO----------------OOOOO----................ - 0x01, 0xfc, 0xff, 0x00, 0x01, 0xf0, 0x00, 0x00, // -------OOOOOOO--OOOOOOOO---------------OOOOO----................ - 0x03, 0xf8, 0x7f, 0x80, 0x01, 0xf0, 0x00, 0x00, // ------OOOOOOO----OOOOOOOO--------------OOOOO----................ - 0x03, 0xf0, 0x3f, 0xc0, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------OOOOOOOO------------OOOOOO----................ - 0x07, 0xf0, 0x1f, 0xe0, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOOO-------OOOOOOOO-----------OOOOOO----................ - 0x07, 0xe0, 0x0f, 0xf0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOOO---------OOOOOOOO----------OOOOO-----................ - 0x07, 0xe0, 0x07, 0xf0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOOO----------OOOOOOO----------OOOOO-----................ - 0x0f, 0xc0, 0x03, 0xf8, 0x07, 0xe0, 0x00, 0x00, // ----OOOOOO------------OOOOOOO--------OOOOOO-----................ - 0x0f, 0xc0, 0x01, 0xfc, 0x07, 0xe0, 0x00, 0x00, // ----OOOOOO-------------OOOOOOO-------OOOOOO-----................ - 0x0f, 0xc0, 0x01, 0xfe, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOO-------------OOOOOOOO------OOOOO------................ - 0x0f, 0xc0, 0x00, 0xff, 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO----OOOOOO------................ - 0x0f, 0xc0, 0x00, 0x7f, 0x8f, 0x80, 0x00, 0x00, // ----OOOOOO---------------OOOOOOOO---OOOOO-------................ - 0x0f, 0xc0, 0x00, 0x3f, 0xdf, 0x80, 0x00, 0x00, // ----OOOOOO----------------OOOOOOOO-OOOOOO-------................ - 0x0f, 0xc0, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOOOOOOOO--------................ - 0x0f, 0xc0, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOOOOOOOO--------................ - 0x0f, 0xe0, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, // ----OOOOOOO------------------OOOOOOOOOO---------................ - 0x07, 0xe0, 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOO-------------------OOOOOOOOO---------................ - 0x07, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------OOOOOOO----------................ - 0x07, 0xf0, 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------OOOOOOOO---------................ - 0x03, 0xf8, 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOO-----------------OOOOOOOOOO--------................ - 0x03, 0xfc, 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOO--------------OOOOOOOOOOOOO-------................ - 0x01, 0xff, 0x00, 0x3f, 0xff, 0xc0, 0x00, 0x00, // -------OOOOOOOOO----------OOOOOOOOOOOOOOOO------................ - 0x00, 0xff, 0xff, 0xff, 0xdf, 0xe0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOO-OOOOOOOO-----................ - 0x00, 0x7f, 0xff, 0xff, 0x8f, 0xe0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOO-----................ - 0x00, 0x3f, 0xff, 0xff, 0x07, 0xf0, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOO-----OOOOOOO----................ - 0x00, 0x1f, 0xff, 0xfc, 0x03, 0xf8, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOO--------OOOOOOO---................ - 0x00, 0x07, 0xff, 0xf0, 0x03, 0xfc, 0x00, 0x00, // -------------OOOOOOOOOOOOOOO----------OOOOOOOO--................ - 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOO-----------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - - // ASCII: 39, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - - // ASCII: 40, char width: 24 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-----........................................ - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO------........................................ - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO------........................................ - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-------........................................ - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-------........................................ - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------........................................ - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------........................................ - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------........................................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------........................................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------........................................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------........................................ - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------........................................ - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO----------........................................ - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO----------........................................ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------........................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------........................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------........................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------........................................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------........................................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------........................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------........................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------........................................ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------........................................ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------........................................ - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO----------........................................ - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------........................................ - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------........................................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------........................................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------........................................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------........................................ - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------........................................ - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------........................................ - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-------........................................ - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-------........................................ - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-------........................................ - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO------........................................ - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO------........................................ - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-----........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - - // ASCII: 41, char width: 24 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------........................................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------........................................ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------........................................ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------........................................ - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------........................................ - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------........................................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------........................................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------........................................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------........................................ - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------........................................ - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------........................................ - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------........................................ - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-------........................................ - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-------........................................ - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-------........................................ - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-------........................................ - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------........................................ - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------........................................ - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------........................................ - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------........................................ - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO------........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO------........................................ - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------........................................ - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------........................................ - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------........................................ - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------........................................ - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-------........................................ - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-------........................................ - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-------........................................ - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-------........................................ - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------........................................ - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------........................................ - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------........................................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------........................................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------........................................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------........................................ - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------........................................ - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO----------........................................ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------........................................ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------........................................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------........................................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - - // ASCII: 42, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x18, 0x03, 0x80, 0x30, 0x00, 0x00, 0x00, 0x00, // ---OO---------OOO---------OO---................................. - 0x1c, 0x03, 0x80, 0x70, 0x00, 0x00, 0x00, 0x00, // ---OOO--------OOO--------OOO---................................. - 0x3f, 0x03, 0x81, 0xf8, 0x00, 0x00, 0x00, 0x00, // --OOOOOO------OOO------OOOOOO--................................. - 0x1f, 0x83, 0x83, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-----OOO-----OOOOOO---................................. - 0x0f, 0xe3, 0x8f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO---OOO---OOOOOOO----................................. - 0x03, 0xf3, 0x9f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--OOO--OOOOOO------................................. - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO--------................................. - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO---------................................. - 0x00, 0x1f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOO-----------................................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-------------................................. - 0x00, 0x1f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOO-----------................................. - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO---------................................. - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO--------................................. - 0x03, 0xf3, 0x9f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--OOO--OOOOOO------................................. - 0x0f, 0xe3, 0x8f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO---OOO---OOOOOOO----................................. - 0x1f, 0x83, 0x83, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-----OOO-----OOOOOO---................................. - 0x3f, 0x03, 0x81, 0xf8, 0x00, 0x00, 0x00, 0x00, // --OOOOOO------OOO------OOOOOO--................................. - 0x1c, 0x03, 0x80, 0x70, 0x00, 0x00, 0x00, 0x00, // ---OOO--------OOO--------OOO---................................. - 0x18, 0x03, 0x80, 0x30, 0x00, 0x00, 0x00, 0x00, // ---OO---------OOO---------OO---................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - - // ASCII: 43, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xff, 0xff, 0xf8, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 44, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------............................................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------............................................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------............................................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------............................................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------............................................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------............................................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO--------............................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------............................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------............................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------............................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOO----------............................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO----------............................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------............................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // ASCII: 45, char width: 22 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - - // ASCII: 46, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // ASCII: 47, char width: 21 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO........................................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-........................................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-........................................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-........................................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-........................................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--........................................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--........................................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--........................................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---........................................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---........................................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---........................................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---........................................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO----........................................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO----........................................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO----........................................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----........................................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----........................................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----........................................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----........................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------........................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------........................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------........................................... - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO------........................................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-------........................................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-------........................................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO--------........................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------........................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------........................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------........................................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------........................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------........................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------........................................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------........................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------........................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------........................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------........................................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------........................................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------........................................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------........................................... - 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOO-------------........................................... - 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO--------------........................................... - 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO--------------........................................... - 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO--------------........................................... - 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOOO--------------........................................... - 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOO---------------........................................... - 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOO---------------........................................... - 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOO---------------........................................... - 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOO----------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - - // ASCII: 48, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO---------------......................... - 0x00, 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOO------------......................... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO-----------......................... - 0x00, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO---------......................... - 0x00, 0x7f, 0xc3, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOO----OOOOOOOOO--------......................... - 0x00, 0xff, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO--------OOOOOOO--------......................... - 0x00, 0xfc, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO-----------OOOOOOO-------......................... - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------------OOOOOO-------......................... - 0x01, 0xf8, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOO-------------OOOOOOO------......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO------......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOOO----......................... - 0x07, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO------------------OOOOOO----......................... - 0x07, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO------------------OOOOOO----......................... - 0x0f, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOO------------------OOOOOO----......................... - 0x0f, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOO------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOO------------------OOOOOO----......................... - 0x07, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO------------------OOOOOO----......................... - 0x07, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO------------------OOOOOO----......................... - 0x07, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO------------------OOOOOO----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO------......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO------......................... - 0x01, 0xf8, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOO-------------OOOOOOO------......................... - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------------OOOOOO-------......................... - 0x00, 0xfe, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO----------OOOOOOO-------......................... - 0x00, 0xff, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO--------OOOOOOO--------......................... - 0x00, 0x7f, 0xef, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-OOOOOOOOOOO--------......................... - 0x00, 0x3f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOO---------......................... - 0x00, 0x1f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO-----------......................... - 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOO-------------......................... - 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOO---------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 49, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOO---------------......................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO---------------......................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---------------......................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---------------......................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---------------......................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---------------......................... - 0x01, 0xfe, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO---OOOOOO---------------......................... - 0x01, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x00, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x00, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x00, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x00, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x00, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 50, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO----------------......................... - 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO-------------......................... - 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOO------------......................... - 0x07, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x07, 0xf0, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO----------OOOOOOOOO--------......................... - 0x07, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------------OOOOOOOO-------......................... - 0x06, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -----OO------------------OOOOOOO-------......................... - 0x04, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -----O-------------------OOOOOOO-------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO-------......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO-------......................... - 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOOO-------......................... - 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOO--------......................... - 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOOOO--------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO----------......................... - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO-----------......................... - 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOO------------......................... - 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOO------------......................... - 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOO-------------......................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO--------------......................... - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOO---------------......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------------......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----------------......................... - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO------------------......................... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO------------------......................... - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOO-------------------......................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO--------------------......................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOO---------------------......................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO----------------------......................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO-----------------------......................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------------------------......................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------------------------......................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------------......................... - 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOO--------------------------......................... - 0x07, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x07, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x07, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x07, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x07, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x07, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 51, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOO---------------......................... - 0x00, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO------------......................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO-----------......................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------------OOOOOOOOO-------......................... - 0x03, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OO-----------------OOOOOOO-------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO-------......................... - 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOOO-------......................... - 0x00, 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOOO--------......................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO---------......................... - 0x00, 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOO-----------......................... - 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOO-------------......................... - 0x00, 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOO------------......................... - 0x00, 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOO----------......................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO---------......................... - 0x00, 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOO--------......................... - 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOOOOO-------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------------------OOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----------------------------OOOOOOO----......................... - 0x00, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----------------------------OOOOOOO----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------------------OOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------------------OOOOOOO-----......................... - 0x04, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----O--------------------OOOOOOO------......................... - 0x07, 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOO----------------OOOOOOOOO------......................... - 0x07, 0xe0, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-----------OOOOOOOOOO-------......................... - 0x07, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x07, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOO-----------......................... - 0x00, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOO-------------......................... - 0x00, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOO-----------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 52, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO---------......................... - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO---------......................... - 0x00, 0x00, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOO---------......................... - 0x00, 0x00, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOO---------......................... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOO---------......................... - 0x00, 0x00, 0x3f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOO---------......................... - 0x00, 0x00, 0x3f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOO---------......................... - 0x00, 0x00, 0x7d, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-OOOOOOO---------......................... - 0x00, 0x00, 0x7d, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-OOOOOOO---------......................... - 0x00, 0x00, 0xf9, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO--OOOOOOO---------......................... - 0x00, 0x01, 0xf9, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO--OOOOOOO---------......................... - 0x00, 0x01, 0xf1, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO---OOOOOOO---------......................... - 0x00, 0x03, 0xf1, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOOOO---------......................... - 0x00, 0x03, 0xe1, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO----OOOOOOO---------......................... - 0x00, 0x07, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-----OOOOOOO---------......................... - 0x00, 0x07, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-----OOOOOOO---------......................... - 0x00, 0x0f, 0x81, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO------OOOOOOO---------......................... - 0x00, 0x1f, 0x81, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO------OOOOOOO---------......................... - 0x00, 0x1f, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-------OOOOOOO---------......................... - 0x00, 0x3f, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-------OOOOOOO---------......................... - 0x00, 0x3e, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO--------OOOOOOO---------......................... - 0x00, 0x7c, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------OOOOOOO---------......................... - 0x00, 0xfc, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOOO---------......................... - 0x00, 0xf8, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOO----------OOOOOOO---------......................... - 0x01, 0xf8, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO----------OOOOOOO---------......................... - 0x01, 0xf0, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-----------OOOOOOO---------......................... - 0x03, 0xe0, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------------OOOOOOO---------......................... - 0x07, 0xe0, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO------------OOOOOOO---------......................... - 0x07, 0xc0, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------------OOOOOOO---------......................... - 0x0f, 0xc0, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-------------OOOOOOO---------......................... - 0x0f, 0x80, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--------------OOOOOOO---------......................... - 0x1f, 0x80, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO--------------OOOOOOO---------......................... - 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......................... - 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......................... - 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......................... - 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......................... - 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......................... - 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 53, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x01, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x01, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x01, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x01, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x01, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf7, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-OOOOOOOOOO----------------......................... - 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOO-------------......................... - 0x01, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOO------------......................... - 0x01, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x01, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x01, 0xff, 0x7f, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO-OOOOOOOOOOOOOO--------......................... - 0x01, 0xc0, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOO------------OOOOOOOOO--------......................... - 0x01, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // -------O----------------OOOOOOOO-------......................... - 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOOO-------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------------------OOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------------------OOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // -------------------------OOOOOOOO------......................... - 0x04, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -----O-------------------OOOOOOO-------......................... - 0x07, 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOO---------------OOOOOOOOO-------......................... - 0x07, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOOOOOOOOO--------......................... - 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOO-----------......................... - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO------------......................... - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO--------------......................... - 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOO-----------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 54, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x3f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOO----------......................... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO-------......................... - 0x00, 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x3f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x3f, 0xc0, 0x07, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOOO-----------OOOO------......................... - 0x00, 0x7f, 0x80, 0x00, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOOO---------------O------......................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------------------------......................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------------------------......................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------------------------......................... - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO--------------------------......................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOOOOO-------------......................... - 0x07, 0xe1, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----OOOOOOOOOOOOO-----------......................... - 0x07, 0xe7, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--OOOOOOOOOOOOOOOOO---------......................... - 0x07, 0xef, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-OOOOOOOOOOOOOOOOOOO--------......................... - 0x0f, 0xdf, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-OOOOOOOOOOOOOOOOOOOOO-------......................... - 0x0f, 0xdf, 0xc1, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-OOOOOOO-----OOOOOOOOO-------......................... - 0x0f, 0xff, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOO---------OOOOOOOO------......................... - 0x0f, 0xfe, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOO-----------OOOOOOOO-----......................... - 0x0f, 0xfc, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOO-------------OOOOOOO-----......................... - 0x0f, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOO---------------OOOOOOO----......................... - 0x0f, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOO---------------OOOOOOO----......................... - 0x0f, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOO-----------------OOOOOO----......................... - 0x0f, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOO-----------------OOOOOO----......................... - 0x07, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOO-----------------OOOOOO----......................... - 0x07, 0xf0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOO-----------------OOOOOOO---......................... - 0x07, 0xf0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOO-----------------OOOOOOO---......................... - 0x07, 0xf0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOO-----------------OOOOOOO---......................... - 0x07, 0xf0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOO-----------------OOOOOOO---......................... - 0x07, 0xf0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOO-----------------OOOOOOO---......................... - 0x07, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x01, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOO---------------OOOOOOO----......................... - 0x01, 0xf8, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOO---------------OOOOOO-----......................... - 0x01, 0xfc, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOO-------------OOOOOOO-----......................... - 0x00, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------OOOOOOO-----------OOOOOOO------......................... - 0x00, 0x7f, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOO---------OOOOOOOO------......................... - 0x00, 0x7f, 0xf7, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO-OOOOOOOOOOO-------......................... - 0x00, 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOO--------......................... - 0x00, 0x1f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOO---------......................... - 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOO------------......................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO--------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 55, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO-------......................... - 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOOO-------......................... - 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOO--------......................... - 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOO--------......................... - 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOOOO--------......................... - 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOOO---------......................... - 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO----------......................... - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO----------......................... - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO----------......................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO-----------......................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO-----------......................... - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO-----------......................... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO------------......................... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO------------......................... - 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOO------------......................... - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO-------------......................... - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO-------------......................... - 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOO-------------......................... - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOO--------------......................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO--------------......................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO--------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOO---------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----------------......................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------------......................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------------......................... - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO------------------......................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-------------------......................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-------------------......................... - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-------------------......................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO--------------------......................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO--------------------......................... - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO--------------------......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------------......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 56, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOO--------------......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO-----------......................... - 0x00, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x7f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x00, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x01, 0xff, 0x83, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO-----OOOOOOOOOO-------......................... - 0x01, 0xfe, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOO----------OOOOOOOO------......................... - 0x03, 0xf8, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO-------------OOOOOOO------......................... - 0x03, 0xf8, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO----------------OOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO------......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO------......................... - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------------OOOOOO-------......................... - 0x00, 0xfe, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO----------OOOOOOO-------......................... - 0x00, 0x7f, 0x83, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOO-----OOOOOOOOO--------......................... - 0x00, 0x3f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOO---------......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO-----------......................... - 0x00, 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOO------------......................... - 0x00, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x7f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x00, 0xff, 0x81, 0xff, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOO------OOOOOOOOO-------......................... - 0x01, 0xfc, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOO-----------OOOOOOOO------......................... - 0x03, 0xf8, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO-------------OOOOOOO------......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOOO----......................... - 0x07, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO------------------OOOOOO----......................... - 0x0f, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOO------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOO------------------OOOOOO----......................... - 0x0f, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOO------------------OOOOOO----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOOO----......................... - 0x07, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOO----------------OOOOOOO----......................... - 0x07, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-------------OOOOOOOO-----......................... - 0x03, 0xfe, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO----------OOOOOOOO------......................... - 0x01, 0xff, 0xc7, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOO---OOOOOOOOOOOO------......................... - 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x7f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x00, 0x3f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOO---------......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO-----------......................... - 0x00, 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOO--------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 57, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOO---------------......................... - 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOO-------------......................... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO------------......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x01, 0xff, 0x87, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOO---------......................... - 0x01, 0xfc, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO----------OOOOOOO--------......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO-------......................... - 0x07, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOO-------......................... - 0x07, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOO-------......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO------......................... - 0x0f, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOO------......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOOO----......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOOO----......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOOO----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOOO----......................... - 0x07, 0xf0, 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOOOO----......................... - 0x07, 0xf0, 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOOOO----......................... - 0x03, 0xf8, 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOOOOO----......................... - 0x03, 0xfe, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOO--------OOOOOOOOOOOO----......................... - 0x01, 0xff, 0xcf, 0xff, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOO--OOOOOOOOOOOOOOO----......................... - 0x00, 0xff, 0xff, 0xf7, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOO-OOOOOO----......................... - 0x00, 0x7f, 0xff, 0xe7, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOO--OOOOOO----......................... - 0x00, 0x3f, 0xff, 0xc7, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOO---OOOOOO----......................... - 0x00, 0x0f, 0xff, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOO-----OOOOOO----......................... - 0x00, 0x01, 0xfc, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOOOOO------OOOOOOO----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------------------OOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO-------......................... - 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOOO-------......................... - 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOOOO--------......................... - 0x01, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------O---------------OOOOOOO---------......................... - 0x01, 0xe0, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOO----------OOOOOOOOO---------......................... - 0x01, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x01, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOO-----------......................... - 0x01, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOO------------......................... - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO--------------......................... - 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOO---------------......................... - 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 58, char width: 21 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - - // ASCII: 59, char width: 21 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO--------........................................... - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO--------........................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------........................................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOO-----------........................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------........................................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------........................................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - - // ASCII: 60, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, // --------------------------------------------O-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, // -----------------------------------------OOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---------------------------------------OOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, // -------------------------------------OOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x3f, 0xf8, 0x00, 0x00, // ----------------------------------OOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0xff, 0xf8, 0x00, 0x00, // --------------------------------OOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x07, 0xff, 0xf0, 0x00, 0x00, // -----------------------------OOOOOOOOOOOOOOO--------............ - 0x00, 0x00, 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // ---------------------------OOOOOOOOOOOOOOO----------............ - 0x00, 0x00, 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOOOOO-------------............ - 0x00, 0x00, 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOO---------------............ - 0x00, 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOO------------------............ - 0x00, 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOO--------------------............ - 0x00, 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOO-----------------------............ - 0x00, 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOO-------------------------............ - 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOO----------------------------............ - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO------------------------------............ - 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOO---------------------------------............ - 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO------------------------------------............ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO--------------------------------------............ - 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO-----------------------------------............ - 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOO---------------------------------............ - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO------------------------------............ - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---------------------------............ - 0x00, 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOO-------------------------............ - 0x00, 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOO----------------------............ - 0x00, 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOO--------------------............ - 0x00, 0x00, 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOO-----------------............ - 0x00, 0x00, 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOO---------------............ - 0x00, 0x00, 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOOOOOOO------------............ - 0x00, 0x00, 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // ---------------------------OOOOOOOOOOOOOOO----------............ - 0x00, 0x00, 0x00, 0x03, 0xff, 0xf8, 0x00, 0x00, // ------------------------------OOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0xff, 0xf8, 0x00, 0x00, // --------------------------------OOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x1f, 0xf8, 0x00, 0x00, // -----------------------------------OOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, // -------------------------------------OOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, // ------------------------------------------OOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 61, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 62, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------O--------------------------------------------............ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOO-----------------------------------------............ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO---------------------------------------............ - 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO-------------------------------------............ - 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOO----------------------------------............ - 0x01, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOO--------------------------------............ - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO-----------------------------............ - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---------------------------............ - 0x00, 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOO------------------------............ - 0x00, 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOO----------------------............ - 0x00, 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOO-------------------............ - 0x00, 0x00, 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOO-----------------............ - 0x00, 0x00, 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOO--------------............ - 0x00, 0x00, 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOOOOOOO------------............ - 0x00, 0x00, 0x00, 0x0f, 0xff, 0xe0, 0x00, 0x00, // ----------------------------OOOOOOOOOOOOOOO---------............ - 0x00, 0x00, 0x00, 0x03, 0xff, 0xf8, 0x00, 0x00, // ------------------------------OOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x7f, 0xf8, 0x00, 0x00, // ---------------------------------OOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, // ------------------------------------OOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // --------------------------------------OOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x1f, 0xf8, 0x00, 0x00, // -----------------------------------OOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0xff, 0xf8, 0x00, 0x00, // --------------------------------OOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x03, 0xff, 0xf8, 0x00, 0x00, // ------------------------------OOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // ---------------------------OOOOOOOOOOOOOOO----------............ - 0x00, 0x00, 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOOOOOOO------------............ - 0x00, 0x00, 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOO---------------............ - 0x00, 0x00, 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOO-----------------............ - 0x00, 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOO--------------------............ - 0x00, 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOO----------------------............ - 0x00, 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOO-------------------------............ - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---------------------------............ - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO------------------------------............ - 0x01, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOO--------------------------------............ - 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO-----------------------------------............ - 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO-------------------------------------............ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------------------------------------............ - 0x01, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOO------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 63, char width: 33 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO------------............................... - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO----------............................... - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO--------............................... - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO-------............................... - 0x0f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOO-------............................... - 0x0f, 0xfc, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO--OOOOOOOOOOO------............................... - 0x0f, 0xc0, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOOOOOO-----............................... - 0x0f, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------OOOOOOO-----............................... - 0x0e, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----OOO---------------OOOOOO-----............................... - 0x08, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----O-----------------OOOOOO-----............................... - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO----............................... - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO----............................... - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO----............................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO-----............................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO-----............................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO-----............................... - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO-----............................... - 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOO------............................... - 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOO-------............................... - 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOO-------............................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO--------............................... - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOO---------............................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------............................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----------............................... - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO------------............................... - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-------------............................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO--------------............................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO--------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - - // ASCII: 64, char width: 62 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, // -------------------------------OO-----------------------------.. - 0x00, 0x00, 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOOOOO-----------------------.. - 0x00, 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOOOOOOO--------------------.. - 0x00, 0x00, 0x1f, 0xff, 0xff, 0xf0, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOOOOOOOOOO------------------.. - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xfc, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------.. - 0x00, 0x00, 0xff, 0xf8, 0x1f, 0xfe, 0x00, 0x00, // ----------------OOOOOOOOOOOOO------OOOOOOOOOOOO---------------.. - 0x00, 0x01, 0xff, 0x00, 0x01, 0xff, 0x00, 0x00, // ---------------OOOOOOOOO---------------OOOOOOOOO--------------.. - 0x00, 0x03, 0xfc, 0x00, 0x00, 0x3f, 0xc0, 0x00, // --------------OOOOOOOO--------------------OOOOOOOO------------.. - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x1f, 0xe0, 0x00, // -------------OOOOOOO-----------------------OOOOOOOO-----------.. - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x07, 0xe0, 0x00, // ------------OOOOOOO--------------------------OOOOOO-----------.. - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x03, 0xf0, 0x00, // -----------OOOOOO-----------------------------OOOOOO----------.. - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // ----------OOOOOO-------------------------------OOOOOO---------.. - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, // ---------OOOOOO---------------------------------OOOOOO--------.. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x00, // ---------OOOOO-----------------------------------OOOOO--------.. - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, // --------OOOOOO------------------------------------OOOOO-------.. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, // --------OOOOO-------------------------------------OOOOO-------.. - 0x01, 0xf0, 0x00, 0x3f, 0xc0, 0xf0, 0x1f, 0x00, // -------OOOOO--------------OOOOOOOO------OOOO-------OOOOO------.. - 0x01, 0xf0, 0x00, 0xff, 0xf0, 0xf0, 0x1f, 0x00, // -------OOOOO------------OOOOOOOOOOOO----OOOO-------OOOOO------.. - 0x03, 0xe0, 0x01, 0xff, 0xfc, 0xf0, 0x0f, 0x00, // ------OOOOO------------OOOOOOOOOOOOOOO--OOOO--------OOOO------.. - 0x03, 0xe0, 0x03, 0xff, 0xfe, 0xf0, 0x0f, 0x80, // ------OOOOO-----------OOOOOOOOOOOOOOOOO-OOOO--------OOOOO-----.. - 0x03, 0xc0, 0x07, 0xff, 0xfe, 0xf0, 0x0f, 0x80, // ------OOOO-----------OOOOOOOOOOOOOOOOOO-OOOO--------OOOOO-----.. - 0x07, 0xc0, 0x0f, 0xe0, 0x1f, 0xf0, 0x07, 0x80, // -----OOOOO----------OOOOOOO--------OOOOOOOOO---------OOOO-----.. - 0x07, 0xc0, 0x0f, 0xc0, 0x0f, 0xf0, 0x07, 0x80, // -----OOOOO----------OOOOOO----------OOOOOOOO---------OOOO-----.. - 0x07, 0x80, 0x0f, 0x80, 0x07, 0xf0, 0x07, 0xc0, // -----OOOO-----------OOOOO------------OOOOOOO---------OOOOO----.. - 0x07, 0x80, 0x1f, 0x80, 0x03, 0xf0, 0x07, 0xc0, // -----OOOO----------OOOOOO-------------OOOOOO---------OOOOO----.. - 0x0f, 0x80, 0x1f, 0x00, 0x03, 0xf0, 0x07, 0xc0, // ----OOOOO----------OOOOO--------------OOOOOO---------OOOOO----.. - 0x0f, 0x80, 0x1f, 0x00, 0x01, 0xf0, 0x07, 0xc0, // ----OOOOO----------OOOOO---------------OOOOO---------OOOOO----.. - 0x0f, 0x80, 0x3e, 0x00, 0x01, 0xf0, 0x07, 0xc0, // ----OOOOO---------OOOOO----------------OOOOO---------OOOOO----.. - 0x0f, 0x00, 0x3e, 0x00, 0x01, 0xf0, 0x07, 0xc0, // ----OOOO----------OOOOO----------------OOOOO---------OOOOO----.. - 0x0f, 0x00, 0x3e, 0x00, 0x01, 0xf0, 0x07, 0xc0, // ----OOOO----------OOOOO----------------OOOOO---------OOOOO----.. - 0x0f, 0x00, 0x3e, 0x00, 0x01, 0xf0, 0x07, 0xc0, // ----OOOO----------OOOOO----------------OOOOO---------OOOOO----.. - 0x0f, 0x00, 0x3e, 0x00, 0x01, 0xf0, 0x07, 0x80, // ----OOOO----------OOOOO----------------OOOOO---------OOOO-----.. - 0x0f, 0x00, 0x3e, 0x00, 0x01, 0xf0, 0x07, 0x80, // ----OOOO----------OOOOO----------------OOOOO---------OOOO-----.. - 0x0f, 0x00, 0x3e, 0x00, 0x01, 0xf0, 0x0f, 0x80, // ----OOOO----------OOOOO----------------OOOOO--------OOOOO-----.. - 0x0f, 0x80, 0x1e, 0x00, 0x01, 0xf0, 0x0f, 0x80, // ----OOOOO----------OOOO----------------OOOOO--------OOOOO-----.. - 0x0f, 0x80, 0x1f, 0x00, 0x01, 0xf0, 0x0f, 0x00, // ----OOOOO----------OOOOO---------------OOOOO--------OOOO------.. - 0x07, 0x80, 0x1f, 0x00, 0x03, 0xf0, 0x1f, 0x00, // -----OOOO----------OOOOO--------------OOOOOO-------OOOOO------.. - 0x07, 0x80, 0x1f, 0x80, 0x03, 0xf0, 0x3e, 0x00, // -----OOOO----------OOOOOO-------------OOOOOO------OOOOO-------.. - 0x07, 0x80, 0x0f, 0x80, 0x07, 0xf0, 0x7e, 0x00, // -----OOOO-----------OOOOO------------OOOOOOO-----OOOOOO-------.. - 0x07, 0xc0, 0x0f, 0xc0, 0x0f, 0xf0, 0xfc, 0x00, // -----OOOOO----------OOOOOO----------OOOOOOOO----OOOOOO--------.. - 0x07, 0xc0, 0x07, 0xf0, 0x1f, 0xf3, 0xf8, 0x00, // -----OOOOO-----------OOOOOOO-------OOOOOOOOO--OOOOOOO---------.. - 0x03, 0xc0, 0x07, 0xff, 0xfe, 0xff, 0xf0, 0x00, // ------OOOO-----------OOOOOOOOOOOOOOOOOO-OOOOOOOOOOOO----------.. - 0x03, 0xe0, 0x03, 0xff, 0xfc, 0xff, 0xe0, 0x00, // ------OOOOO-----------OOOOOOOOOOOOOOOO--OOOOOOOOOOO-----------.. - 0x03, 0xe0, 0x01, 0xff, 0xf8, 0xff, 0xc0, 0x00, // ------OOOOO------------OOOOOOOOOOOOOO---OOOOOOOOOO------------.. - 0x01, 0xf0, 0x00, 0xff, 0xf0, 0xff, 0x00, 0x00, // -------OOOOO------------OOOOOOOOOOOO----OOOOOOOO--------------.. - 0x01, 0xf0, 0x00, 0x3f, 0xc0, 0xf8, 0x00, 0x00, // -------OOOOO--------------OOOOOOOO------OOOOO-----------------.. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-------------------------------------------------.. - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO------------------------------------------------.. - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-----------------------------------------------.. - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------------------------------------------.. - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO---------------------------------------------.. - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x06, 0x00, 0x00, // -----------OOOOOOO---------------------------OO---------------.. - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x1f, 0x00, 0x00, // ------------OOOOOOO------------------------OOOOO--------------.. - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x3f, 0x00, 0x00, // -------------OOOOOOOO---------------------OOOOOO--------------.. - 0x00, 0x03, 0xfe, 0x00, 0x00, 0xff, 0x80, 0x00, // --------------OOOOOOOOO-----------------OOOOOOOOO-------------.. - 0x00, 0x01, 0xff, 0xc0, 0x07, 0xfe, 0x00, 0x00, // ---------------OOOOOOOOOOO-----------OOOOOOOOOO---------------.. - 0x00, 0x00, 0x7f, 0xff, 0xff, 0xfc, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------.. - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOOOO------------------.. - 0x00, 0x00, 0x0f, 0xff, 0xff, 0xc0, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOOOOOOO--------------------.. - 0x00, 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOOO----------------------.. - 0x00, 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOOO--------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - - // ASCII: 65, char width: 42 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOOO--------------...................... - 0x00, 0x03, 0xf3, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOOO-------------...................... - 0x00, 0x07, 0xe1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO---------------OOOOOO-------...................... - 0x01, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOO-------...................... - 0x01, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOO----------------OOOOOO-------...................... - 0x01, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---------------------OOOOOO----...................... - 0x0f, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOO----------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------OOOOOO---...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --OOOOOO--------------------------OOOOOOO-...................... - 0x7f, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOOO---------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOO----------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -OOOOOO----------------------------OOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - - // ASCII: 66, char width: 43 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO---------------..................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO-------------..................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO-----------..................... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO----------..................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..................... - 0x03, 0xf0, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO---------..................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO-----------..................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO-------------..................... - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO------------..................... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO----------..................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..................... - 0x03, 0xf0, 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOO------..................... - 0x03, 0xf0, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOO------..................... - 0x03, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOO------..................... - 0x03, 0xf0, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOO------..................... - 0x03, 0xf0, 0x00, 0x1f, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOOOO-------..................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..................... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO----------..................... - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO------------..................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO---------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - - // ASCII: 67, char width: 43 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOO-----------..................... - 0x00, 0x00, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOOOO--------..................... - 0x00, 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOOOO------..................... - 0x00, 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOO-----..................... - 0x00, 0x0f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x00, 0x1f, 0xff, 0x9f, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOO--OOOOOOOOOOOOO---..................... - 0x00, 0x3f, 0xf0, 0x00, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO------------OOOOOOOO---..................... - 0x00, 0x7f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---------OOOOOOOOO----------------OOOOOO---..................... - 0x00, 0xff, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------------OOOO---..................... - 0x01, 0xfe, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, // -------OOOOOOOO----------------------OOO---..................... - 0x01, 0xfc, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, // -------OOOOOOO-------------------------O---..................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------------------------..................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------------------..................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO---------------------------------..................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO---------------------------------..................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------------..................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------------------------..................... - 0x03, 0xfc, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------------------O---..................... - 0x01, 0xfc, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, // -------OOOOOOO------------------------OO---..................... - 0x00, 0xfe, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, // --------OOOOOOO----------------------OOO---..................... - 0x00, 0xff, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------------OOOO---..................... - 0x00, 0x7f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---------OOOOOOOOO----------------OOOOOO---..................... - 0x00, 0x3f, 0xf0, 0x00, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO------------OOOOOOOO---..................... - 0x00, 0x1f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x00, 0x0f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x00, 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOO-----..................... - 0x00, 0x01, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOOOO-------..................... - 0x00, 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOO---------..................... - 0x00, 0x00, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOO-------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - - // ASCII: 68, char width: 48 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOO---------------------................ - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO-----------------................ - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------------................ - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------................ - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------................ - 0x03, 0xf0, 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOOOOOOOOOO----------................ - 0x03, 0xf0, 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOOOOO---------................ - 0x03, 0xf0, 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOOOO---------................ - 0x03, 0xf0, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOOOO--------................ - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOOO-------................ - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO-------................ - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOOO------................ - 0x03, 0xf0, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOO-----------------------OOOOOOO------................ - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO--------------------------OOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO--------------------------OOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO--------------------------OOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO--------------------------OOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO--------------------------OOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO--------------------------OOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO--------------------------OOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO--------------------------OOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOO-----------------------OOOOOOO------................ - 0x03, 0xf0, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOO-----------------------OOOOOOO------................ - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOOO------................ - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOOO-------................ - 0x03, 0xf0, 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, // ------OOOOOO--------------------OOOOOOOOO-------................ - 0x03, 0xf0, 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOOOO--------................ - 0x03, 0xf0, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOOOO---------................ - 0x03, 0xf0, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOOOOOO----------................ - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------................ - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------................ - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------................ - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------------................ - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO------------------................ - 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOO----------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - - // ASCII: 69, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 70, char width: 36 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO----............................ - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO----............................ - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO----............................ - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO----............................ - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO----............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO------............................ - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO------............................ - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO------............................ - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO------............................ - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO------............................ - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - - // ASCII: 71, char width: 48 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOO---------------................ - 0x00, 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOOOO------------................ - 0x00, 0x01, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOOOOOO----------................ - 0x00, 0x07, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOOOO--------................ - 0x00, 0x0f, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................ - 0x00, 0x1f, 0xff, 0x8f, 0xff, 0xc0, 0x00, 0x00, // -----------OOOOOOOOOOOOOO---OOOOOOOOOOOOOO------................ - 0x00, 0x3f, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, // ----------OOOOOOOOOO-------------OOOOOOOOO------................ - 0x00, 0x7f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, // ---------OOOOOOOOO------------------OOOOOO------................ - 0x00, 0xff, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // --------OOOOOOOO---------------------OOOOO------................ - 0x01, 0xfe, 0x00, 0x00, 0x01, 0xc0, 0x00, 0x00, // -------OOOOOOOO------------------------OOO------................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, // -------OOOOOOO--------------------------OO------................ - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, // ------OOOOOOO----------------------------O------................ - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-----------------------------------................ - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO------------------------------------................ - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO------------------------------------................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------------------------------................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------------------------------................ - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-------------------------------------................ - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-------------------------------------................ - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------------------------------................ - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------------------------------................ - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------------------------------................ - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------------------------------................ - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------------------------------................ - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO--------------------------------------................ - 0x1f, 0xc0, 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, // ---OOOOOOO-----------------OOOOOOOOOOOOOOOO-----................ - 0x1f, 0xc0, 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, // ---OOOOOOO-----------------OOOOOOOOOOOOOOOO-----................ - 0x0f, 0xc0, 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOOOOOOOOOOO-----................ - 0x0f, 0xc0, 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOOOOOOOOOOO-----................ - 0x0f, 0xc0, 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOOOOOOOOOOO-----................ - 0x0f, 0xc0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ----OOOOOO---------------------------OOOOOO-----................ - 0x0f, 0xc0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ----OOOOOO---------------------------OOOOOO-----................ - 0x0f, 0xc0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ----OOOOOO---------------------------OOOOOO-----................ - 0x0f, 0xe0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ----OOOOOOO--------------------------OOOOOO-----................ - 0x0f, 0xe0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ----OOOOOOO--------------------------OOOOOO-----................ - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOO-----................ - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOO-----................ - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOO-----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOO-----................ - 0x03, 0xfc, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ------OOOOOOOO-----------------------OOOOOO-----................ - 0x01, 0xfc, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -------OOOOOOO-----------------------OOOOOO-----................ - 0x00, 0xfe, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // --------OOOOOOO----------------------OOOOOO-----................ - 0x00, 0xff, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // --------OOOOOOOO---------------------OOOOOO-----................ - 0x00, 0x7f, 0xc0, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ---------OOOOOOOOO------------------OOOOOOO-----................ - 0x00, 0x3f, 0xf0, 0x00, 0x7f, 0xe0, 0x00, 0x00, // ----------OOOOOOOOOO-------------OOOOOOOOOO-----................ - 0x00, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----................ - 0x00, 0x0f, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------................ - 0x00, 0x07, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOOOO--------................ - 0x00, 0x01, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOOOOOO----------................ - 0x00, 0x00, 0x7f, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOOO-------------................ - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO-----------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - - // ASCII: 72, char width: 47 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - - // ASCII: 73, char width: 18 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - - // ASCII: 74, char width: 18 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO------.............................................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------.............................................. - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-------.............................................. - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-------.............................................. - 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOO--------.............................................. - 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOO--------.............................................. - 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOO---------.............................................. - 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOO----------.............................................. - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-----------.............................................. - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO------------.............................................. - 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOO---------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - - // ASCII: 75, char width: 41 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x03, 0xf0, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOOOO-....................... - 0x03, 0xf0, 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOOO--....................... - 0x03, 0xf0, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOOO---....................... - 0x03, 0xf0, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOO----....................... - 0x03, 0xf0, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOO-----....................... - 0x03, 0xf0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOOO------....................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO-------....................... - 0x03, 0xf0, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOO--------....................... - 0x03, 0xf0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------OOOOOOOO---------....................... - 0x03, 0xf0, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOOO----------....................... - 0x03, 0xf0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO----------OOOOOOOO-----------....................... - 0x03, 0xf0, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOOOOOOO------------....................... - 0x03, 0xf0, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------OOOOOOOO-------------....................... - 0x03, 0xf0, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOOOO--------------....................... - 0x03, 0xf0, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOOOO---------------....................... - 0x03, 0xf0, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----OOOOOOOO----------------....................... - 0x03, 0xf0, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOOOO-----------------....................... - 0x03, 0xf0, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOOO------------------....................... - 0x03, 0xf1, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---OOOOOOO-------------------....................... - 0x03, 0xf3, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--OOOOOOO--------------------....................... - 0x03, 0xf7, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-OOOOOOOO--------------------....................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------------------....................... - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO----------------------....................... - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO-----------------------....................... - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO----------------------....................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------------------....................... - 0x03, 0xf7, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-OOOOOOOO--------------------....................... - 0x03, 0xf3, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--OOOOOOOO-------------------....................... - 0x03, 0xf1, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---OOOOOOOO------------------....................... - 0x03, 0xf0, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOOOO-----------------....................... - 0x03, 0xf0, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOOOOO----------------....................... - 0x03, 0xf0, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----OOOOOOOO----------------....................... - 0x03, 0xf0, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOOOO---------------....................... - 0x03, 0xf0, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOOOO--------------....................... - 0x03, 0xf0, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------OOOOOOOO-------------....................... - 0x03, 0xf0, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOOOOOOO------------....................... - 0x03, 0xf0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO----------OOOOOOOO-----------....................... - 0x03, 0xf0, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOOO----------....................... - 0x03, 0xf0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------OOOOOOOO---------....................... - 0x03, 0xf0, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOO--------....................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-------....................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO-------....................... - 0x03, 0xf0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOOO------....................... - 0x03, 0xf0, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOO-----....................... - 0x03, 0xf0, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOO----....................... - 0x03, 0xf0, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOOO---....................... - 0x03, 0xf0, 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOOO--....................... - 0x03, 0xf0, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOOOO-....................... - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOOO....................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - - // ASCII: 76, char width: 35 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-............................. - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-............................. - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-............................. - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-............................. - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-............................. - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - - // ASCII: 77, char width: 54 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x03, 0xff, 0x00, 0x00, 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO----------------------OOOOOOOOOO------.......... - 0x03, 0xff, 0x00, 0x00, 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO----------------------OOOOOOOOOO------.......... - 0x03, 0xff, 0x00, 0x00, 0x07, 0xff, 0x00, 0x00, // ------OOOOOOOOOO---------------------OOOOOOOOOOO------.......... - 0x03, 0xff, 0x80, 0x00, 0x07, 0xff, 0x00, 0x00, // ------OOOOOOOOOOO--------------------OOOOOOOOOOO------.......... - 0x03, 0xff, 0x80, 0x00, 0x07, 0xff, 0x00, 0x00, // ------OOOOOOOOOOO--------------------OOOOOOOOOOO------.......... - 0x03, 0xff, 0x80, 0x00, 0x0f, 0xff, 0x00, 0x00, // ------OOOOOOOOOOO-------------------OOOOOOOOOOOO------.......... - 0x03, 0xff, 0xc0, 0x00, 0x0f, 0xbf, 0x00, 0x00, // ------OOOOOOOOOOOO------------------OOOOO-OOOOOO------.......... - 0x03, 0xf7, 0xc0, 0x00, 0x0f, 0xbf, 0x00, 0x00, // ------OOOOOO-OOOOO------------------OOOOO-OOOOOO------.......... - 0x03, 0xf7, 0xc0, 0x00, 0x1f, 0xbf, 0x00, 0x00, // ------OOOOOO-OOOOO-----------------OOOOOO-OOOOOO------.......... - 0x03, 0xf7, 0xe0, 0x00, 0x1f, 0x3f, 0x00, 0x00, // ------OOOOOO-OOOOOO----------------OOOOO--OOOOOO------.......... - 0x03, 0xf3, 0xe0, 0x00, 0x1f, 0x3f, 0x00, 0x00, // ------OOOOOO--OOOOO----------------OOOOO--OOOOOO------.......... - 0x03, 0xf3, 0xe0, 0x00, 0x3f, 0x3f, 0x00, 0x00, // ------OOOOOO--OOOOO---------------OOOOOO--OOOOOO------.......... - 0x03, 0xf3, 0xf0, 0x00, 0x3e, 0x3f, 0x00, 0x00, // ------OOOOOO--OOOOOO--------------OOOOO---OOOOOO------.......... - 0x03, 0xf1, 0xf0, 0x00, 0x3e, 0x3f, 0x00, 0x00, // ------OOOOOO---OOOOO--------------OOOOO---OOOOOO------.......... - 0x03, 0xf1, 0xf0, 0x00, 0x7e, 0x3f, 0x00, 0x00, // ------OOOOOO---OOOOO-------------OOOOOO---OOOOOO------.......... - 0x03, 0xf1, 0xf8, 0x00, 0x7c, 0x3f, 0x00, 0x00, // ------OOOOOO---OOOOOO------------OOOOO----OOOOOO------.......... - 0x03, 0xf0, 0xf8, 0x00, 0x7c, 0x3f, 0x00, 0x00, // ------OOOOOO----OOOOO------------OOOOO----OOOOOO------.......... - 0x03, 0xf0, 0xf8, 0x00, 0xfc, 0x3f, 0x00, 0x00, // ------OOOOOO----OOOOO-----------OOOOOO----OOOOOO------.......... - 0x03, 0xf0, 0xfc, 0x00, 0xf8, 0x3f, 0x00, 0x00, // ------OOOOOO----OOOOOO----------OOOOO-----OOOOOO------.......... - 0x03, 0xf0, 0x7c, 0x00, 0xf8, 0x3f, 0x00, 0x00, // ------OOOOOO-----OOOOO----------OOOOO-----OOOOOO------.......... - 0x03, 0xf0, 0x7c, 0x01, 0xf8, 0x3f, 0x00, 0x00, // ------OOOOOO-----OOOOO---------OOOOOO-----OOOOOO------.......... - 0x03, 0xf0, 0x7e, 0x01, 0xf0, 0x3f, 0x00, 0x00, // ------OOOOOO-----OOOOOO--------OOOOO------OOOOOO------.......... - 0x03, 0xf0, 0x3e, 0x01, 0xf0, 0x3f, 0x00, 0x00, // ------OOOOOO------OOOOO--------OOOOO------OOOOOO------.......... - 0x03, 0xf0, 0x3e, 0x03, 0xf0, 0x3f, 0x00, 0x00, // ------OOOOOO------OOOOO-------OOOOOO------OOOOOO------.......... - 0x03, 0xf0, 0x3f, 0x03, 0xe0, 0x3f, 0x00, 0x00, // ------OOOOOO------OOOOOO------OOOOO-------OOOOOO------.......... - 0x03, 0xf0, 0x1f, 0x03, 0xe0, 0x3f, 0x00, 0x00, // ------OOOOOO-------OOOOO------OOOOO-------OOOOOO------.......... - 0x03, 0xf0, 0x1f, 0x07, 0xe0, 0x3f, 0x00, 0x00, // ------OOOOOO-------OOOOO-----OOOOOO-------OOOOOO------.......... - 0x03, 0xf0, 0x1f, 0x87, 0xc0, 0x3f, 0x00, 0x00, // ------OOOOOO-------OOOOOO----OOOOO--------OOOOOO------.......... - 0x03, 0xf0, 0x0f, 0x87, 0xc0, 0x3f, 0x00, 0x00, // ------OOOOOO--------OOOOO----OOOOO--------OOOOOO------.......... - 0x03, 0xf0, 0x0f, 0x8f, 0xc0, 0x3f, 0x00, 0x00, // ------OOOOOO--------OOOOO---OOOOOO--------OOOOOO------.......... - 0x03, 0xf0, 0x0f, 0xcf, 0x80, 0x3f, 0x00, 0x00, // ------OOOOOO--------OOOOOO--OOOOO---------OOOOOO------.......... - 0x03, 0xf0, 0x07, 0xcf, 0x80, 0x3f, 0x00, 0x00, // ------OOOOOO---------OOOOO--OOOOO---------OOOOOO------.......... - 0x03, 0xf0, 0x07, 0xdf, 0x80, 0x3f, 0x00, 0x00, // ------OOOOOO---------OOOOO-OOOOOO---------OOOOOO------.......... - 0x03, 0xf0, 0x07, 0xff, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO---------OOOOOOOOOOO----------OOOOOO------.......... - 0x03, 0xf0, 0x03, 0xff, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO----------OOOOOOOOOO----------OOOOOO------.......... - 0x03, 0xf0, 0x03, 0xfe, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO----------OOOOOOOOO-----------OOOOOO------.......... - 0x03, 0xf0, 0x03, 0xfe, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO----------OOOOOOOOO-----------OOOOOO------.......... - 0x03, 0xf0, 0x01, 0xfe, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO-----------OOOOOOOO-----------OOOOOO------.......... - 0x03, 0xf0, 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO-----------OOOOOOO------------OOOOOO------.......... - 0x03, 0xf0, 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO-----------OOOOOOO------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - - // ASCII: 78, char width: 46 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x03, 0xfe, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOO-------------------OOOOOO------.................. - 0x03, 0xfe, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOO-------------------OOOOOO------.................. - 0x03, 0xff, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOO------------------OOOOOO------.................. - 0x03, 0xff, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOO------------------OOOOOO------.................. - 0x03, 0xff, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO-----------------OOOOOO------.................. - 0x03, 0xff, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO-----------------OOOOOO------.................. - 0x03, 0xff, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO----------------OOOOOO------.................. - 0x03, 0xff, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO----------------OOOOOO------.................. - 0x03, 0xff, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO---------------OOOOOO------.................. - 0x03, 0xf7, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-OOOOOO---------------OOOOOO------.................. - 0x03, 0xf7, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-OOOOOOO--------------OOOOOO------.................. - 0x03, 0xf3, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--OOOOOO--------------OOOOOO------.................. - 0x03, 0xf3, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--OOOOOO--------------OOOOOO------.................. - 0x03, 0xf1, 0xf8, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO---OOOOOO-------------OOOOOO------.................. - 0x03, 0xf1, 0xf8, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO---OOOOOO-------------OOOOOO------.................. - 0x03, 0xf0, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOO------------OOOOOO------.................. - 0x03, 0xf0, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOO------------OOOOOO------.................. - 0x03, 0xf0, 0x7e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-----OOOOOO-----------OOOOOO------.................. - 0x03, 0xf0, 0x7e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-----OOOOOO-----------OOOOOO------.................. - 0x03, 0xf0, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO----------OOOOOO------.................. - 0x03, 0xf0, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO----------OOOOOO------.................. - 0x03, 0xf0, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOO---------OOOOOO------.................. - 0x03, 0xf0, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOO---------OOOOOO------.................. - 0x03, 0xf0, 0x1f, 0xc0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOOO--------OOOOOO------.................. - 0x03, 0xf0, 0x0f, 0xc0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--------OOOOOO--------OOOOOO------.................. - 0x03, 0xf0, 0x0f, 0xe0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--------OOOOOOO-------OOOOOO------.................. - 0x03, 0xf0, 0x07, 0xe0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO---------OOOOOO-------OOOOOO------.................. - 0x03, 0xf0, 0x07, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO---------OOOOOOO------OOOOOO------.................. - 0x03, 0xf0, 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------OOOOOO------OOOOOO------.................. - 0x03, 0xf0, 0x03, 0xf8, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------OOOOOOO-----OOOOOO------.................. - 0x03, 0xf0, 0x01, 0xf8, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOO-----OOOOOO------.................. - 0x03, 0xf0, 0x01, 0xfc, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOO----OOOOOO------.................. - 0x03, 0xf0, 0x00, 0xfc, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------------OOOOOO----OOOOOO------.................. - 0x03, 0xf0, 0x00, 0xfc, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------------OOOOOO----OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x7e, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO---OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x7e, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO---OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x3f, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO--OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x3f, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO--OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x1f, 0xbf, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x1f, 0xbf, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOOOO------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - - // ASCII: 79, char width: 49 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOO-------------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x3f, 0xfe, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO---OOOOOOOOOOOO-----------............... - 0x00, 0x7f, 0xe0, 0x03, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------OOOOOOOOO----------............... - 0x00, 0x7f, 0x80, 0x00, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO---------------OOOOOOOO---------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x03, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x00, 0x7f, 0x80, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO--------------OOOOOOOOO---------............... - 0x00, 0x3f, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------OOOOOOOOOO----------............... - 0x00, 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOO---------------............... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO-----------------............... - 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOO--------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 80, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOO-----------........................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO--------........................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO-------........................... - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO------........................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO-----........................... - 0x03, 0xf0, 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO----------OOOOOOOOOOO----........................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO---........................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO---........................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO---........................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--........................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--........................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--........................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--........................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--........................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--........................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--........................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--........................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--........................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--........................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--........................... - 0x03, 0xf0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOOO--........................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO---........................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO---........................... - 0x03, 0xf0, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO------------OOOOOOOOO----........................... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO----........................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO-----........................... - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO------........................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO-------........................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO---------........................... - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO-------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - - // ASCII: 81, char width: 49 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOO-------------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x3f, 0xfe, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO---OOOOOOOOOOOO-----------............... - 0x00, 0x7f, 0xe0, 0x03, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------OOOOOOOOO----------............... - 0x00, 0x7f, 0x80, 0x00, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO---------------OOOOOOOO---------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x03, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x00, 0x7f, 0x80, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO--------------OOOOOOOOO---------............... - 0x00, 0x3f, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------OOOOOOOOOO----------............... - 0x00, 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOO---------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOO---------------............... - 0x00, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----------------------------OOOOOOO--------------............... - 0x00, 0x00, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ----------------------------OOOOOOOO-------------............... - 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, // -----------------------------OOOOOOOO------------............... - 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ------------------------------OOOOOOO------------............... - 0x00, 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // -------------------------------OOOOOOO-----------............... - 0x00, 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // --------------------------------OOOOOOO----------............... - 0x00, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ---------------------------------OOOOOOO---------............... - 0x00, 0x00, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // ---------------------------------OOOOOOOO--------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 82, char width: 43 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOO-----------------..................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO--------------..................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO-------------..................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO-----------..................... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO----------..................... - 0x03, 0xf0, 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO----------OOOOOOOOOOO----------..................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO---------..................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO---------..................... - 0x03, 0xf0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO---------..................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO---------..................... - 0x03, 0xf0, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO------------OOOOOOOOO----------..................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO-----------..................... - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO------------..................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO-------------..................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO---------------..................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO--------------..................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO-------------..................... - 0x03, 0xf0, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOOO------------..................... - 0x03, 0xf0, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOO-----------..................... - 0x03, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOO----------..................... - 0x03, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOO----------..................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO---------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO---------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOO------..................... - 0x03, 0xf0, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOO------..................... - 0x03, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOOO----..................... - 0x03, 0xf0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOO----..................... - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOO---..................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO---..................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO--..................... - 0x03, 0xf0, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // ------OOOOOO-----------------------OOOOOO--..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - - // ASCII: 83, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOO------------......................... - 0x00, 0x1f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOO--------......................... - 0x00, 0x3f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x01, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x01, 0xff, 0xc1, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOO-----OOOOOOOOOO------......................... - 0x03, 0xfe, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO------------OOOOOO------......................... - 0x07, 0xf8, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOO-----------------OOO------......................... - 0x07, 0xf0, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------------O------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO----------------------------......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------------......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------------......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------------......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------------......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------------......................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO----------------------------......................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO----------------------------......................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------------------......................... - 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOO--------------------------......................... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO------------------------......................... - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO--------------------......................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---------------......................... - 0x00, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO------------......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOO--------......................... - 0x00, 0x0f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOO-----......................... - 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOO----......................... - 0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ---------------------------OOOOOOOO----......................... - 0x00, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----------------------------OOOOOOO----......................... - 0x00, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----------------------------OOOOOOO---......................... - 0x00, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----------------------------OOOOOOO---......................... - 0x00, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----------------------------OOOOOOO---......................... - 0x00, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------------------------------OOOOOO---......................... - 0x00, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------------------------------OOOOOO---......................... - 0x00, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------------------------------OOOOOO---......................... - 0x00, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----------------------------OOOOOOO---......................... - 0x00, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----------------------------OOOOOOO---......................... - 0x00, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----------------------------OOOOOO----......................... - 0x08, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----O-----------------------OOOOOOO----......................... - 0x0e, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ----OOO--------------------OOOOOOOO----......................... - 0x0f, 0x80, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOOOO-----......................... - 0x0f, 0xf0, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOO------------OOOOOOOOOO-----......................... - 0x0f, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x0f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOO-------......................... - 0x0f, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO-----------......................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO---------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 84, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.......................... - 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.......................... - 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.......................... - 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.......................... - 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 85, char width: 45 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x01, 0xf8, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOO-------------------OOOOOOO------................... - 0x01, 0xfc, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOO------------------OOOOOO-------................... - 0x00, 0xfe, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // --------OOOOOOO----------------OOOOOOO-------................... - 0x00, 0xff, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------OOOOOOO--------................... - 0x00, 0x7f, 0x80, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOO-----------OOOOOOOOO--------................... - 0x00, 0x7f, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------................... - 0x00, 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOO----------................... - 0x00, 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOO-----------................... - 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOO------------................... - 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOO--------------................... - 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOO-----------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - - // ASCII: 86, char width: 42 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -OOOOOO----------------------------OOOOOOO...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOO----------------------------OOOOOO-...................... - 0x7f, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOOO---------------------------OOOOOO-...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --OOOOOO--------------------------OOOOOOO-...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--------------------------OOOOOO--...................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO--...................... - 0x1f, 0x80, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOOO--...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x0f, 0xc0, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // ----OOOOOO----------------------OOOOOOO---...................... - 0x0f, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOO----...................... - 0x07, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---------------------OOOOOO----...................... - 0x07, 0xe0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO--------------------OOOOOOO----...................... - 0x07, 0xf0, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------OOOOOO-----...................... - 0x03, 0xf0, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOO-----...................... - 0x03, 0xf0, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOO-----...................... - 0x03, 0xf8, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------------OOOOOO------...................... - 0x01, 0xf8, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOO-----------------OOOOOO------...................... - 0x01, 0xf8, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOO----------------OOOOOOO------...................... - 0x01, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOO-------...................... - 0x00, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO---------------OOOOOO-------...................... - 0x00, 0xfc, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOOO-------...................... - 0x00, 0xfe, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOOO--------...................... - 0x00, 0x7f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOO-----------OOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOO----------...................... - 0x00, 0x3f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO---------OOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOO-----------...................... - 0x00, 0x1f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-------OOOOOO-----------...................... - 0x00, 0x0f, 0xc0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOOO-----------...................... - 0x00, 0x0f, 0xc0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOO------------...................... - 0x00, 0x0f, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----OOOOOO------------...................... - 0x00, 0x07, 0xe1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOOO------------...................... - 0x00, 0x07, 0xe1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOO-------------...................... - 0x00, 0x07, 0xf1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO---OOOOOO-------------...................... - 0x00, 0x03, 0xf3, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOOO-------------...................... - 0x00, 0x03, 0xf3, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOO--------------...................... - 0x00, 0x03, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO-OOOOOO--------------...................... - 0x00, 0x01, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOO--------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO-----------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - - // ASCII: 87, char width: 61 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x3f, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x07, 0xe0, // --OOOOOO-------------------OOOOOOO-------------------OOOOOO--... - 0x3f, 0x80, 0x00, 0x1f, 0xe0, 0x00, 0x07, 0xe0, // --OOOOOOO------------------OOOOOOOO------------------OOOOOO--... - 0x1f, 0x80, 0x00, 0x1f, 0xe0, 0x00, 0x07, 0xe0, // ---OOOOOO------------------OOOOOOOO------------------OOOOOO--... - 0x1f, 0x80, 0x00, 0x3f, 0xe0, 0x00, 0x0f, 0xe0, // ---OOOOOO-----------------OOOOOOOOO-----------------OOOOOOO--... - 0x1f, 0x80, 0x00, 0x3f, 0xe0, 0x00, 0x0f, 0xc0, // ---OOOOOO-----------------OOOOOOOOO-----------------OOOOOO---... - 0x1f, 0xc0, 0x00, 0x3f, 0xe0, 0x00, 0x0f, 0xc0, // ---OOOOOOO----------------OOOOOOOOO-----------------OOOOOO---... - 0x0f, 0xc0, 0x00, 0x3f, 0xf0, 0x00, 0x0f, 0xc0, // ----OOOOOO----------------OOOOOOOOOO----------------OOOOOO---... - 0x0f, 0xc0, 0x00, 0x7f, 0xf0, 0x00, 0x1f, 0xc0, // ----OOOOOO---------------OOOOOOOOOOO---------------OOOOOOO---... - 0x0f, 0xc0, 0x00, 0x7d, 0xf0, 0x00, 0x1f, 0x80, // ----OOOOOO---------------OOOOO-OOOOO---------------OOOOOO----... - 0x0f, 0xc0, 0x00, 0x7d, 0xf0, 0x00, 0x1f, 0x80, // ----OOOOOO---------------OOOOO-OOOOO---------------OOOOOO----... - 0x07, 0xe0, 0x00, 0x7c, 0xf8, 0x00, 0x1f, 0x80, // -----OOOOOO--------------OOOOO--OOOOO--------------OOOOOO----... - 0x07, 0xe0, 0x00, 0x7c, 0xf8, 0x00, 0x1f, 0x80, // -----OOOOOO--------------OOOOO--OOOOO--------------OOOOOO----... - 0x07, 0xe0, 0x00, 0xf8, 0xf8, 0x00, 0x3f, 0x00, // -----OOOOOO-------------OOOOO---OOOOO-------------OOOOOO-----... - 0x07, 0xe0, 0x00, 0xf8, 0xf8, 0x00, 0x3f, 0x00, // -----OOOOOO-------------OOOOO---OOOOO-------------OOOOOO-----... - 0x07, 0xf0, 0x00, 0xf8, 0x78, 0x00, 0x3f, 0x00, // -----OOOOOOO------------OOOOO----OOOO-------------OOOOOO-----... - 0x03, 0xf0, 0x00, 0xf8, 0x7c, 0x00, 0x3f, 0x00, // ------OOOOOO------------OOOOO----OOOOO------------OOOOOO-----... - 0x03, 0xf0, 0x01, 0xf8, 0x7c, 0x00, 0x7f, 0x00, // ------OOOOOO-----------OOOOOO----OOOOO-----------OOOOOOO-----... - 0x03, 0xf0, 0x01, 0xf0, 0x7c, 0x00, 0x7e, 0x00, // ------OOOOOO-----------OOOOO-----OOOOO-----------OOOOOO------... - 0x03, 0xf0, 0x01, 0xf0, 0x7c, 0x00, 0x7e, 0x00, // ------OOOOOO-----------OOOOO-----OOOOO-----------OOOOOO------... - 0x01, 0xf8, 0x01, 0xf0, 0x3e, 0x00, 0x7e, 0x00, // -------OOOOOO----------OOOOO------OOOOO----------OOOOOO------... - 0x01, 0xf8, 0x01, 0xf0, 0x3e, 0x00, 0x7e, 0x00, // -------OOOOOO----------OOOOO------OOOOO----------OOOOOO------... - 0x01, 0xf8, 0x03, 0xe0, 0x3e, 0x00, 0xfc, 0x00, // -------OOOOOO---------OOOOO-------OOOOO---------OOOOOO-------... - 0x01, 0xf8, 0x03, 0xe0, 0x3e, 0x00, 0xfc, 0x00, // -------OOOOOO---------OOOOO-------OOOOO---------OOOOOO-------... - 0x01, 0xfc, 0x03, 0xe0, 0x1e, 0x00, 0xfc, 0x00, // -------OOOOOOO--------OOOOO--------OOOO---------OOOOOO-------... - 0x00, 0xfc, 0x03, 0xe0, 0x1f, 0x00, 0xfc, 0x00, // --------OOOOOO--------OOOOO--------OOOOO--------OOOOOO-------... - 0x00, 0xfc, 0x07, 0xe0, 0x1f, 0x01, 0xfc, 0x00, // --------OOOOOO-------OOOOOO--------OOOOO-------OOOOOOO-------... - 0x00, 0xfc, 0x07, 0xc0, 0x1f, 0x01, 0xf8, 0x00, // --------OOOOOO-------OOOOO---------OOOOO-------OOOOOO--------... - 0x00, 0xfc, 0x07, 0xc0, 0x1f, 0x01, 0xf8, 0x00, // --------OOOOOO-------OOOOO---------OOOOO-------OOOOOO--------... - 0x00, 0x7e, 0x07, 0xc0, 0x0f, 0x81, 0xf8, 0x00, // ---------OOOOOO------OOOOO----------OOOOO------OOOOOO--------... - 0x00, 0x7e, 0x07, 0xc0, 0x0f, 0x83, 0xf8, 0x00, // ---------OOOOOO------OOOOO----------OOOOO-----OOOOOOO--------... - 0x00, 0x7e, 0x0f, 0x80, 0x0f, 0x83, 0xf0, 0x00, // ---------OOOOOO-----OOOOO-----------OOOOO-----OOOOOO---------... - 0x00, 0x7e, 0x0f, 0x80, 0x0f, 0x83, 0xf0, 0x00, // ---------OOOOOO-----OOOOO-----------OOOOO-----OOOOOO---------... - 0x00, 0x7f, 0x0f, 0x80, 0x0f, 0x83, 0xf0, 0x00, // ---------OOOOOOO----OOOOO-----------OOOOO-----OOOOOO---------... - 0x00, 0x3f, 0x0f, 0x80, 0x07, 0xc3, 0xf0, 0x00, // ----------OOOOOO----OOOOO------------OOOOO----OOOOOO---------... - 0x00, 0x3f, 0x1f, 0x80, 0x07, 0xc7, 0xf0, 0x00, // ----------OOOOOO---OOOOOO------------OOOOO---OOOOOOO---------... - 0x00, 0x3f, 0x1f, 0x00, 0x07, 0xc7, 0xe0, 0x00, // ----------OOOOOO---OOOOO-------------OOOOO---OOOOOO----------... - 0x00, 0x3f, 0x1f, 0x00, 0x07, 0xc7, 0xe0, 0x00, // ----------OOOOOO---OOOOO-------------OOOOO---OOOOOO----------... - 0x00, 0x1f, 0x9f, 0x00, 0x03, 0xe7, 0xe0, 0x00, // -----------OOOOOO--OOOOO--------------OOOOO--OOOOOO----------... - 0x00, 0x1f, 0x9f, 0x00, 0x03, 0xef, 0xe0, 0x00, // -----------OOOOOO--OOOOO--------------OOOOO-OOOOOOO----------... - 0x00, 0x1f, 0xbe, 0x00, 0x03, 0xef, 0xc0, 0x00, // -----------OOOOOO-OOOOO---------------OOOOO-OOOOOO-----------... - 0x00, 0x1f, 0xbe, 0x00, 0x03, 0xef, 0xc0, 0x00, // -----------OOOOOO-OOOOO---------------OOOOO-OOOOOO-----------... - 0x00, 0x1f, 0xfe, 0x00, 0x03, 0xff, 0xc0, 0x00, // -----------OOOOOOOOOOOO---------------OOOOOOOOOOOO-----------... - 0x00, 0x0f, 0xfe, 0x00, 0x01, 0xff, 0xc0, 0x00, // ------------OOOOOOOOOOO----------------OOOOOOOOOOO-----------... - 0x00, 0x0f, 0xfe, 0x00, 0x01, 0xff, 0x80, 0x00, // ------------OOOOOOOOOOO----------------OOOOOOOOOO------------... - 0x00, 0x0f, 0xfc, 0x00, 0x01, 0xff, 0x80, 0x00, // ------------OOOOOOOOOO-----------------OOOOOOOOOO------------... - 0x00, 0x0f, 0xfc, 0x00, 0x01, 0xff, 0x80, 0x00, // ------------OOOOOOOOOO-----------------OOOOOOOOOO------------... - 0x00, 0x07, 0xfc, 0x00, 0x00, 0xff, 0x80, 0x00, // -------------OOOOOOOOO------------------OOOOOOOOO------------... - 0x00, 0x07, 0xfc, 0x00, 0x00, 0xff, 0x80, 0x00, // -------------OOOOOOOOO------------------OOOOOOOOO------------... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0xff, 0x00, 0x00, // -------------OOOOOOOO-------------------OOOOOOOO-------------... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0xff, 0x00, 0x00, // -------------OOOOOOOO-------------------OOOOOOOO-------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - - // ASCII: 88, char width: 43 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOOOOO----------------------OOOOOO----..................... - 0x07, 0xf0, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO--------------------OOOOOOO----..................... - 0x03, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOO-----..................... - 0x03, 0xf8, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOO------------------OOOOOO------..................... - 0x01, 0xf8, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // -------OOOOOO-----------------OOOOOOO------..................... - 0x01, 0xfc, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOO----------------OOOOOO-------..................... - 0x00, 0xfe, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOO--------------OOOOOOO-------..................... - 0x00, 0x7e, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOOO--------..................... - 0x00, 0x7f, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOO------------OOOOOO---------..................... - 0x00, 0x3f, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOOO---------..................... - 0x00, 0x3f, 0x80, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO----------OOOOOO----------..................... - 0x00, 0x1f, 0xc0, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOOO--------OOOOOOO----------..................... - 0x00, 0x0f, 0xc0, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOOO-----------..................... - 0x00, 0x0f, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO------OOOOOO------------..................... - 0x00, 0x07, 0xe0, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOOOO------------..................... - 0x00, 0x07, 0xf1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO---OOOOOOO-------------..................... - 0x00, 0x03, 0xf9, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO--OOOOOOO-------------..................... - 0x00, 0x01, 0xfb, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOOOO--------------..................... - 0x00, 0x01, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOO---------------..................... - 0x00, 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOO---------------..................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO----------------..................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO-----------------..................... - 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOO-----------------..................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO------------------..................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO------------------..................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO-----------------..................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO----------------..................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO----------------..................... - 0x00, 0x01, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOO---------------..................... - 0x00, 0x03, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO-OOOOOO---------------..................... - 0x00, 0x03, 0xf3, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOOO--------------..................... - 0x00, 0x07, 0xf1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO---OOOOOOO-------------..................... - 0x00, 0x0f, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----OOOOOO-------------..................... - 0x00, 0x0f, 0xc0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOOO------------..................... - 0x00, 0x1f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-------OOOOOO------------..................... - 0x00, 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOOO-----------..................... - 0x00, 0x3f, 0x80, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO---------OOOOOOO----------..................... - 0x00, 0x7f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOO-----------OOOOOO----------..................... - 0x00, 0x7e, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOOO---------..................... - 0x00, 0xfe, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOO-------------OOOOOO---------..................... - 0x00, 0xfc, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOOO--------..................... - 0x01, 0xfc, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOOO-------..................... - 0x03, 0xf8, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOO------..................... - 0x07, 0xf0, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------OOOOOO------..................... - 0x07, 0xe0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO--------------------OOOOOOO-----..................... - 0x0f, 0xe0, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOOO----..................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO----..................... - 0x1f, 0x80, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOOO---..................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO---..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - - // ASCII: 89, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0xfe, 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // OOOOOOO------------------------OOOOOOO.......................... - 0x7f, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // -OOOOOOO----------------------OOOOOOO-.......................... - 0x3f, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --OOOOOO----------------------OOOOOO--.......................... - 0x3f, 0x80, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // --OOOOOOO--------------------OOOOOOO--.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0xc0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOO------------------OOOOOOO---.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO----------OOOOOOO-------.......................... - 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO----------OOOOOO--------.......................... - 0x00, 0xfe, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO--------OOOOOOO--------.......................... - 0x00, 0x7e, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO--------OOOOOO---------.......................... - 0x00, 0x3f, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO------OOOOOOO---------.......................... - 0x00, 0x3f, 0x87, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO----OOOOOOO----------.......................... - 0x00, 0x1f, 0x87, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----OOOOOO-----------.......................... - 0x00, 0x1f, 0xcf, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO--OOOOOOO-----------.......................... - 0x00, 0x0f, 0xcf, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO--OOOOOO------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOO--------------.......................... - 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOO--------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 90, char width: 43 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----..................... - 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----..................... - 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----..................... - 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----..................... - 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----..................... - 0x00, 0x00, 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, // -------------------------------OOOOOOOO----..................... - 0x00, 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // -------------------------------OOOOOOO-----..................... - 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ------------------------------OOOOOOO------..................... - 0x00, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----------------------------OOOOOOO-------..................... - 0x00, 0x00, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ----------------------------OOOOOOOO-------..................... - 0x00, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----------------------------OOOOOOO--------..................... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------------------OOOOOOO---------..................... - 0x00, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOO---------..................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO----------..................... - 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOOO-----------..................... - 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOOOO------------..................... - 0x00, 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOOO------------..................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO-------------..................... - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO--------------..................... - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO---------------..................... - 0x00, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOO---------------..................... - 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOO----------------..................... - 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOO-----------------..................... - 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOO-----------------..................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO------------------..................... - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOO-------------------..................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO--------------------..................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO--------------------..................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------------..................... - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO----------------------..................... - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-----------------------..................... - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOO-----------------------..................... - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO------------------------..................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-------------------------..................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOO-------------------------..................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO--------------------------..................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------------------------..................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO----------------------------..................... - 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO----------------------------..................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-----------------------------..................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOO-------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - - // ASCII: 91, char width: 24 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - - // ASCII: 92, char width: 21 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOO----------------........................................... - 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOO---------------........................................... - 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOO---------------........................................... - 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOO---------------........................................... - 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOO---------------........................................... - 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO--------------........................................... - 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO--------------........................................... - 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO--------------........................................... - 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOO-------------........................................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------........................................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------........................................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------........................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------........................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------........................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------........................................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------........................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------........................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------........................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------........................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------........................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------........................................... - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-------........................................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-------........................................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-------........................................... - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO------........................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------........................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------........................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------........................................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----........................................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----........................................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----........................................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----........................................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO----........................................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO----........................................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO----........................................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---........................................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---........................................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---........................................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---........................................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--........................................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--........................................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--........................................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-........................................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-........................................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-........................................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-........................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - - // ASCII: 93, char width: 24 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - - // ASCII: 94, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO---------------------............ - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO---------------------............ - 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOO--------------------............ - 0x00, 0x00, 0x1f, 0xff, 0x80, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOOO-------------------............ - 0x00, 0x00, 0x3f, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOO------------------............ - 0x00, 0x00, 0x7f, 0x9f, 0xe0, 0x00, 0x00, 0x00, // -----------------OOOOOOOO--OOOOOOOO-----------------............ - 0x00, 0x00, 0xff, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOOOOOO----OOOOOOOO----------------............ - 0x00, 0x01, 0xfe, 0x07, 0xf8, 0x00, 0x00, 0x00, // ---------------OOOOOOOO------OOOOOOOO---------------............ - 0x00, 0x03, 0xfc, 0x03, 0xfc, 0x00, 0x00, 0x00, // --------------OOOOOOOO--------OOOOOOOO--------------............ - 0x00, 0x03, 0xf8, 0x01, 0xfc, 0x00, 0x00, 0x00, // --------------OOOOOOO----------OOOOOOO--------------............ - 0x00, 0x07, 0xf0, 0x00, 0xfe, 0x00, 0x00, 0x00, // -------------OOOOOOO------------OOOOOOO-------------............ - 0x00, 0x0f, 0xe0, 0x00, 0x7f, 0x00, 0x00, 0x00, // ------------OOOOOOO--------------OOOOOOO------------............ - 0x00, 0x1f, 0xc0, 0x00, 0x3f, 0x80, 0x00, 0x00, // -----------OOOOOOO----------------OOOOOOO-----------............ - 0x00, 0x3f, 0x80, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ----------OOOOOOO------------------OOOOOOO----------............ - 0x00, 0x7f, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ---------OOOOOOO--------------------OOOOOOO---------............ - 0x00, 0xfe, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // --------OOOOOOO----------------------OOOOOOO--------............ - 0x01, 0xfc, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // -------OOOOOOO------------------------OOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 95, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................................ - 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................................ - 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................................ - 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................................ - 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................................ - - // ASCII: 96, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------................................. - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO------------------................................. - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO-----------------................................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------------................................. - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------------................................. - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO---------------................................. - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------------................................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO--------------................................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-------------................................. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOO-------------................................. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - - // ASCII: 97, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO--------------.......................... - 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOO------------.......................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO----------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xe0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----------OOOOOOOO--------.......................... - 0x03, 0x80, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOO---------------OOOOOOO-------.......................... - 0x02, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------O------------------OOOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x7f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xfe, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO------------OOOOO------.......................... - 0x07, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOO------.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------OOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO------------OOOOOOOOO------.......................... - 0x07, 0xf0, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------OOOOOOOOOOO------.......................... - 0x07, 0xfe, 0x1f, 0xdf, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----OOOOOOO-OOOOO------.......................... - 0x03, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO--OOOOO------.......................... - 0x01, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---OOOOO------.......................... - 0x00, 0xff, 0xfe, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO----OOOOO------.......................... - 0x00, 0x7f, 0xfc, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO-----OOOOO------.......................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 98, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------OO----------------......................... - 0x03, 0xe0, 0x7f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOOOOO------------......................... - 0x03, 0xe1, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOO----------......................... - 0x03, 0xe3, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOOO---------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xef, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOOOOOOOOOOOOOOO-------......................... - 0x03, 0xef, 0x80, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOO-OOOOO--------OOOOOOOO------......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xfc, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOOO-----......................... - 0x03, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO--------------OOOOOO-----......................... - 0x03, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOOO----......................... - 0x03, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO----------------OOOOOO----......................... - 0x03, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOOO----......................... - 0x03, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO--------------OOOOOO-----......................... - 0x03, 0xfc, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOOO-----......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xff, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOO---------OOOOOOOO------......................... - 0x03, 0xef, 0xc1, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOO-----OOOOOOOOO-------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xe3, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOO----------......................... - 0x03, 0xe0, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOOOOOOOOO-----------......................... - 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOO-------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 99, char width: 34 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOO-----------.............................. - 0x00, 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOO-------.............................. - 0x00, 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x3f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO----.............................. - 0x01, 0xff, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO----------OOOO----.............................. - 0x01, 0xfc, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO--------------OO----.............................. - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO---------------------.............................. - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------.............................. - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------.............................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-----------------------.............................. - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-----------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-----------------------.............................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-----------------------.............................. - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------.............................. - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO---------------------.............................. - 0x03, 0xfc, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO---------------O----.............................. - 0x01, 0xfe, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO------------OOO----.............................. - 0x00, 0xff, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOO-----OOOOOOO----.............................. - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x3f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x1f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOO------.............................. - 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOO---------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - - // ASCII: 100, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0xc0, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------OO----------OOOOOO-----......................... - 0x00, 0x0f, 0xfe, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO-----OOOOOO-----......................... - 0x00, 0x1f, 0xff, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x01, 0xfe, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x01, 0xfc, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOOOOO-----......................... - 0x01, 0xff, 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOO-----OOOOOOOOOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---OOOOOO-----......................... - 0x00, 0x1f, 0xff, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----OOOOOO-----......................... - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 101, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOO----------------.......................... - 0x00, 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOO------------.......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOO-------.......................... - 0x01, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO--------OOOOOOOO------.......................... - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOOO---.......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-----------------------------.......................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO--------------------------.......................... - 0x03, 0xf8, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------O----.......................... - 0x03, 0xfc, 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-----------------OOO----.......................... - 0x01, 0xff, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOO-------------OOOOO----.......................... - 0x00, 0xff, 0xe0, 0x7f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO------OOOOOOOOO----.......................... - 0x00, 0x7f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOO-----.......................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 102, char width: 22 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO......................................... - 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO......................................... - 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOO......................................... - 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOO......................................... - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO......................................... - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO--------.......................................... - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO---------.......................................... - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO---------.......................................... - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO---------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOO.......................................... - 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOO.......................................... - 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOO.......................................... - 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOO.......................................... - 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOO.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - - // ASCII: 103, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OO---------------------......................... - 0x00, 0x0f, 0xfe, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO-----OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO----OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x01, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x01, 0xfe, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOOOO-----......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO-------------OOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOOOO-----......................... - 0x03, 0xfc, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO---------OOOOOOOOOOO-----......................... - 0x01, 0xff, 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOO-----OOOOOOOOOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---OOOOOO-----......................... - 0x00, 0x1f, 0xff, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----OOOOOO-----......................... - 0x00, 0x03, 0xf8, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOO-------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ----------------------------OOOOO------......................... - 0x00, 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ----------------------------OOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO-------......................... - 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOOO-------......................... - 0x00, 0xc0, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OO--------------OOOOOOO--------......................... - 0x00, 0xf0, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOO----------OOOOOOOOO--------......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x00, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOO-----------......................... - 0x00, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO------------......................... - 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO---------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 104, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------OOO---------------......................... - 0x03, 0xe0, 0x7f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOOOOOO-----------......................... - 0x03, 0xe1, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOO----------......................... - 0x03, 0xe3, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOOO---------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xef, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOOOOOOOOOOOOOOO-------......................... - 0x03, 0xef, 0x80, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOO-------OOOOOOOO-------......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xfc, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOO------......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO------......................... - 0x03, 0xf8, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 105, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - - // ASCII: 106, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO------............................................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO------............................................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO------............................................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO-------............................................... - 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOO-------............................................... - 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOO--------............................................... - 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOO--------............................................... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOO---------............................................... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - - // ASCII: 107, char width: 36 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOOO-............................ - 0x03, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----------------OOOOOOO--............................ - 0x03, 0xe0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOO---------------OOOOOOO---............................ - 0x03, 0xe0, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------------OOOOOOO----............................ - 0x03, 0xe0, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------OOOOOOO-----............................ - 0x03, 0xe0, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------------OOOOOOO------............................ - 0x03, 0xe0, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------OOOOOOOO-------............................ - 0x03, 0xe0, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------OOOOOOOO--------............................ - 0x03, 0xe0, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOOOOO---------............................ - 0x03, 0xe0, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOOOO----------............................ - 0x03, 0xe0, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOOO-----------............................ - 0x03, 0xe0, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOOOOO------------............................ - 0x03, 0xe1, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOO-------------............................ - 0x03, 0xe3, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOO--------------............................ - 0x03, 0xe7, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOO---------------............................ - 0x03, 0xef, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOOO----------------............................ - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO------------------............................ - 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO-------------------............................ - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO------------------............................ - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO------------------............................ - 0x03, 0xef, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOO-----------------............................ - 0x03, 0xe7, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOO----------------............................ - 0x03, 0xe3, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOO---------------............................ - 0x03, 0xe1, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOO--------------............................ - 0x03, 0xe0, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOOOO-------------............................ - 0x03, 0xe0, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOO------------............................ - 0x03, 0xe0, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOOO-----------............................ - 0x03, 0xe0, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOOOO----------............................ - 0x03, 0xe0, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------OOOOOOO---------............................ - 0x03, 0xe0, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------OOOOOOO--------............................ - 0x03, 0xe0, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------OOOOOOOO-------............................ - 0x03, 0xe0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----------OOOOOOOO------............................ - 0x03, 0xe0, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------------OOOOOOOO-----............................ - 0x03, 0xe0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------OOOOOOOO----............................ - 0x03, 0xe0, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOO--------------OOOOOOOO---............................ - 0x03, 0xe0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOO---------------OOOOOOO---............................ - 0x03, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----------------OOOOOOO--............................ - 0x03, 0xe0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOOO-............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - - // ASCII: 108, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - - // ASCII: 109, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x38, 0x00, 0x00, // ---------------------OOO------------------OOO---------------.... - 0x03, 0xe0, 0x7f, 0xe0, 0x01, 0xff, 0x80, 0x00, // ------OOOOO------OOOOOOOOOO------------OOOOOOOOOO-----------.... - 0x03, 0xe1, 0xff, 0xf8, 0x07, 0xff, 0xc0, 0x00, // ------OOOOO----OOOOOOOOOOOOOO--------OOOOOOOOOOOOO----------.... - 0x03, 0xe3, 0xff, 0xfc, 0x0f, 0xff, 0xf0, 0x00, // ------OOOOO---OOOOOOOOOOOOOOOO------OOOOOOOOOOOOOOOO--------.... - 0x03, 0xe7, 0xff, 0xfc, 0x1f, 0xff, 0xf0, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOO-----OOOOOOOOOOOOOOOOO--------.... - 0x03, 0xef, 0xff, 0xfe, 0x3f, 0xff, 0xf8, 0x00, // ------OOOOO-OOOOOOOOOOOOOOOOOOO---OOOOOOOOOOOOOOOOOOO-------.... - 0x03, 0xef, 0x80, 0xfe, 0x7e, 0x03, 0xf8, 0x00, // ------OOOOO-OOOOO-------OOOOOOO--OOOOOO-------OOOOOOO-------.... - 0x03, 0xfe, 0x00, 0x7f, 0x78, 0x01, 0xfc, 0x00, // ------OOOOOOOOO----------OOOOOOO-OOOO----------OOOOOOO------.... - 0x03, 0xfc, 0x00, 0x3f, 0xf0, 0x00, 0xfc, 0x00, // ------OOOOOOOO------------OOOOOOOOOO------------OOOOOO------.... - 0x03, 0xf8, 0x00, 0x3f, 0xe0, 0x00, 0xfc, 0x00, // ------OOOOOOO-------------OOOOOOOOO-------------OOOOOO------.... - 0x03, 0xf8, 0x00, 0x1f, 0xe0, 0x00, 0x7e, 0x00, // ------OOOOOOO--------------OOOOOOOO--------------OOOOOO-----.... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x7e, 0x00, // ------OOOOOO---------------OOOOOOO---------------OOOOOO-----.... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x7e, 0x00, // ------OOOOOO---------------OOOOOOO---------------OOOOOO-----.... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x7e, 0x00, // ------OOOOOO---------------OOOOOOO---------------OOOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 110, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x03, 0xe0, 0x7f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOOOOOO-----------......................... - 0x03, 0xe1, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOO----------......................... - 0x03, 0xe3, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOOO---------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xef, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOOOOOOOOOOOOOOO-------......................... - 0x03, 0xef, 0x80, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOO-------OOOOOOOO-------......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xfc, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOO------......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO------......................... - 0x03, 0xf8, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 111, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OO------------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO-----------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x01, 0xfe, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOO-------.......................... - 0x03, 0xfc, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------OOOOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOO----.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOO-------.......................... - 0x01, 0xff, 0x87, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOOO-------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOO------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 112, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OO----------------......................... - 0x03, 0xe0, 0x7f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOOOOO------------......................... - 0x03, 0xe1, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOO----------......................... - 0x03, 0xe3, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOOO---------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xef, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOOOOOOOOOOOOOOO-------......................... - 0x03, 0xef, 0x80, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOO-OOOOO--------OOOOOOOO------......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xfc, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOOO-----......................... - 0x03, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO--------------OOOOOO-----......................... - 0x03, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOOO----......................... - 0x03, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO----------------OOOOOO----......................... - 0x03, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOOO----......................... - 0x03, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO--------------OOOOOO-----......................... - 0x03, 0xfc, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOOO-----......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xff, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOO---------OOOOOOOO------......................... - 0x03, 0xef, 0xc1, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOO-----OOOOOOOOO-------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xe3, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOO----------......................... - 0x03, 0xe0, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOOOOOOOOO-----------......................... - 0x03, 0xe0, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOOOO-------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 113, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OO---------------------......................... - 0x00, 0x0f, 0xfe, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO-----OOOOOO-----......................... - 0x00, 0x1f, 0xff, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x01, 0xfe, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x01, 0xfc, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOOOOO-----......................... - 0x01, 0xff, 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOO-----OOOOOOOOOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---OOOOOO-----......................... - 0x00, 0x1f, 0xff, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----OOOOOO-----......................... - 0x00, 0x03, 0xf8, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOO-------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 114, char width: 26 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO--...................................... - 0x03, 0xe0, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOOOO...................................... - 0x03, 0xe1, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOO...................................... - 0x03, 0xe3, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOO...................................... - 0x03, 0xe7, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOO...................................... - 0x03, 0xef, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOOOOOOOOO...................................... - 0x03, 0xef, 0x80, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOO-------OO...................................... - 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOO----------...................................... - 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO------------...................................... - 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO------------...................................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-------------...................................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-------------...................................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------...................................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------...................................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - - // ASCII: 115, char width: 32 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO------------................................ - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO-------................................ - 0x00, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOO----................................ - 0x01, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOO----................................ - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO----................................ - 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOO----................................ - 0x07, 0xf0, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-----------OOOOO----................................ - 0x0f, 0xc0, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------OO----................................ - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------................................ - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------................................ - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------................................ - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------................................ - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------................................ - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------................................ - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------................................ - 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOO--------------------................................ - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO-----------------................................ - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO-------------................................ - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO----------................................ - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO--------................................ - 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO------................................ - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO-----................................ - 0x00, 0x01, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOO----................................ - 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOO----................................ - 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOO---................................ - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO---................................ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO---................................ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO---................................ - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOO---................................ - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOO---................................ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO---................................ - 0x10, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---O-------------------OOOOOO---................................ - 0x1c, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---OOO----------------OOOOOOO---................................ - 0x1f, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------OOOOOOO----................................ - 0x1f, 0xf0, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOO------OOOOOOOOOO----................................ - 0x1f, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOO-----................................ - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO------................................ - 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOO-------................................ - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO---------................................ - 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - - // ASCII: 116, char width: 24 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO-........................................ - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO-........................................ - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO-........................................ - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO-........................................ - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO-........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-----------........................................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO----------........................................ - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-........................................ - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO-........................................ - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO-........................................ - 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO-........................................ - 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO-........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - - // ASCII: 117, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x01, 0xfc, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOOOOO-----......................... - 0x01, 0xff, 0x9f, 0xef, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOO--OOOOOOOO-OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---OOOOOO-----......................... - 0x00, 0x1f, 0xfe, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO-----OOOOOO-----......................... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 118, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x3f, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --OOOOOO---------------------OOOOOO--........................... - 0x3f, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --OOOOOO---------------------OOOOOO--........................... - 0x1f, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOO--------------------OOOOOO---........................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO---........................... - 0x1f, 0x80, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOO------........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x03, 0xf0, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOO-------........................... - 0x01, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOOO-------........................... - 0x01, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOOO-------........................... - 0x01, 0xf8, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOO---------........................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO---------........................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO---------........................... - 0x00, 0x7e, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO------OOOOOO----------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x3f, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----OOOOOO-----------........................... - 0x00, 0x1f, 0x8f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---OOOOOO-----------........................... - 0x00, 0x1f, 0x8f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---OOOOOO-----------........................... - 0x00, 0x1f, 0x9f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--OOOOOO------------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOO--------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOO---------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - - // ASCII: 119, char width: 51 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x1f, 0x00, 0x03, 0xf8, 0x00, 0x1f, 0x00, 0x00, // ---OOOOO--------------OOOOOOO--------------OOOOO---............. - 0x1f, 0x00, 0x03, 0xf8, 0x00, 0x3f, 0x00, 0x00, // ---OOOOO--------------OOOOOOO-------------OOOOOO---............. - 0x1f, 0x80, 0x03, 0xf8, 0x00, 0x3f, 0x00, 0x00, // ---OOOOOO-------------OOOOOOO-------------OOOOOO---............. - 0x1f, 0x80, 0x07, 0xf8, 0x00, 0x3e, 0x00, 0x00, // ---OOOOOO------------OOOOOOOO-------------OOOOO----............. - 0x0f, 0x80, 0x07, 0xfc, 0x00, 0x3e, 0x00, 0x00, // ----OOOOO------------OOOOOOOOO------------OOOOO----............. - 0x0f, 0x80, 0x07, 0xfc, 0x00, 0x7e, 0x00, 0x00, // ----OOOOO------------OOOOOOOOO-----------OOOOOO----............. - 0x0f, 0xc0, 0x07, 0xfc, 0x00, 0x7e, 0x00, 0x00, // ----OOOOOO-----------OOOOOOOOO-----------OOOOOO----............. - 0x0f, 0xc0, 0x0f, 0xfc, 0x00, 0x7c, 0x00, 0x00, // ----OOOOOO----------OOOOOOOOOO-----------OOOOO-----............. - 0x07, 0xc0, 0x0f, 0xbe, 0x00, 0x7c, 0x00, 0x00, // -----OOOOO----------OOOOO-OOOOO----------OOOOO-----............. - 0x07, 0xc0, 0x0f, 0xbe, 0x00, 0xfc, 0x00, 0x00, // -----OOOOO----------OOOOO-OOOOO---------OOOOOO-----............. - 0x07, 0xe0, 0x0f, 0xbe, 0x00, 0xfc, 0x00, 0x00, // -----OOOOOO---------OOOOO-OOOOO---------OOOOOO-----............. - 0x07, 0xe0, 0x1f, 0x3e, 0x00, 0xfc, 0x00, 0x00, // -----OOOOOO--------OOOOO--OOOOO---------OOOOOO-----............. - 0x07, 0xe0, 0x1f, 0x1f, 0x00, 0xf8, 0x00, 0x00, // -----OOOOOO--------OOOOO---OOOOO--------OOOOO------............. - 0x03, 0xe0, 0x1f, 0x1f, 0x01, 0xf8, 0x00, 0x00, // ------OOOOO--------OOOOO---OOOOO-------OOOOOO------............. - 0x03, 0xf0, 0x1f, 0x1f, 0x01, 0xf8, 0x00, 0x00, // ------OOOOOO-------OOOOO---OOOOO-------OOOOOO------............. - 0x03, 0xf0, 0x3e, 0x1f, 0x01, 0xf8, 0x00, 0x00, // ------OOOOOO------OOOOO----OOOOO-------OOOOOO------............. - 0x03, 0xf0, 0x3e, 0x0f, 0x81, 0xf0, 0x00, 0x00, // ------OOOOOO------OOOOO-----OOOOO------OOOOO-------............. - 0x01, 0xf0, 0x3e, 0x0f, 0x81, 0xf0, 0x00, 0x00, // -------OOOOO------OOOOO-----OOOOO------OOOOO-------............. - 0x01, 0xf8, 0x3e, 0x0f, 0x83, 0xf0, 0x00, 0x00, // -------OOOOOO-----OOOOO-----OOOOO-----OOOOOO-------............. - 0x01, 0xf8, 0x3c, 0x0f, 0x83, 0xf0, 0x00, 0x00, // -------OOOOOO-----OOOO------OOOOO-----OOOOOO-------............. - 0x01, 0xf8, 0x7c, 0x07, 0x83, 0xe0, 0x00, 0x00, // -------OOOOOO----OOOOO-------OOOO-----OOOOO--------............. - 0x00, 0xf8, 0x7c, 0x07, 0xc3, 0xe0, 0x00, 0x00, // --------OOOOO----OOOOO-------OOOOO----OOOOO--------............. - 0x00, 0xf8, 0x7c, 0x07, 0xc7, 0xe0, 0x00, 0x00, // --------OOOOO----OOOOO-------OOOOO---OOOOOO--------............. - 0x00, 0xfc, 0x7c, 0x07, 0xc7, 0xe0, 0x00, 0x00, // --------OOOOOO---OOOOO-------OOOOO---OOOOOO--------............. - 0x00, 0xfc, 0xf8, 0x03, 0xc7, 0xc0, 0x00, 0x00, // --------OOOOOO--OOOOO---------OOOO---OOOOO---------............. - 0x00, 0x7c, 0xf8, 0x03, 0xe7, 0xc0, 0x00, 0x00, // ---------OOOOO--OOOOO---------OOOOO--OOOOO---------............. - 0x00, 0x7c, 0xf8, 0x03, 0xef, 0xc0, 0x00, 0x00, // ---------OOOOO--OOOOO---------OOOOO-OOOOOO---------............. - 0x00, 0x7e, 0xf8, 0x03, 0xef, 0xc0, 0x00, 0x00, // ---------OOOOOO-OOOOO---------OOOOO-OOOOOO---------............. - 0x00, 0x7f, 0xf0, 0x03, 0xef, 0xc0, 0x00, 0x00, // ---------OOOOOOOOOOO----------OOOOO-OOOOOO---------............. - 0x00, 0x7f, 0xf0, 0x01, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOOOOO-----------OOOOOOOOOO----------............. - 0x00, 0x3f, 0xf0, 0x01, 0xff, 0x80, 0x00, 0x00, // ----------OOOOOOOOOO-----------OOOOOOOOOO----------............. - 0x00, 0x3f, 0xf0, 0x01, 0xff, 0x80, 0x00, 0x00, // ----------OOOOOOOOOO-----------OOOOOOOOOO----------............. - 0x00, 0x3f, 0xe0, 0x01, 0xff, 0x80, 0x00, 0x00, // ----------OOOOOOOOO------------OOOOOOOOOO----------............. - 0x00, 0x3f, 0xe0, 0x00, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOO-------------OOOOOOOO-----------............. - 0x00, 0x1f, 0xe0, 0x00, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------OOOOOOOO-----------............. - 0x00, 0x1f, 0xe0, 0x00, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------OOOOOOOO-----------............. - 0x00, 0x1f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOO--------------OOOOOOOO-----------............. - 0x00, 0x1f, 0xc0, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----------OOOOOOO---------------OOOOOO------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - - // ASCII: 120, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x1f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------OOOOOOO---........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x0f, 0xe0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOOO---------------OOOOOOO----........................... - 0x07, 0xf0, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------OOOOOOO-----........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x03, 0xf8, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOO------........................... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0xfe, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO-------OOOOOOO--------........................... - 0x00, 0x7f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO-----OOOOOOO---------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x3f, 0x8f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO---OOOOOOO----------........................... - 0x00, 0x1f, 0xdf, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-OOOOOOO-----------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOO------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------........................... - 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOO---------------........................... - 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOO--------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOO-------------........................... - 0x00, 0x1f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOO------------........................... - 0x00, 0x1f, 0x9f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--OOOOOOO-----------........................... - 0x00, 0x3f, 0x8f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO---OOOOOO-----------........................... - 0x00, 0x7f, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO----OOOOOOO----------........................... - 0x00, 0x7e, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO------OOOOOOO---------........................... - 0x00, 0xfe, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO-------OOOOOO---------........................... - 0x01, 0xfc, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO--------OOOOOOO--------........................... - 0x01, 0xf8, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO----------OOOOOOO-------........................... - 0x03, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOO-------........................... - 0x07, 0xf0, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO------------OOOOOOO------........................... - 0x07, 0xe0, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------OOOOOOO-----........................... - 0x0f, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO---------------OOOOOO-----........................... - 0x1f, 0xc0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ---OOOOOOO----------------OOOOOOO----........................... - 0x1f, 0x80, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO------------------OOOOOOO---........................... - 0x3f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --OOOOOOO-------------------OOOOOO---........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - - // ASCII: 121, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x3f, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --OOOOOO---------------------OOOOOO--........................... - 0x3f, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // --OOOOOO---------------------OOOOO---........................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO---........................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO---........................... - 0x1f, 0x80, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---OOOOOO------------------OOOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........................... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x01, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOOO-------........................... - 0x01, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOOO-------........................... - 0x01, 0xf8, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO----------OOOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0x7c, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO--------OOOOOO---------........................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO---------........................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO---------........................... - 0x00, 0x3e, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------OOOOOO----------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x1f, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO----OOOOOO-----------........................... - 0x00, 0x1f, 0x8f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---OOOOOO-----------........................... - 0x00, 0x0f, 0x8f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---OOOOO------------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO--------------........................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------........................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------........................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO----------------........................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO------------------........................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO------------------........................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------------------........................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-------------------........................... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO--------------------........................... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO--------------------........................... - 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOO---------------------........................... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----------------------........................... - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO-----------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - - // ASCII: 122, char width: 33 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---............................... - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO----............................... - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO----............................... - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO-----............................... - 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOO------............................... - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO-------............................... - 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOO-------............................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO--------............................... - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOO---------............................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------............................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------............................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----------............................... - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO------------............................... - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-------------............................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO--------------............................... - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO--------------............................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO---------------............................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO----------------............................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO-----------------............................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO-----------------............................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------------------............................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------------------............................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------............................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------............................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------------............................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO----------------------............................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------............................... - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO------------------------............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - - // ASCII: 123, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOO-------......................... - 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x3f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOO----------......................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO--------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----------------......................... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO------------------......................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO-------------------......................... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO--------------------......................... - 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOO----------------------......................... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO--------------------......................... - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO------------------......................... - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO------------------......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO--------------......................... - 0x00, 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOO-------......................... - 0x00, 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOO-------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 124, char width: 21 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - - // ASCII: 125, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOO----------------------......................... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO--------------------......................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO-------------------......................... - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO------------------......................... - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO------------------......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOO-------------......................... - 0x00, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOO-------......................... - 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOO-------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----------------......................... - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO------------------......................... - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO------------------......................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO-------------------......................... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO--------------------......................... - 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO-----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 126, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x08, 0x00, 0x00, // ----------------OOOO------------------------O-------............ - 0x00, 0x0f, 0xff, 0x00, 0x00, 0x18, 0x00, 0x00, // ------------OOOOOOOOOOOO-------------------OO-------............ - 0x00, 0x3f, 0xff, 0xc0, 0x00, 0x38, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOO----------------OOO-------............ - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0xf8, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO-----------OOOOO-------............ - 0x00, 0xff, 0xff, 0xff, 0x07, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOO-----OOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xfc, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, // -------OOOOOOO-------OOOOOOOOOOOOOOOOOOOOOOO--------............ - 0x01, 0xf0, 0x00, 0xff, 0xff, 0xe0, 0x00, 0x00, // -------OOOOO------------OOOOOOOOOOOOOOOOOOO---------............ - 0x01, 0xc0, 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, // -------OOO----------------OOOOOOOOOOOOOOO-----------............ - 0x01, 0x80, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, // -------OO--------------------OOOOOOOOOO-------------............ - 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------O---------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // No glyph for ASCII: 127, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 128, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 129, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 130, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 131, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 132, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 133, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 134, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 135, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 136, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 137, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 138, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 139, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 140, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 141, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 142, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 143, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 144, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 145, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 146, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 147, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 148, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 149, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 150, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 151, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 152, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 153, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 154, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 155, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 156, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 157, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 158, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 159, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // ASCII: 160, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // ASCII: 161, char width: 25 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO----------....................................... - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO----------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - - // ASCII: 162, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------OOOO---------------......................... - 0x00, 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOO----------......................... - 0x00, 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x0f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x3f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x7f, 0xc7, 0x0f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOO---OOO----OOOO-------......................... - 0x00, 0xff, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO-----OOO------OO-------......................... - 0x00, 0xfe, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------OOO---------------......................... - 0x01, 0xfc, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------OOO---------------......................... - 0x01, 0xf8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO--------OOO---------------......................... - 0x03, 0xf8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO--------OOO---------------......................... - 0x03, 0xf0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOO---------------......................... - 0x03, 0xf0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOO---------------......................... - 0x03, 0xf0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOO---------------......................... - 0x03, 0xf0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x03, 0xf0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOO---------------......................... - 0x03, 0xf0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOO---------------......................... - 0x03, 0xf0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOO---------------......................... - 0x03, 0xf8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO--------OOO---------------......................... - 0x01, 0xf8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO--------OOO---------------......................... - 0x01, 0xfc, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------OOO---------------......................... - 0x00, 0xfe, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------OOO---------------......................... - 0x00, 0xff, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO-----OOO-------O-------......................... - 0x00, 0x7f, 0x87, 0x07, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOO----OOO-----OOO-------......................... - 0x00, 0x3f, 0xf7, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO-OOO-OOOOOOO-------......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x0f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOO---------......................... - 0x00, 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOO------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 163, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOO----------......................... - 0x00, 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOO------......................... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO------......................... - 0x00, 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x07, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOOOOOO-----OOOOO------......................... - 0x00, 0x07, 0xf0, 0x01, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOOO-----------OO------......................... - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO--------------------......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------------......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------------......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------------......................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO---------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x07, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x07, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x07, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x07, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x07, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x0f, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x0f, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x0f, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x0f, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x0f, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x0f, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 164, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x02, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, // ------O-------------------------OO-----......................... - 0x07, 0x00, 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // -----OOO-----------------------OOOO----......................... - 0x0f, 0x80, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ----OOOOO----------------------OOOOO---......................... - 0x1f, 0xc0, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ---OOOOOOO--------------------OOOOOOO--......................... - 0x0f, 0xe0, 0x7e, 0x07, 0xf0, 0x00, 0x00, 0x00, // ----OOOOOOO------OOOOOO------OOOOOOO---......................... - 0x07, 0xf3, 0xff, 0x8f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOO--OOOOOOOOOOO---OOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x01, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0xff, 0xe7, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO--OOOOOOOOOO--------......................... - 0x00, 0x7f, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO--------OOOOOOO--------......................... - 0x00, 0x7e, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO----------OOOOOO--------......................... - 0x00, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO------------OOOOOO-------......................... - 0x00, 0xf8, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------------OOOOO-------......................... - 0x01, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------OOOOO-------......................... - 0x01, 0xf0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------------OOOO-------......................... - 0x01, 0xf0, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOO----------------OOOOO------......................... - 0x01, 0xf0, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOO----------------OOOOO------......................... - 0x01, 0xf0, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOO----------------OOOOO------......................... - 0x01, 0xf0, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOO----------------OOOOO------......................... - 0x01, 0xf0, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOO----------------OOOOO------......................... - 0x01, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------OOOOO-------......................... - 0x01, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------OOOOO-------......................... - 0x00, 0xf8, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------------OOOOO-------......................... - 0x00, 0xfc, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO------------OOOOO--------......................... - 0x00, 0x7e, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO----------OOOOOO--------......................... - 0x00, 0x7f, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO-------OOOOOOOO--------......................... - 0x00, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO-------......................... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x07, 0xf7, 0xff, 0xdf, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO-OOOOOOOOOOOOO-OOOOOOO-----......................... - 0x07, 0xe1, 0xff, 0x8f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO----OOOOOOOOOO---OOOOOOO----......................... - 0x0f, 0xe0, 0x3c, 0x07, 0xf0, 0x00, 0x00, 0x00, // ----OOOOOOO-------OOOO-------OOOOOOO---......................... - 0x1f, 0xc0, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ---OOOOOOO--------------------OOOOOOO--......................... - 0x0f, 0x80, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ----OOOOO----------------------OOOOO---......................... - 0x07, 0x00, 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, // -----OOO------------------------OOO----......................... - 0x02, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, // ------O--------------------------O-----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 165, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x1f, 0x80, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ---OOOOOO----------------------OOOOOO--......................... - 0x1f, 0x80, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOO---------------------OOOOOO---......................... - 0x0f, 0xc0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ----OOOOOO--------------------OOOOOO---......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x07, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO------------------OOOOOO----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO------......................... - 0x01, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOO--------------OOOOOO------......................... - 0x01, 0xf8, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------------OOOOOO-------......................... - 0x00, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO------------OOOOOO-------......................... - 0x00, 0xfc, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO-----------OOOOOO--------......................... - 0x00, 0x7c, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------OOOOOO--------......................... - 0x00, 0x7e, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------OOOOOO---------......................... - 0x00, 0x3e, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------OOOOOO---------......................... - 0x00, 0x3f, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------OOOOO----------......................... - 0x00, 0x1f, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-------OOOOOO----------......................... - 0x00, 0x1f, 0x81, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO------OOOOO-----------......................... - 0x00, 0x0f, 0x83, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-----OOOOOO-----------......................... - 0x0f, 0xff, 0xc3, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOO----OOOOOOOOOOOOO----......................... - 0x0f, 0xff, 0xc7, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOO---OOOOOOOOOOOOOO----......................... - 0x0f, 0xff, 0xe7, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO--OOOOOOOOOOOOOO----......................... - 0x0f, 0xff, 0xef, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO-OOOOOOOOOOOOOOO----......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x00, 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOO--------------......................... - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO---------------......................... - 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOO---------------......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 166, char width: 21 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - - // ASCII: 167, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO----------................................. - 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOO-------................................. - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO------................................. - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO------................................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO------................................. - 0x03, 0xf8, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO--------OOOO------................................. - 0x07, 0xe0, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------O------................................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------................................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO---------------------................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO---------------------................................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------................................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------................................. - 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO-----------------................................. - 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO----------------................................. - 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO---------------................................. - 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOO-------------................................. - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO------------................................. - 0x07, 0xef, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-OOOOOOOOO----------................................. - 0x07, 0xc7, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO---OOOOOOOOO---------................................. - 0x0f, 0x81, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------OOOOOOOOO-------................................. - 0x0f, 0x80, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-------OOOOOOOOO------................................. - 0x1f, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------OOOOOOOO-----................................. - 0x1f, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-----------OOOOOOOO----................................. - 0x1f, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------OOOOOOO----................................. - 0x1f, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------OOOOOOO---................................. - 0x1f, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO--------------OOOOOO---................................. - 0x1f, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------OOOOO---................................. - 0x1f, 0x80, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO--------------OOOOO---................................. - 0x1f, 0xc0, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO-------------OOOOO---................................. - 0x0f, 0xe0, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO------------OOOOO---................................. - 0x07, 0xf0, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-----------OOOOO---................................. - 0x07, 0xfc, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO---------OOOOO---................................. - 0x03, 0xfe, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO-------OOOOO----................................. - 0x00, 0xff, 0x87, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOO----OOOOOO----................................. - 0x00, 0x7f, 0xcf, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOO--OOOOOO-----................................. - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO------................................. - 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOO-------................................. - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------................................. - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO-------................................. - 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOO-------................................. - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO------................................. - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOO------................................. - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO-----................................. - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO-----................................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-----................................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-----................................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-----................................. - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO-----................................. - 0x04, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----O--------------OOOOOO-----................................. - 0x07, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOO-----------OOOOOO------................................. - 0x07, 0xf0, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO----OOOOOOOOO------................................. - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO-------................................. - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO--------................................. - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---------................................. - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO-----------................................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OO---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - - // ASCII: 168, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x01, 0xf8, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----OOOOOOO------................................. - 0x01, 0xf8, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----OOOOOOO------................................. - 0x01, 0xf8, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----OOOOOOO------................................. - 0x01, 0xf8, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----OOOOOOO------................................. - 0x01, 0xf8, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----OOOOOOO------................................. - 0x01, 0xf8, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----OOOOOOO------................................. - 0x01, 0xf8, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----OOOOOOO------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - - // ASCII: 169, char width: 62 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOOO--------------------------.. - 0x00, 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOO-----------------------.. - 0x00, 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOOOO---------------------.. - 0x00, 0x00, 0x1f, 0xfc, 0xff, 0xe0, 0x00, 0x00, // -------------------OOOOOOOOOOO--OOOOOOOOOOO-------------------.. - 0x00, 0x00, 0x3f, 0x80, 0x07, 0xf0, 0x00, 0x00, // ------------------OOOOOOO------------OOOOOOO------------------.. - 0x00, 0x00, 0x7e, 0x00, 0x01, 0xf8, 0x00, 0x00, // -----------------OOOOOO----------------OOOOOO-----------------.. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x7c, 0x00, 0x00, // ----------------OOOOO--------------------OOOOO----------------.. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x3e, 0x00, 0x00, // ---------------OOOOO----------------------OOOOO---------------.. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x0f, 0x00, 0x00, // --------------OOOOO-------------------------OOOO--------------.. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x07, 0x80, 0x00, // -------------OOOOO---------------------------OOOO-------------.. - 0x00, 0x07, 0x80, 0x1f, 0xf8, 0x07, 0x80, 0x00, // -------------OOOO----------OOOOOOOOOO--------OOOO-------------.. - 0x00, 0x0f, 0x00, 0x7f, 0xff, 0x03, 0xc0, 0x00, // ------------OOOO---------OOOOOOOOOOOOOOO------OOOO------------.. - 0x00, 0x0e, 0x01, 0xff, 0xff, 0x01, 0xe0, 0x00, // ------------OOO--------OOOOOOOOOOOOOOOOO-------OOOO-----------.. - 0x00, 0x1e, 0x03, 0xff, 0xff, 0x01, 0xe0, 0x00, // -----------OOOO-------OOOOOOOOOOOOOOOOOO-------OOOO-----------.. - 0x00, 0x1c, 0x07, 0xf0, 0x0f, 0x00, 0xe0, 0x00, // -----------OOO-------OOOOOOO--------OOOO--------OOO-----------.. - 0x00, 0x3c, 0x0f, 0xe0, 0x01, 0x00, 0xf0, 0x00, // ----------OOOO------OOOOOOO------------O--------OOOO----------.. - 0x00, 0x38, 0x0f, 0x80, 0x00, 0x00, 0x70, 0x00, // ----------OOO-------OOOOO------------------------OOO----------.. - 0x00, 0x38, 0x1f, 0x80, 0x00, 0x00, 0x70, 0x00, // ----------OOO------OOOOOO------------------------OOO----------.. - 0x00, 0x78, 0x1f, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOOO------OOOOO--------------------------OOO---------.. - 0x00, 0x70, 0x3f, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOOO--------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x1f, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO-------OOOOO--------------------------OOO---------.. - 0x00, 0x38, 0x1f, 0x80, 0x00, 0x00, 0x78, 0x00, // ----------OOO------OOOOOO------------------------OOOO---------.. - 0x00, 0x38, 0x0f, 0x80, 0x00, 0x00, 0x70, 0x00, // ----------OOO-------OOOOO------------------------OOO----------.. - 0x00, 0x3c, 0x0f, 0xc0, 0x01, 0x00, 0xf0, 0x00, // ----------OOOO------OOOOOO-------------O--------OOOO----------.. - 0x00, 0x1c, 0x07, 0xf0, 0x07, 0x00, 0xe0, 0x00, // -----------OOO-------OOOOOOO---------OOO--------OOO-----------.. - 0x00, 0x1e, 0x03, 0xff, 0xff, 0x01, 0xe0, 0x00, // -----------OOOO-------OOOOOOOOOOOOOOOOOO-------OOOO-----------.. - 0x00, 0x1e, 0x01, 0xff, 0xff, 0x01, 0xe0, 0x00, // -----------OOOO--------OOOOOOOOOOOOOOOOO-------OOOO-----------.. - 0x00, 0x0f, 0x00, 0xff, 0xff, 0x03, 0xc0, 0x00, // ------------OOOO--------OOOOOOOOOOOOOOOO------OOOO------------.. - 0x00, 0x07, 0x80, 0x1f, 0xf8, 0x07, 0x80, 0x00, // -------------OOOO----------OOOOOOOOOO--------OOOO-------------.. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x0f, 0x80, 0x00, // -------------OOOOO--------------------------OOOOO-------------.. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x0f, 0x00, 0x00, // --------------OOOOO-------------------------OOOO--------------.. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x3e, 0x00, 0x00, // ---------------OOOOO----------------------OOOOO---------------.. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x7c, 0x00, 0x00, // ----------------OOOOO--------------------OOOOO----------------.. - 0x00, 0x00, 0x7e, 0x00, 0x01, 0xf8, 0x00, 0x00, // -----------------OOOOOO----------------OOOOOO-----------------.. - 0x00, 0x00, 0x3f, 0x80, 0x07, 0xf0, 0x00, 0x00, // ------------------OOOOOOO------------OOOOOOO------------------.. - 0x00, 0x00, 0x1f, 0xfc, 0xff, 0xe0, 0x00, 0x00, // -------------------OOOOOOOOOOO--OOOOOOOOOOO-------------------.. - 0x00, 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOOOO---------------------.. - 0x00, 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOO-----------------------.. - 0x00, 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOOO--------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - - // ASCII: 170, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO----------................................... - 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOO--------................................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-------................................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO------................................... - 0x07, 0x80, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------OOOOO------................................... - 0x04, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----O-------------OOOOO-----................................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------OOOO-----................................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO----................................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO----................................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO----................................... - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO----................................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO----................................... - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO----................................... - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO----................................... - 0x07, 0xe0, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------OOOOO----................................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------OOOOO----................................... - 0x0f, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOO------------OOOOO----................................... - 0x0f, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOO------------OOOOO----................................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------OOOOO----................................... - 0x1f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-----------OOOOOO----................................... - 0x0f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------OOOOOO----................................... - 0x0f, 0x80, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------OOOOOOO----................................... - 0x0f, 0xc0, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-------OOOOOOOO----................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x07, 0xff, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO-OOOOO----................................... - 0x03, 0xff, 0xcf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO--OOOOO----................................... - 0x00, 0xff, 0x8f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOO---OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - - // ASCII: 171, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x20, 0x01, 0x00, 0x00, 0x00, 0x00, // ------------------O------------O------.......................... - 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x00, 0x00, // -----------------OO-----------OO------.......................... - 0x00, 0x00, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, // ----------------OOO----------OOO------.......................... - 0x00, 0x01, 0xe0, 0x0f, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO---------OOOO------.......................... - 0x00, 0x03, 0xe0, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--------OOOOO------.......................... - 0x00, 0x07, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-------OOOOOO------.......................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-------.......................... - 0x00, 0x1f, 0x80, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-------OOOOOO--------.......................... - 0x00, 0x3f, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-------OOOOOO---------.......................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO----------.......................... - 0x00, 0xfc, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO-------OOOOOO-----------.......................... - 0x01, 0xf8, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------OOOOOO------------.......................... - 0x03, 0xf0, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOO-------------.......................... - 0x07, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOOOOO--------------.......................... - 0x07, 0xc0, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOO---------------.......................... - 0x07, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOOOOO--------------.......................... - 0x07, 0xf0, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO------OOOOOOO-------------.......................... - 0x03, 0xf8, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------OOOOOOO------------.......................... - 0x01, 0xfc, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------OOOOOOO-----------.......................... - 0x00, 0xfe, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------OOOOOOO----------.......................... - 0x00, 0x7f, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO------OOOOOOO---------.......................... - 0x00, 0x3f, 0x81, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO------OOOOOOO--------.......................... - 0x00, 0x1f, 0xc0, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO------OOOOOOO-------.......................... - 0x00, 0x0f, 0xe0, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO------OOOOOOO------.......................... - 0x00, 0x07, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-------OOOOOO------.......................... - 0x00, 0x03, 0xe0, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--------OOOOO------.......................... - 0x00, 0x01, 0xe0, 0x0f, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO---------OOOO------.......................... - 0x00, 0x00, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, // ----------------OOO----------OOO------.......................... - 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x00, 0x00, // -----------------OO-----------OO------.......................... - 0x00, 0x00, 0x20, 0x01, 0x00, 0x00, 0x00, 0x00, // ------------------O------------O------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 172, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 173, char width: 22 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - - // ASCII: 174, char width: 62 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOOO--------------------------.. - 0x00, 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOO-----------------------.. - 0x00, 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOOOO---------------------.. - 0x00, 0x00, 0x1f, 0xfc, 0xff, 0xe0, 0x00, 0x00, // -------------------OOOOOOOOOOO--OOOOOOOOOOO-------------------.. - 0x00, 0x00, 0x3f, 0x80, 0x07, 0xf0, 0x00, 0x00, // ------------------OOOOOOO------------OOOOOOO------------------.. - 0x00, 0x00, 0x7e, 0x00, 0x01, 0xf8, 0x00, 0x00, // -----------------OOOOOO----------------OOOOOO-----------------.. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x7c, 0x00, 0x00, // ----------------OOOOO--------------------OOOOO----------------.. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x3e, 0x00, 0x00, // ---------------OOOOO----------------------OOOOO---------------.. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x0f, 0x00, 0x00, // --------------OOOOO-------------------------OOOO--------------.. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x07, 0x80, 0x00, // -------------OOOOO---------------------------OOOO-------------.. - 0x00, 0x07, 0x83, 0xfe, 0x00, 0x07, 0x80, 0x00, // -------------OOOO-----OOOOOOOOO--------------OOOO-------------.. - 0x00, 0x0f, 0x03, 0xff, 0xf8, 0x03, 0xc0, 0x00, // ------------OOOO------OOOOOOOOOOOOOOO---------OOOO------------.. - 0x00, 0x0e, 0x03, 0xff, 0xfc, 0x01, 0xe0, 0x00, // ------------OOO-------OOOOOOOOOOOOOOOO---------OOOO-----------.. - 0x00, 0x1e, 0x03, 0xff, 0xfe, 0x01, 0xe0, 0x00, // -----------OOOO-------OOOOOOOOOOOOOOOOO--------OOOO-----------.. - 0x00, 0x1c, 0x03, 0xe0, 0x3f, 0x00, 0xe0, 0x00, // -----------OOO--------OOOOO-------OOOOOO--------OOO-----------.. - 0x00, 0x3c, 0x03, 0xe0, 0x1f, 0x80, 0xf0, 0x00, // ----------OOOO--------OOOOO--------OOOOOO-------OOOO----------.. - 0x00, 0x38, 0x03, 0xe0, 0x0f, 0x80, 0x70, 0x00, // ----------OOO---------OOOOO---------OOOOO--------OOO----------.. - 0x00, 0x38, 0x03, 0xe0, 0x0f, 0x80, 0x70, 0x00, // ----------OOO---------OOOOO---------OOOOO--------OOO----------.. - 0x00, 0x78, 0x03, 0xe0, 0x0f, 0x80, 0x38, 0x00, // ---------OOOO---------OOOOO---------OOOOO---------OOO---------.. - 0x00, 0x70, 0x03, 0xe0, 0x0f, 0x80, 0x38, 0x00, // ---------OOO----------OOOOO---------OOOOO---------OOO---------.. - 0x00, 0x70, 0x03, 0xe0, 0x0f, 0x80, 0x38, 0x00, // ---------OOO----------OOOOO---------OOOOO---------OOO---------.. - 0x00, 0x70, 0x03, 0xe0, 0x1f, 0x80, 0x38, 0x00, // ---------OOO----------OOOOO--------OOOOOO---------OOO---------.. - 0x00, 0x70, 0x03, 0xe0, 0x3f, 0x00, 0x38, 0x00, // ---------OOO----------OOOOO-------OOOOOO----------OOO---------.. - 0x00, 0x70, 0x03, 0xff, 0xfe, 0x00, 0x38, 0x00, // ---------OOO----------OOOOOOOOOOOOOOOOO-----------OOO---------.. - 0x00, 0x70, 0x03, 0xff, 0xfc, 0x00, 0x38, 0x00, // ---------OOO----------OOOOOOOOOOOOOOOO------------OOO---------.. - 0x00, 0x70, 0x03, 0xff, 0xf0, 0x00, 0x38, 0x00, // ---------OOO----------OOOOOOOOOOOOOO--------------OOO---------.. - 0x00, 0x70, 0x03, 0xff, 0xf0, 0x00, 0x38, 0x00, // ---------OOO----------OOOOOOOOOOOOOO--------------OOO---------.. - 0x00, 0x70, 0x03, 0xe1, 0xf8, 0x00, 0x38, 0x00, // ---------OOO----------OOOOO----OOOOOO-------------OOO---------.. - 0x00, 0x70, 0x03, 0xe0, 0xfc, 0x00, 0x38, 0x00, // ---------OOO----------OOOOO-----OOOOOO------------OOO---------.. - 0x00, 0x70, 0x03, 0xe0, 0x7c, 0x00, 0x38, 0x00, // ---------OOO----------OOOOO------OOOOO------------OOO---------.. - 0x00, 0x70, 0x03, 0xe0, 0x7e, 0x00, 0x38, 0x00, // ---------OOO----------OOOOO------OOOOOO-----------OOO---------.. - 0x00, 0x70, 0x03, 0xe0, 0x3e, 0x00, 0x38, 0x00, // ---------OOO----------OOOOO-------OOOOO-----------OOO---------.. - 0x00, 0x38, 0x03, 0xe0, 0x1f, 0x00, 0x78, 0x00, // ----------OOO---------OOOOO--------OOOOO---------OOOO---------.. - 0x00, 0x38, 0x03, 0xe0, 0x1f, 0x00, 0x70, 0x00, // ----------OOO---------OOOOO--------OOOOO---------OOO----------.. - 0x00, 0x3c, 0x03, 0xe0, 0x0f, 0x80, 0xf0, 0x00, // ----------OOOO--------OOOOO---------OOOOO-------OOOO----------.. - 0x00, 0x1c, 0x03, 0xe0, 0x0f, 0xc0, 0xe0, 0x00, // -----------OOO--------OOOOO---------OOOOOO------OOO-----------.. - 0x00, 0x1e, 0x03, 0xe0, 0x07, 0xc1, 0xe0, 0x00, // -----------OOOO-------OOOOO----------OOOOO-----OOOO-----------.. - 0x00, 0x1e, 0x03, 0xe0, 0x07, 0xe1, 0xe0, 0x00, // -----------OOOO-------OOOOO----------OOOOOO----OOOO-----------.. - 0x00, 0x0f, 0x03, 0xe0, 0x03, 0xe3, 0xc0, 0x00, // ------------OOOO------OOOOO-----------OOOOO---OOOO------------.. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x07, 0x80, 0x00, // -------------OOOO----------------------------OOOO-------------.. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x0f, 0x80, 0x00, // -------------OOOOO--------------------------OOOOO-------------.. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x0f, 0x00, 0x00, // --------------OOOOO-------------------------OOOO--------------.. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x3e, 0x00, 0x00, // ---------------OOOOO----------------------OOOOO---------------.. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x7c, 0x00, 0x00, // ----------------OOOOO--------------------OOOOO----------------.. - 0x00, 0x00, 0x7e, 0x00, 0x01, 0xf8, 0x00, 0x00, // -----------------OOOOOO----------------OOOOOO-----------------.. - 0x00, 0x00, 0x3f, 0x80, 0x07, 0xf0, 0x00, 0x00, // ------------------OOOOOOO------------OOOOOOO------------------.. - 0x00, 0x00, 0x1f, 0xfc, 0xff, 0xe0, 0x00, 0x00, // -------------------OOOOOOOOOOO--OOOOOOOOOOO-------------------.. - 0x00, 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOOOO---------------------.. - 0x00, 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOO-----------------------.. - 0x00, 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOOO--------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - - // ASCII: 175, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO------................................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO------................................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO------................................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO------................................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - - // ASCII: 176, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO------------................................. - 0x00, 0x3f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOO----------................................. - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO---------................................. - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO--------................................. - 0x00, 0xfc, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---OOOOOO--------................................. - 0x01, 0xf0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------OOOOO-------................................. - 0x01, 0xe0, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOO---------OOOO-------................................. - 0x03, 0xc0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOO-----------OOOO------................................. - 0x03, 0xc0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOO-----------OOOO------................................. - 0x03, 0xc0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOO-----------OOOO------................................. - 0x03, 0xc0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOO-----------OOOO------................................. - 0x03, 0xc0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOO-----------OOOO------................................. - 0x03, 0xc0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOO-----------OOOO------................................. - 0x03, 0xc0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOO-----------OOOO------................................. - 0x01, 0xe0, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOO---------OOOOO------................................. - 0x01, 0xf0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------OOOOO-------................................. - 0x01, 0xfc, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO----OOOOOO-------................................. - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO--------................................. - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO---------................................. - 0x00, 0x3f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOO----------................................. - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - - // ASCII: 177, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 178, char width: 25 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO----------....................................... - 0x1f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOO--------....................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO------....................................... - 0x1f, 0xdf, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO-OOOOOOOO------....................................... - 0x1c, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOO--------OOOOOO-----....................................... - 0x10, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---O-----------OOOOO-----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOO-----....................................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-----....................................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO------....................................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-------....................................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-------....................................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO--------....................................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO------------....................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------------....................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------------....................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO---------------....................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------....................................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-----------------....................................... - 0x1f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOO----....................................... - 0x1f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOO----....................................... - 0x1f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOO----....................................... - 0x1f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOO----....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - - // ASCII: 179, char width: 25 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOO---------....................................... - 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOO-------....................................... - 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO------....................................... - 0x0f, 0xdf, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-OOOOOOOOO-----....................................... - 0x08, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----O----------OOOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-----....................................... - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO------....................................... - 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOO-------....................................... - 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOO--------....................................... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO------....................................... - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-----....................................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO---....................................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO---....................................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO---....................................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO---....................................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO---....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x18, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OO---------OOOOOOO----....................................... - 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOO-----....................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO------....................................... - 0x1f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOO-------....................................... - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO----------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - - // ASCII: 180, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOO------................................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO-------................................. - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO-------................................. - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO--------................................. - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO---------................................. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----------................................. - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO----------................................. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-----------................................. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO------------................................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-------------................................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOO--------------................................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO--------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - - // ASCII: 181, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOOO-----......................... - 0x07, 0xf8, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOO------------OOOOOOOOO-----......................... - 0x07, 0xfe, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOO---------OOOOOOOOOO-----......................... - 0x07, 0xff, 0xcf, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO--OOOOOOOOOOOOOOOOOO-......................... - 0x07, 0xff, 0xff, 0xf7, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOO-OOOOOOOOO-......................... - 0x07, 0xef, 0xff, 0xe7, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO-OOOOOOOOOOOOOOO--OOOOOOOOO-......................... - 0x07, 0xe7, 0xff, 0xc7, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO--OOOOOOOOOOOOO---OOOOOOOOO-......................... - 0x07, 0xe3, 0xff, 0x83, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---OOOOOOOOOOO-----OOOOOOOO-......................... - 0x07, 0xe0, 0xfe, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOO-----OOOOOOO--------OOOOO---......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 182, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x3f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x7f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO-----OOOOO------......................... - 0x01, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x01, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x03, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x03, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x03, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x03, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x01, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x01, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x00, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO-----OOOOO------......................... - 0x00, 0x7f, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOO-----OOOOO------......................... - 0x00, 0x3f, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO-----OOOOO------......................... - 0x00, 0x0f, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO-----OOOOO------......................... - 0x00, 0x01, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 183, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // ASCII: 184, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOO-------------................................. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO------------................................. - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOO-----------................................. - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOO-----------................................. - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO----------................................. - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO----------................................. - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO----------................................. - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO----------................................. - 0x00, 0x40, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------O------OOOOO----------................................. - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO----------................................. - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO----------................................. - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO-----------................................. - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - - // ASCII: 185, char width: 25 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----------....................................... - 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOO----------....................................... - 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOO----------....................................... - 0x0f, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--OOOO----------....................................... - 0x08, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----O------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---....................................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---....................................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---....................................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - - // ASCII: 186, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------................................... - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO--------................................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................................... - 0x07, 0xf0, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO------OOOOOO-----................................... - 0x07, 0xc0, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOOO----................................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------OOOOO----................................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------OOOOO----................................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------OOOOO---................................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------OOOOO---................................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------OOOOO---................................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO--------------OOOO---................................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO--------------OOOO---................................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO--------------OOOO---................................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO--------------OOOO---................................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO--------------OOOO---................................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------OOOOO---................................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------OOOOO---................................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------OOOOO---................................... - 0x0f, 0x80, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------OOOOOO---................................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------OOOOO----................................... - 0x0f, 0xc0, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------OOOOOO----................................... - 0x07, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOOOOO-----................................... - 0x03, 0xfd, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO-OOOOOOOO------................................... - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO------................................... - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO--------................................... - 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO---------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - - // ASCII: 187, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x02, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, // ------O------------O------------------.......................... - 0x03, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OO-----------OO-----------------.......................... - 0x03, 0x80, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOO----------OOO----------------.......................... - 0x03, 0xc0, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOO---------OOOO---------------.......................... - 0x03, 0xe0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOO--------------.......................... - 0x03, 0xf0, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOO-------------.......................... - 0x01, 0xf8, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------OOOOOO------------.......................... - 0x00, 0xfc, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO-------OOOOOO-----------.......................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO----------.......................... - 0x00, 0x3f, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-------OOOOOO---------.......................... - 0x00, 0x1f, 0x80, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-------OOOOOO--------.......................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-------.......................... - 0x00, 0x07, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-------OOOOOO------.......................... - 0x00, 0x03, 0xf0, 0x1f, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOO-------OOOOOO-----.......................... - 0x00, 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOO--------OOOOO-----.......................... - 0x00, 0x03, 0xf0, 0x1f, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOO-------OOOOOO-----.......................... - 0x00, 0x07, 0xf0, 0x3f, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOOO------OOOOOOO-----.......................... - 0x00, 0x0f, 0xe0, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO------OOOOOOO------.......................... - 0x00, 0x1f, 0xc0, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO------OOOOOOO-------.......................... - 0x00, 0x3f, 0x81, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO------OOOOOOO--------.......................... - 0x00, 0x7f, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO------OOOOOOO---------.......................... - 0x00, 0xfe, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------OOOOOOO----------.......................... - 0x01, 0xfc, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------OOOOOOO-----------.......................... - 0x03, 0xf8, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------OOOOOOO------------.......................... - 0x03, 0xf0, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOO-------------.......................... - 0x03, 0xe0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOO--------------.......................... - 0x03, 0xc0, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOO---------OOOO---------------.......................... - 0x03, 0x80, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOO----------OOO----------------.......................... - 0x03, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OO-----------OO-----------------.......................... - 0x02, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, // ------O------------O------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 188, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, // ----------OOOOO---------------------------OOOO--------------.... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, // -----OOOOOOOOOO--------------------------OOOOO--------------.... - 0x0f, 0xfe, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----OOOOOOOOOOO-------------------------OOOOO---------------.... - 0x0f, 0xfe, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----OOOOOOOOOOO-------------------------OOOOO---------------.... - 0x0f, 0x9e, 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, // ----OOOOO--OOOO------------------------OOOOO----------------.... - 0x08, 0x1e, 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, // ----O------OOOO------------------------OOOOO----------------.... - 0x00, 0x1e, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // -----------OOOO-----------------------OOOOO-----------------.... - 0x00, 0x1e, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // -----------OOOO-----------------------OOOOO-----------------.... - 0x00, 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // -----------OOOO----------------------OOOOO------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // -----------OOOO----------------------OOOOO------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // -----------OOOO---------------------OOOOO-------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // -----------OOOO---------------------OOOO--------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -----------OOOO--------------------OOOOO--------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----------OOOO-------------------OOOOO---------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----------OOOO-------------------OOOOO---------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------OOOO------------------OOOOO----------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------OOOO------------------OOOOO----------------------.... - 0x00, 0x1e, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // -----------OOOO-----------------OOOOO-----------------------.... - 0x00, 0x1e, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // -----------OOOO-----------------OOOOO-----------------------.... - 0x00, 0x1e, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------OOOO----------------OOOOO------------------------.... - 0x00, 0x1e, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------OOOO----------------OOOOO------------------------.... - 0x00, 0x1e, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // -----------OOOO---------------OOOOO-------------------------.... - 0x00, 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x7c, 0x00, // -----------OOOO---------------OOOO---------------OOOOO------.... - 0x00, 0x1e, 0x00, 0x07, 0xc0, 0x00, 0xfc, 0x00, // -----------OOOO--------------OOOOO--------------OOOOOO------.... - 0x00, 0x1e, 0x00, 0x07, 0x80, 0x01, 0xfc, 0x00, // -----------OOOO--------------OOOO--------------OOOOOOO------.... - 0x07, 0xff, 0xfc, 0x0f, 0x80, 0x01, 0xfc, 0x00, // -----OOOOOOOOOOOOOOOOO------OOOOO--------------OOOOOOO------.... - 0x07, 0xff, 0xfc, 0x1f, 0x00, 0x03, 0xfc, 0x00, // -----OOOOOOOOOOOOOOOOO-----OOOOO--------------OOOOOOOO------.... - 0x07, 0xff, 0xfc, 0x1f, 0x00, 0x07, 0xfc, 0x00, // -----OOOOOOOOOOOOOOOOO-----OOOOO-------------OOOOOOOOO------.... - 0x07, 0xff, 0xfc, 0x3e, 0x00, 0x07, 0x7c, 0x00, // -----OOOOOOOOOOOOOOOOO----OOOOO--------------OOO-OOOOO------.... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x0e, 0x7c, 0x00, // --------------------------OOOOO-------------OOO--OOOOO------.... - 0x00, 0x00, 0x00, 0x7c, 0x00, 0x1e, 0x7c, 0x00, // -------------------------OOOOO-------------OOOO--OOOOO------.... - 0x00, 0x00, 0x00, 0x7c, 0x00, 0x1c, 0x7c, 0x00, // -------------------------OOOOO-------------OOO---OOOOO------.... - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x38, 0x7c, 0x00, // ------------------------OOOOO-------------OOO----OOOOO------.... - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x78, 0x7c, 0x00, // ------------------------OOOOO------------OOOO----OOOOO------.... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x70, 0x7c, 0x00, // -----------------------OOOOO-------------OOO-----OOOOO------.... - 0x00, 0x00, 0x01, 0xe0, 0x00, 0xe0, 0x7c, 0x00, // -----------------------OOOO-------------OOO------OOOOO------.... - 0x00, 0x00, 0x03, 0xe0, 0x01, 0xe0, 0x7c, 0x00, // ----------------------OOOOO------------OOOO------OOOOO------.... - 0x00, 0x00, 0x07, 0xc0, 0x01, 0xc0, 0x7c, 0x00, // ---------------------OOOOO-------------OOO-------OOOOO------.... - 0x00, 0x00, 0x07, 0xc0, 0x03, 0x80, 0x7c, 0x00, // ---------------------OOOOO------------OOO--------OOOOO------.... - 0x00, 0x00, 0x0f, 0x80, 0x07, 0x80, 0x7c, 0x00, // --------------------OOOOO------------OOOO--------OOOOO------.... - 0x00, 0x00, 0x0f, 0x80, 0x07, 0x00, 0x7c, 0x00, // --------------------OOOOO------------OOO---------OOOOO------.... - 0x00, 0x00, 0x1f, 0x00, 0x07, 0xff, 0xff, 0xc0, // -------------------OOOOO-------------OOOOOOOOOOOOOOOOOOOOO--.... - 0x00, 0x00, 0x1f, 0x00, 0x07, 0xff, 0xff, 0xc0, // -------------------OOOOO-------------OOOOOOOOOOOOOOOOOOOOO--.... - 0x00, 0x00, 0x3e, 0x00, 0x07, 0xff, 0xff, 0xc0, // ------------------OOOOO--------------OOOOOOOOOOOOOOOOOOOOO--.... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x7c, 0x00, // ------------------OOOOO--------------------------OOOOO------.... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x7c, 0x00, // -----------------OOOOO---------------------------OOOOO------.... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x7c, 0x00, // -----------------OOOO----------------------------OOOOO------.... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x7c, 0x00, // ----------------OOOOO----------------------------OOOOO------.... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x7c, 0x00, // ----------------OOOO-----------------------------OOOOO------.... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x7c, 0x00, // ---------------OOOOO-----------------------------OOOOO------.... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x7c, 0x00, // --------------OOOOO------------------------------OOOOO------.... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-----------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 189, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, // ----------OOOOO---------------------------OOOO--------------.... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, // -----OOOOOOOOOO--------------------------OOOOO--------------.... - 0x0f, 0xfe, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----OOOOOOOOOOO-------------------------OOOOO---------------.... - 0x0f, 0xfe, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----OOOOOOOOOOO-------------------------OOOOO---------------.... - 0x0f, 0x9e, 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, // ----OOOOO--OOOO------------------------OOOOO----------------.... - 0x08, 0x1e, 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, // ----O------OOOO------------------------OOOOO----------------.... - 0x00, 0x1e, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // -----------OOOO-----------------------OOOOO-----------------.... - 0x00, 0x1e, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // -----------OOOO-----------------------OOOOO-----------------.... - 0x00, 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // -----------OOOO----------------------OOOOO------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // -----------OOOO----------------------OOOOO------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // -----------OOOO---------------------OOOOO-------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // -----------OOOO---------------------OOOO--------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -----------OOOO--------------------OOOOO--------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----------OOOO-------------------OOOOO---------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----------OOOO-------------------OOOOO---------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------OOOO------------------OOOOO----------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------OOOO------------------OOOOO----------------------.... - 0x00, 0x1e, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // -----------OOOO-----------------OOOOO-----------------------.... - 0x00, 0x1e, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // -----------OOOO-----------------OOOOO-----------------------.... - 0x00, 0x1e, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------OOOO----------------OOOOO------------------------.... - 0x00, 0x1e, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------OOOO----------------OOOOO------------------------.... - 0x00, 0x1e, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // -----------OOOO---------------OOOOO-------------------------.... - 0x00, 0x1e, 0x00, 0x03, 0xc0, 0x7f, 0xc0, 0x00, // -----------OOOO---------------OOOO-------OOOOOOOOO----------.... - 0x00, 0x1e, 0x00, 0x07, 0xc3, 0xff, 0xf0, 0x00, // -----------OOOO--------------OOOOO----OOOOOOOOOOOOOO--------.... - 0x00, 0x1e, 0x00, 0x07, 0x83, 0xff, 0xfc, 0x00, // -----------OOOO--------------OOOO-----OOOOOOOOOOOOOOOO------.... - 0x07, 0xff, 0xfc, 0x0f, 0x83, 0xfb, 0xfc, 0x00, // -----OOOOOOOOOOOOOOOOO------OOOOO-----OOOOOOO-OOOOOOOO------.... - 0x07, 0xff, 0xfc, 0x1f, 0x03, 0x80, 0x7e, 0x00, // -----OOOOOOOOOOOOOOOOO-----OOOOO------OOO--------OOOOOO-----.... - 0x07, 0xff, 0xfc, 0x1f, 0x02, 0x00, 0x3e, 0x00, // -----OOOOOOOOOOOOOOOOO-----OOOOO------O-----------OOOOO-----.... - 0x07, 0xff, 0xfc, 0x3e, 0x00, 0x00, 0x1f, 0x00, // -----OOOOOOOOOOOOOOOOO----OOOOO--------------------OOOOO----.... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x1f, 0x00, // --------------------------OOOOO--------------------OOOOO----.... - 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x1f, 0x00, // -------------------------OOOOO---------------------OOOOO----.... - 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x1f, 0x00, // -------------------------OOOOO---------------------OOOOO----.... - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x1e, 0x00, // ------------------------OOOOO----------------------OOOO-----.... - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x3e, 0x00, // ------------------------OOOOO---------------------OOOOO-----.... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x7c, 0x00, // -----------------------OOOOO---------------------OOOOO------.... - 0x00, 0x00, 0x01, 0xe0, 0x00, 0x00, 0xf8, 0x00, // -----------------------OOOO---------------------OOOOO-------.... - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0xf8, 0x00, // ----------------------OOOOO---------------------OOOOO-------.... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x01, 0xf0, 0x00, // ---------------------OOOOO---------------------OOOOO--------.... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x03, 0xe0, 0x00, // ---------------------OOOOO--------------------OOOOO---------.... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, // --------------------OOOOO--------------------OOOOO----------.... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // --------------------OOOOO-------------------OOOOO-----------.... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x1f, 0x00, 0x00, // -------------------OOOOO-------------------OOOOO------------.... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x3e, 0x00, 0x00, // -------------------OOOOO------------------OOOOO-------------.... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // ------------------OOOOO------------------OOOOO--------------.... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0xf8, 0x00, 0x00, // ------------------OOOOO-----------------OOOOO---------------.... - 0x00, 0x00, 0x7c, 0x00, 0x01, 0xf0, 0x00, 0x00, // -----------------OOOOO-----------------OOOOO----------------.... - 0x00, 0x00, 0x78, 0x00, 0x03, 0xe0, 0x00, 0x00, // -----------------OOOO-----------------OOOOO-----------------.... - 0x00, 0x00, 0xf8, 0x00, 0x03, 0xff, 0xff, 0x00, // ----------------OOOOO-----------------OOOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0xf0, 0x00, 0x03, 0xff, 0xff, 0x00, // ----------------OOOO------------------OOOOOOOOOOOOOOOOOO----.... - 0x00, 0x01, 0xf0, 0x00, 0x03, 0xff, 0xff, 0x00, // ---------------OOOOO------------------OOOOOOOOOOOOOOOOOO----.... - 0x00, 0x03, 0xe0, 0x00, 0x03, 0xff, 0xff, 0x00, // --------------OOOOO-------------------OOOOOOOOOOOOOOOOOO----.... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-----------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 190, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x03, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, // ------OOOOOOOOOO--------------------------OOOO--------------.... - 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x7c, 0x00, 0x00, // ----OOOOOOOOOOOOOO-----------------------OOOOO--------------.... - 0x0f, 0xff, 0xe0, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----OOOOOOOOOOOOOOO---------------------OOOOO---------------.... - 0x0f, 0xdf, 0xf0, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----OOOOOO-OOOOOOOOO--------------------OOOOO---------------.... - 0x08, 0x01, 0xf8, 0x00, 0x01, 0xf0, 0x00, 0x00, // ----O----------OOOOOO------------------OOOOO----------------.... - 0x00, 0x00, 0xf8, 0x00, 0x01, 0xf0, 0x00, 0x00, // ----------------OOOOO------------------OOOOO----------------.... - 0x00, 0x00, 0xf8, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----------------OOOOO-----------------OOOOO-----------------.... - 0x00, 0x00, 0xf8, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----------------OOOOO-----------------OOOOO-----------------.... - 0x00, 0x00, 0xf8, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----------------OOOOO----------------OOOOO------------------.... - 0x00, 0x00, 0xf8, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----------------OOOOO----------------OOOOO------------------.... - 0x00, 0x01, 0xf0, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---------------OOOOO----------------OOOOO-------------------.... - 0x00, 0x0f, 0xe0, 0x00, 0x0f, 0x00, 0x00, 0x00, // ------------OOOOOOO-----------------OOOO--------------------.... - 0x00, 0xff, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, // --------OOOOOOOOOO-----------------OOOOO--------------------.... - 0x00, 0xff, 0x80, 0x00, 0x3e, 0x00, 0x00, 0x00, // --------OOOOOOOOO-----------------OOOOO---------------------.... - 0x00, 0xff, 0xe0, 0x00, 0x3e, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO---------------OOOOO---------------------.... - 0x00, 0x07, 0xf0, 0x00, 0x7c, 0x00, 0x00, 0x00, // -------------OOOOOOO-------------OOOOO----------------------.... - 0x00, 0x01, 0xf8, 0x00, 0x7c, 0x00, 0x00, 0x00, // ---------------OOOOOO------------OOOOO----------------------.... - 0x00, 0x00, 0xf8, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO-----------OOOOO-----------------------.... - 0x00, 0x00, 0x7c, 0x00, 0xf8, 0x00, 0x00, 0x00, // -----------------OOOOO----------OOOOO-----------------------.... - 0x00, 0x00, 0x7c, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------------OOOOO---------OOOOO------------------------.... - 0x00, 0x00, 0x7c, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------------OOOOO---------OOOOO------------------------.... - 0x00, 0x00, 0x7c, 0x03, 0xe0, 0x00, 0x00, 0x00, // -----------------OOOOO--------OOOOO-------------------------.... - 0x00, 0x00, 0x7c, 0x03, 0xc0, 0x00, 0x7c, 0x00, // -----------------OOOOO--------OOOO---------------OOOOO------.... - 0x00, 0x00, 0xf8, 0x07, 0xc0, 0x00, 0xfc, 0x00, // ----------------OOOOO--------OOOOO--------------OOOOOO------.... - 0x18, 0x03, 0xf8, 0x07, 0x80, 0x01, 0xfc, 0x00, // ---OO---------OOOOOOO--------OOOO--------------OOOOOOO------.... - 0x1f, 0xff, 0xf0, 0x0f, 0x80, 0x01, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOO--------OOOOO--------------OOOOOOO------.... - 0x1f, 0xff, 0xe0, 0x1f, 0x00, 0x03, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOO--------OOOOO--------------OOOOOOOO------.... - 0x1f, 0xff, 0xc0, 0x1f, 0x00, 0x07, 0xfc, 0x00, // ---OOOOOOOOOOOOOOO---------OOOOO-------------OOOOOOOOO------.... - 0x03, 0xfe, 0x00, 0x3e, 0x00, 0x07, 0x7c, 0x00, // ------OOOOOOOOO-----------OOOOO--------------OOO-OOOOO------.... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x0e, 0x7c, 0x00, // --------------------------OOOOO-------------OOO--OOOOO------.... - 0x00, 0x00, 0x00, 0x7c, 0x00, 0x1e, 0x7c, 0x00, // -------------------------OOOOO-------------OOOO--OOOOO------.... - 0x00, 0x00, 0x00, 0x7c, 0x00, 0x1c, 0x7c, 0x00, // -------------------------OOOOO-------------OOO---OOOOO------.... - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x38, 0x7c, 0x00, // ------------------------OOOOO-------------OOO----OOOOO------.... - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x78, 0x7c, 0x00, // ------------------------OOOOO------------OOOO----OOOOO------.... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x70, 0x7c, 0x00, // -----------------------OOOOO-------------OOO-----OOOOO------.... - 0x00, 0x00, 0x01, 0xe0, 0x00, 0xe0, 0x7c, 0x00, // -----------------------OOOO-------------OOO------OOOOO------.... - 0x00, 0x00, 0x03, 0xe0, 0x01, 0xe0, 0x7c, 0x00, // ----------------------OOOOO------------OOOO------OOOOO------.... - 0x00, 0x00, 0x07, 0xc0, 0x01, 0xc0, 0x7c, 0x00, // ---------------------OOOOO-------------OOO-------OOOOO------.... - 0x00, 0x00, 0x07, 0xc0, 0x03, 0x80, 0x7c, 0x00, // ---------------------OOOOO------------OOO--------OOOOO------.... - 0x00, 0x00, 0x0f, 0x80, 0x07, 0x80, 0x7c, 0x00, // --------------------OOOOO------------OOOO--------OOOOO------.... - 0x00, 0x00, 0x0f, 0x80, 0x07, 0x00, 0x7c, 0x00, // --------------------OOOOO------------OOO---------OOOOO------.... - 0x00, 0x00, 0x1f, 0x00, 0x07, 0xff, 0xff, 0xc0, // -------------------OOOOO-------------OOOOOOOOOOOOOOOOOOOOO--.... - 0x00, 0x00, 0x1f, 0x00, 0x07, 0xff, 0xff, 0xc0, // -------------------OOOOO-------------OOOOOOOOOOOOOOOOOOOOO--.... - 0x00, 0x00, 0x3e, 0x00, 0x07, 0xff, 0xff, 0xc0, // ------------------OOOOO--------------OOOOOOOOOOOOOOOOOOOOO--.... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x7c, 0x00, // ------------------OOOOO--------------------------OOOOO------.... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x7c, 0x00, // -----------------OOOOO---------------------------OOOOO------.... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x7c, 0x00, // -----------------OOOO----------------------------OOOOO------.... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x7c, 0x00, // ----------------OOOOO----------------------------OOOOO------.... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x7c, 0x00, // ----------------OOOO-----------------------------OOOOO------.... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x7c, 0x00, // ---------------OOOOO-----------------------------OOOOO------.... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x7c, 0x00, // --------------OOOOO------------------------------OOOOO------.... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-----------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 191, char width: 33 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-------------............................... - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-------------............................... - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO--------------............................... - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO--------------............................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO---------------............................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO----------------............................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO-----------------............................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------------------............................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------------------............................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------............................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------............................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------------............................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------............................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------............................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO----------------------............................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------............................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO----------------------............................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO----------------------............................... - 0x07, 0xe0, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-----------------O----............................... - 0x07, 0xf0, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOO----............................... - 0x07, 0xf0, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO------------OOOOO----............................... - 0x07, 0xfc, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO--------OOOOOOO----............................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO----............................... - 0x01, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOO----............................... - 0x00, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOO-----............................... - 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO-------............................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO---------............................... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - - // ASCII: 192, char width: 42 - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO----------------------...................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO---------------------...................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO--------------------...................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO--------------------...................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO-------------------...................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO------------------...................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------OOOO------------------...................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO-----------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOOO--------------...................... - 0x00, 0x03, 0xf3, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOOO-------------...................... - 0x00, 0x07, 0xe1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO---------------OOOOOO-------...................... - 0x01, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOO-------...................... - 0x01, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOO----------------OOOOOO-------...................... - 0x01, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---------------------OOOOOO----...................... - 0x0f, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOO----------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------OOOOOO---...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --OOOOOO--------------------------OOOOOOO-...................... - 0x7f, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOOO---------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOO----------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -OOOOOO----------------------------OOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - - // ASCII: 193, char width: 42 - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOO--------------...................... - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOO---------------...................... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO---------------...................... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO----------------...................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO-----------------...................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO------------------...................... - 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOO-------------------...................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO-------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOOO--------------...................... - 0x00, 0x03, 0xf3, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOOO-------------...................... - 0x00, 0x07, 0xe1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO---------------OOOOOO-------...................... - 0x01, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOO-------...................... - 0x01, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOO----------------OOOOOO-------...................... - 0x01, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---------------------OOOOOO----...................... - 0x0f, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOO----------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------OOOOOO---...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --OOOOOO--------------------------OOOOOOO-...................... - 0x7f, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOOO---------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOO----------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -OOOOOO----------------------------OOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - - // ASCII: 194, char width: 42 - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0x7b, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO-OOOO----------------...................... - 0x00, 0x00, 0xfb, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-OOOOO---------------...................... - 0x00, 0x01, 0xf1, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO---OOOOO--------------...................... - 0x00, 0x03, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-----OOOOO-------------...................... - 0x00, 0x03, 0xc0, 0x78, 0x00, 0x00, 0x00, 0x00, // --------------OOOO-------OOOO-------------...................... - 0x00, 0x07, 0x80, 0x3c, 0x00, 0x00, 0x00, 0x00, // -------------OOOO---------OOOO------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOOO--------------...................... - 0x00, 0x03, 0xf3, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOOO-------------...................... - 0x00, 0x07, 0xe1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO---------------OOOOOO-------...................... - 0x01, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOO-------...................... - 0x01, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOO----------------OOOOOO-------...................... - 0x01, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---------------------OOOOOO----...................... - 0x0f, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOO----------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------OOOOOO---...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --OOOOOO--------------------------OOOOOOO-...................... - 0x7f, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOOO---------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOO----------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -OOOOOO----------------------------OOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - - // ASCII: 195, char width: 42 - 0x00, 0x01, 0xf0, 0x0e, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO--------OOO-----------...................... - 0x00, 0x03, 0xfc, 0x0e, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOO------OOO-----------...................... - 0x00, 0x07, 0xfe, 0x1e, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOO----OOOO-----------...................... - 0x00, 0x0f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOO-----------...................... - 0x00, 0x0f, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---OOOOOOOOOOO------------...................... - 0x00, 0x0f, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-----OOOOOOOOO------------...................... - 0x00, 0x0e, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------OOO-------OOOOOOO-------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOOO--------------...................... - 0x00, 0x03, 0xf3, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOOO-------------...................... - 0x00, 0x07, 0xe1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO---------------OOOOOO-------...................... - 0x01, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOO-------...................... - 0x01, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOO----------------OOOOOO-------...................... - 0x01, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---------------------OOOOOO----...................... - 0x0f, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOO----------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------OOOOOO---...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --OOOOOO--------------------------OOOOOOO-...................... - 0x7f, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOOO---------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOO----------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -OOOOOO----------------------------OOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - - // ASCII: 196, char width: 42 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x0f, 0xe0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----OOOOOOO-----------...................... - 0x00, 0x0f, 0xe0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----OOOOOOO-----------...................... - 0x00, 0x0f, 0xe0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----OOOOOOO-----------...................... - 0x00, 0x0f, 0xe0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----OOOOOOO-----------...................... - 0x00, 0x0f, 0xe0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----OOOOOOO-----------...................... - 0x00, 0x0f, 0xe0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----OOOOOOO-----------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOOO--------------...................... - 0x00, 0x03, 0xf3, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOOO-------------...................... - 0x00, 0x07, 0xe1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO---------------OOOOOO-------...................... - 0x01, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOO-------...................... - 0x01, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOO----------------OOOOOO-------...................... - 0x01, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---------------------OOOOOO----...................... - 0x0f, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOO----------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------OOOOOO---...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --OOOOOO--------------------------OOOOOOO-...................... - 0x7f, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOOO---------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOO----------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -OOOOOO----------------------------OOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - - // ASCII: 197, char width: 42 - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO------------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOO--------------...................... - 0x00, 0x03, 0xe1, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO----OOOOO--------------...................... - 0x00, 0x03, 0xc0, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOO------OOOOO-------------...................... - 0x00, 0x07, 0x80, 0x78, 0x00, 0x00, 0x00, 0x00, // -------------OOOO--------OOOO-------------...................... - 0x00, 0x07, 0x80, 0x38, 0x00, 0x00, 0x00, 0x00, // -------------OOOO---------OOO-------------...................... - 0x00, 0x07, 0x80, 0x3c, 0x00, 0x00, 0x00, 0x00, // -------------OOOO---------OOOO------------...................... - 0x00, 0x07, 0x80, 0x3c, 0x00, 0x00, 0x00, 0x00, // -------------OOOO---------OOOO------------...................... - 0x00, 0x07, 0x80, 0x3c, 0x00, 0x00, 0x00, 0x00, // -------------OOOO---------OOOO------------...................... - 0x00, 0x07, 0x80, 0x78, 0x00, 0x00, 0x00, 0x00, // -------------OOOO--------OOOO-------------...................... - 0x00, 0x07, 0xc0, 0x78, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-------OOOO-------------...................... - 0x00, 0x03, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-----OOOOO-------------...................... - 0x00, 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOO--------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOOO--------------...................... - 0x00, 0x03, 0xf3, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOOO-------------...................... - 0x00, 0x07, 0xe1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO---------------OOOOOO-------...................... - 0x01, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOO-------...................... - 0x01, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOO----------------OOOOOO-------...................... - 0x01, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---------------------OOOOOO----...................... - 0x0f, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOO----------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------OOOOOO---...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --OOOOOO--------------------------OOOOOOO-...................... - 0x7f, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOOO---------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOO----------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -OOOOOO----------------------------OOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - - // ASCII: 198, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x00, // -------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x00, // -------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x00, // -----------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x7e, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------------OOOOOO----OOOOOO---------------------------.... - 0x00, 0x00, 0x7e, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------------OOOOOO----OOOOOO---------------------------.... - 0x00, 0x00, 0xfc, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOO-----OOOOOO---------------------------.... - 0x00, 0x00, 0xfc, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOO-----OOOOOO---------------------------.... - 0x00, 0x01, 0xfc, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----OOOOOO---------------------------.... - 0x00, 0x01, 0xf8, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOOO------OOOOOO---------------------------.... - 0x00, 0x01, 0xf8, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOOO------OOOOOO---------------------------.... - 0x00, 0x03, 0xf8, 0x1f, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOOO------OOOOOO---------------------------.... - 0x00, 0x03, 0xf0, 0x1f, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOO-------OOOOOO---------------------------.... - 0x00, 0x03, 0xf0, 0x1f, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOO-------OOOOOO---------------------------.... - 0x00, 0x07, 0xe0, 0x1f, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOO--------OOOOOO---------------------------.... - 0x00, 0x07, 0xe0, 0x1f, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOO--------OOOOOO---------------------------.... - 0x00, 0x0f, 0xe0, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOOOO--------OOOOOO---------------------------.... - 0x00, 0x0f, 0xc0, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOOO---------OOOOOO---------------------------.... - 0x00, 0x0f, 0xc0, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOOO---------OOOOOO---------------------------.... - 0x00, 0x1f, 0xc0, 0x1f, 0xff, 0xff, 0xfe, 0x00, // -----------OOOOOOO---------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x00, 0x1f, 0x80, 0x1f, 0xff, 0xff, 0xfe, 0x00, // -----------OOOOOO----------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x00, 0x1f, 0x80, 0x1f, 0xff, 0xff, 0xfe, 0x00, // -----------OOOOOO----------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x00, 0x3f, 0x00, 0x1f, 0xff, 0xff, 0xfe, 0x00, // ----------OOOOOO-----------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x00, 0x3f, 0x00, 0x1f, 0xff, 0xff, 0xfe, 0x00, // ----------OOOOOO-----------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x00, 0x7f, 0x00, 0x1f, 0xff, 0xff, 0xfe, 0x00, // ---------OOOOOOO-----------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------------------------.... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------------------------.... - 0x00, 0xfe, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // --------OOOOOOO------------OOOOOO---------------------------.... - 0x00, 0xfc, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // --------OOOOOO-------------OOOOOO---------------------------.... - 0x00, 0xfc, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // --------OOOOOO-------------OOOOOO---------------------------.... - 0x01, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOO---------------------------.... - 0x01, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOO---------------------------.... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------------.... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------------.... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------------.... - 0x07, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------------.... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO---------------------------.... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO---------------------------.... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO---------------------------.... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO---------------------------.... - 0x1f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------OOOOOO---------------------------.... - 0x1f, 0x80, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---OOOOOO------------------OOOOOO---------------------------.... - 0x1f, 0x80, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---OOOOOO------------------OOOOOO---------------------------.... - 0x3f, 0x80, 0x00, 0x1f, 0xff, 0xff, 0xff, 0x80, // --OOOOOOO------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x3f, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0x80, // --OOOOOO-------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x3f, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0x80, // --OOOOOO-------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x7e, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0x80, // -OOOOOO--------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x7e, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0x80, // -OOOOOO--------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0xfe, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0x80, // OOOOOOO--------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 199, char width: 43 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOO-----------..................... - 0x00, 0x00, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOOOO--------..................... - 0x00, 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOOOO------..................... - 0x00, 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOO-----..................... - 0x00, 0x0f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x00, 0x1f, 0xff, 0x9f, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOO--OOOOOOOOOOOOO---..................... - 0x00, 0x3f, 0xf0, 0x00, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO------------OOOOOOOO---..................... - 0x00, 0x7f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---------OOOOOOOOO----------------OOOOOO---..................... - 0x00, 0xff, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------------OOOO---..................... - 0x01, 0xfe, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, // -------OOOOOOOO----------------------OOO---..................... - 0x01, 0xfc, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, // -------OOOOOOO-------------------------O---..................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------------------------..................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------------------..................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO---------------------------------..................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO---------------------------------..................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------------..................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------------------------..................... - 0x03, 0xfc, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------------------O---..................... - 0x01, 0xfc, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, // -------OOOOOOO------------------------OO---..................... - 0x00, 0xfe, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, // --------OOOOOOO----------------------OOO---..................... - 0x00, 0xff, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------------OOOO---..................... - 0x00, 0x7f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---------OOOOOOOOO----------------OOOOOO---..................... - 0x00, 0x3f, 0xf0, 0x00, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO------------OOOOOOOO---..................... - 0x00, 0x1f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x00, 0x0f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x00, 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOO-----..................... - 0x00, 0x01, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOOOO-------..................... - 0x00, 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOO---------..................... - 0x00, 0x00, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOO-------------..................... - 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOO---------------..................... - 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOO--------------..................... - 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOO--------------..................... - 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOO-------------..................... - 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOO-------------..................... - 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOO-------------..................... - 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOO-------------..................... - 0x00, 0x00, 0x20, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------------O------OOOOO-------------..................... - 0x00, 0x00, 0x3f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOO-------------..................... - 0x00, 0x00, 0x3f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOO-------------..................... - 0x00, 0x00, 0x3f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOO--------------..................... - 0x00, 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOO----------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - - // ASCII: 200, char width: 39 - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--------------------......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-------------------......................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------------......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO------------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO----------------......................... - 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOO----------------......................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO---------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 201, char width: 39 - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOO------------......................... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-------------......................... - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO-------------......................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO--------------......................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO---------------......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO----------------......................... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 202, char width: 39 - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOO---------------......................... - 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOO--------------......................... - 0x00, 0x00, 0xf7, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------------OOOO-OOOO--------------......................... - 0x00, 0x01, 0xf7, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-OOOOO-------------......................... - 0x00, 0x03, 0xe3, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO---OOOOO------------......................... - 0x00, 0x07, 0xc1, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-----OOOOO-----------......................... - 0x00, 0x07, 0x80, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------------OOOO-------OOOO-----------......................... - 0x00, 0x0f, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---------OOOO----------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 203, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x1f, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-----OOOOOOO---------......................... - 0x00, 0x1f, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-----OOOOOOO---------......................... - 0x00, 0x1f, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-----OOOOOOO---------......................... - 0x00, 0x1f, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-----OOOOOOO---------......................... - 0x00, 0x1f, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-----OOOOOOO---------......................... - 0x00, 0x1f, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-----OOOOOOO---------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 204, char width: 18 - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------.............................................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------.............................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------.............................................. - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------.............................................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------.............................................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - - // ASCII: 205, char width: 18 - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--.............................................. - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---.............................................. - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---.............................................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----.............................................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----.............................................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------.............................................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................................. - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - - // ASCII: 206, char width: 18 - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-----.............................................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................................. - 0x07, 0xbc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOO-OOOO----.............................................. - 0x0f, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-OOOOO---.............................................. - 0x1f, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---OOOOO--.............................................. - 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO-----OOOOO-.............................................. - 0x3c, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO-------OOOO-.............................................. - 0x78, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO---------OOOO.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - - // ASCII: 207, char width: 18 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0xfe, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-----OOOOOOO............................................. - 0xfe, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-----OOOOOOO............................................. - 0xfe, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-----OOOOOOO............................................. - 0xfe, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-----OOOOOOO............................................. - 0xfe, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-----OOOOOOO............................................. - 0xfe, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-----OOOOOOO............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - - // ASCII: 208, char width: 48 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOO---------------------................ - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO-----------------................ - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------................ - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------................ - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------................ - 0x03, 0xf8, 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOO----------OOOOOOOOOOOOOOO----------................ - 0x03, 0xf8, 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOOOOOOO---------................ - 0x03, 0xf8, 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOO-----------------OOOOOOOOOO--------................ - 0x03, 0xf8, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOO-------------------OOOOOOOO--------................ - 0x03, 0xf8, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOOOO-------................ - 0x03, 0xf8, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, // ------OOOOOOO---------------------OOOOOOOO------................ - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOO------................ - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOO------................ - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO-----................ - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO-----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOO-----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOOO-------------------------OOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOOO-------------------------OOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOOO-------------------------OOOOOO----................ - 0xff, 0xff, 0xfe, 0x00, 0x03, 0xf0, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOO---------------OOOOOO----................ - 0xff, 0xff, 0xfe, 0x00, 0x03, 0xf0, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOO---------------OOOOOO----................ - 0xff, 0xff, 0xfe, 0x00, 0x03, 0xf0, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOO---------------OOOOOO----................ - 0xff, 0xff, 0xfe, 0x00, 0x03, 0xf0, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOO---------------OOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOOO-------------------------OOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOOO-------------------------OOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOOO-------------------------OOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOOO-------------------------OOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOOO-------------------------OOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOO-----................ - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO-----................ - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO-----................ - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOO------................ - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOO------................ - 0x03, 0xf8, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOOO---------------------OOOOOOO-------................ - 0x03, 0xf8, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOOOO-------................ - 0x03, 0xf8, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOO-------------------OOOOOOOO--------................ - 0x03, 0xf8, 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOO-----------------OOOOOOOOOO--------................ - 0x03, 0xf8, 0x00, 0x1f, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOOOOOOOO---------................ - 0x03, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------................ - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------................ - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------................ - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------------................ - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO------------------................ - 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOO----------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - - // ASCII: 209, char width: 46 - 0x00, 0x00, 0x7c, 0x03, 0x80, 0x00, 0x00, 0x00, // -----------------OOOOO--------OOO-------------.................. - 0x00, 0x00, 0xff, 0x03, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOO------OOO-------------.................. - 0x00, 0x01, 0xff, 0x87, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOO----OOOO-------------.................. - 0x00, 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOO-------------.................. - 0x00, 0x03, 0xc7, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------OOOO---OOOOOOOOOOO--------------.................. - 0x00, 0x03, 0xc1, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------OOOO-----OOOOOOOOO--------------.................. - 0x00, 0x03, 0x80, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------OOO-------OOOOOOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x03, 0xfe, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOO-------------------OOOOOO------.................. - 0x03, 0xfe, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOO-------------------OOOOOO------.................. - 0x03, 0xff, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOO------------------OOOOOO------.................. - 0x03, 0xff, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOO------------------OOOOOO------.................. - 0x03, 0xff, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO-----------------OOOOOO------.................. - 0x03, 0xff, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO-----------------OOOOOO------.................. - 0x03, 0xff, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO----------------OOOOOO------.................. - 0x03, 0xff, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO----------------OOOOOO------.................. - 0x03, 0xff, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO---------------OOOOOO------.................. - 0x03, 0xf7, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-OOOOOO---------------OOOOOO------.................. - 0x03, 0xf7, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-OOOOOOO--------------OOOOOO------.................. - 0x03, 0xf3, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--OOOOOO--------------OOOOOO------.................. - 0x03, 0xf3, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--OOOOOO--------------OOOOOO------.................. - 0x03, 0xf1, 0xf8, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO---OOOOOO-------------OOOOOO------.................. - 0x03, 0xf1, 0xf8, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO---OOOOOO-------------OOOOOO------.................. - 0x03, 0xf0, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOO------------OOOOOO------.................. - 0x03, 0xf0, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOO------------OOOOOO------.................. - 0x03, 0xf0, 0x7e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-----OOOOOO-----------OOOOOO------.................. - 0x03, 0xf0, 0x7e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-----OOOOOO-----------OOOOOO------.................. - 0x03, 0xf0, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO----------OOOOOO------.................. - 0x03, 0xf0, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO----------OOOOOO------.................. - 0x03, 0xf0, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOO---------OOOOOO------.................. - 0x03, 0xf0, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOO---------OOOOOO------.................. - 0x03, 0xf0, 0x1f, 0xc0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOOO--------OOOOOO------.................. - 0x03, 0xf0, 0x0f, 0xc0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--------OOOOOO--------OOOOOO------.................. - 0x03, 0xf0, 0x0f, 0xe0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--------OOOOOOO-------OOOOOO------.................. - 0x03, 0xf0, 0x07, 0xe0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO---------OOOOOO-------OOOOOO------.................. - 0x03, 0xf0, 0x07, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO---------OOOOOOO------OOOOOO------.................. - 0x03, 0xf0, 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------OOOOOO------OOOOOO------.................. - 0x03, 0xf0, 0x03, 0xf8, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------OOOOOOO-----OOOOOO------.................. - 0x03, 0xf0, 0x01, 0xf8, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOO-----OOOOOO------.................. - 0x03, 0xf0, 0x01, 0xfc, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOO----OOOOOO------.................. - 0x03, 0xf0, 0x00, 0xfc, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------------OOOOOO----OOOOOO------.................. - 0x03, 0xf0, 0x00, 0xfc, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------------OOOOOO----OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x7e, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO---OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x7e, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO---OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x3f, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO--OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x3f, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO--OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x1f, 0xbf, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x1f, 0xbf, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOOOO------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - - // ASCII: 210, char width: 49 - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO--------------------------............... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO-------------------------............... - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOO------------------------............... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO------------------------............... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-----------------------............... - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOO----------------------............... - 0x00, 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOO----------------------............... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOO---------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOO-------------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x3f, 0xfe, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO---OOOOOOOOOOOO-----------............... - 0x00, 0x7f, 0xe0, 0x03, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------OOOOOOOOO----------............... - 0x00, 0x7f, 0x80, 0x00, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO---------------OOOOOOOO---------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x03, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x00, 0x7f, 0x80, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO--------------OOOOOOOOO---------............... - 0x00, 0x3f, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------OOOOOOOOOO----------............... - 0x00, 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOO---------------............... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO-----------------............... - 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOO--------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 211, char width: 49 - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOO------------------............... - 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOO-------------------............... - 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOOO-------------------............... - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOO--------------------............... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOO---------------------............... - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOO----------------------............... - 0x00, 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOO-----------------------............... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-----------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOO-------------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x3f, 0xfe, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO---OOOOOOOOOOOO-----------............... - 0x00, 0x7f, 0xe0, 0x03, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------OOOOOOOOO----------............... - 0x00, 0x7f, 0x80, 0x00, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO---------------OOOOOOOO---------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x03, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x00, 0x7f, 0x80, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO--------------OOOOOOOOO---------............... - 0x00, 0x3f, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------OOOOOOOOOO----------............... - 0x00, 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOO---------------............... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO-----------------............... - 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOO--------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 212, char width: 49 - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO---------------------............... - 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOO--------------------............... - 0x00, 0x00, 0x0f, 0x78, 0x00, 0x00, 0x00, 0x00, // --------------------OOOO-OOOO--------------------............... - 0x00, 0x00, 0x1f, 0x7c, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO-OOOOO-------------------............... - 0x00, 0x00, 0x3e, 0x3e, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO---OOOOO------------------............... - 0x00, 0x00, 0x7c, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----OOOOO-----------------............... - 0x00, 0x00, 0x78, 0x0f, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO-------OOOO-----------------............... - 0x00, 0x00, 0xf0, 0x07, 0x80, 0x00, 0x00, 0x00, // ----------------OOOO---------OOOO----------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOO-------------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x3f, 0xfe, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO---OOOOOOOOOOOO-----------............... - 0x00, 0x7f, 0xe0, 0x03, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------OOOOOOOOO----------............... - 0x00, 0x7f, 0x80, 0x00, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO---------------OOOOOOOO---------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x03, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x00, 0x7f, 0x80, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO--------------OOOOOOOOO---------............... - 0x00, 0x3f, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------OOOOOOOOOO----------............... - 0x00, 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOO---------------............... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO-----------------............... - 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOO--------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 213, char width: 49 - 0x00, 0x00, 0x3e, 0x01, 0xc0, 0x00, 0x00, 0x00, // ------------------OOOOO--------OOO---------------............... - 0x00, 0x00, 0x7f, 0x81, 0xc0, 0x00, 0x00, 0x00, // -----------------OOOOOOOO------OOO---------------............... - 0x00, 0x00, 0xff, 0xc3, 0xc0, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----OOOO---------------............... - 0x00, 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOO---------------............... - 0x00, 0x01, 0xe3, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------------OOOO---OOOOOOOOOOO----------------............... - 0x00, 0x01, 0xe0, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------------OOOO-----OOOOOOOOO----------------............... - 0x00, 0x01, 0xc0, 0x7f, 0x00, 0x00, 0x00, 0x00, // ---------------OOO-------OOOOOOO-----------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOO-------------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x3f, 0xfe, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO---OOOOOOOOOOOO-----------............... - 0x00, 0x7f, 0xe0, 0x03, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------OOOOOOOOO----------............... - 0x00, 0x7f, 0x80, 0x00, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO---------------OOOOOOOO---------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x03, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x00, 0x7f, 0x80, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO--------------OOOOOOOOO---------............... - 0x00, 0x3f, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------OOOOOOOOOO----------............... - 0x00, 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOO---------------............... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO-----------------............... - 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOO--------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 214, char width: 49 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x01, 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----OOOOOOO---------------............... - 0x00, 0x01, 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----OOOOOOO---------------............... - 0x00, 0x01, 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----OOOOOOO---------------............... - 0x00, 0x01, 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----OOOOOOO---------------............... - 0x00, 0x01, 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----OOOOOOO---------------............... - 0x00, 0x01, 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----OOOOOOO---------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOO-------------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x3f, 0xfe, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO---OOOOOOOOOOOO-----------............... - 0x00, 0x7f, 0xe0, 0x03, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------OOOOOOOOO----------............... - 0x00, 0x7f, 0x80, 0x00, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO---------------OOOOOOOO---------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x03, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x00, 0x7f, 0x80, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO--------------OOOOOOOOO---------............... - 0x00, 0x3f, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------OOOOOOOOOO----------............... - 0x00, 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOO---------------............... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO-----------------............... - 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOO--------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 215, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x08, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, // ------------O--------------------------O------------............ - 0x00, 0x1c, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, // -----------OOO------------------------OOO-----------............ - 0x00, 0x3c, 0x00, 0x00, 0x03, 0xc0, 0x00, 0x00, // ----------OOOO------------------------OOOO----------............ - 0x00, 0x7e, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ---------OOOOOO----------------------OOOOOO---------............ - 0x00, 0x7f, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ---------OOOOOOO--------------------OOOOOOO---------............ - 0x00, 0x3f, 0x80, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ----------OOOOOOO------------------OOOOOOO----------............ - 0x00, 0x1f, 0xc0, 0x00, 0x3f, 0x80, 0x00, 0x00, // -----------OOOOOOO----------------OOOOOOO-----------............ - 0x00, 0x0f, 0xe0, 0x00, 0x7f, 0x00, 0x00, 0x00, // ------------OOOOOOO--------------OOOOOOO------------............ - 0x00, 0x07, 0xf0, 0x00, 0xfe, 0x00, 0x00, 0x00, // -------------OOOOOOO------------OOOOOOO-------------............ - 0x00, 0x07, 0xf8, 0x01, 0xfe, 0x00, 0x00, 0x00, // -------------OOOOOOOO----------OOOOOOOO-------------............ - 0x00, 0x03, 0xfc, 0x03, 0xfc, 0x00, 0x00, 0x00, // --------------OOOOOOOO--------OOOOOOOO--------------............ - 0x00, 0x01, 0xfe, 0x07, 0xf8, 0x00, 0x00, 0x00, // ---------------OOOOOOOO------OOOOOOOO---------------............ - 0x00, 0x00, 0xfe, 0x07, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOOOOO------OOOOOOO----------------............ - 0x00, 0x00, 0x7f, 0x0f, 0xe0, 0x00, 0x00, 0x00, // -----------------OOOOOOO----OOOOOOO-----------------............ - 0x00, 0x00, 0x3f, 0x9f, 0xc0, 0x00, 0x00, 0x00, // ------------------OOOOOOO--OOOOOOO------------------............ - 0x00, 0x00, 0x1f, 0xff, 0x80, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOOO-------------------............ - 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOO--------------------............ - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO---------------------............ - 0x00, 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOO---------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO---------------------............ - 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOO--------------------............ - 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOO--------------------............ - 0x00, 0x00, 0x1f, 0xff, 0x80, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOOO-------------------............ - 0x00, 0x00, 0x3f, 0x9f, 0xc0, 0x00, 0x00, 0x00, // ------------------OOOOOOO--OOOOOOO------------------............ - 0x00, 0x00, 0x7f, 0x0f, 0xe0, 0x00, 0x00, 0x00, // -----------------OOOOOOO----OOOOOOO-----------------............ - 0x00, 0x00, 0xfe, 0x07, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOOOOO------OOOOOOO----------------............ - 0x00, 0x01, 0xfc, 0x03, 0xf8, 0x00, 0x00, 0x00, // ---------------OOOOOOO--------OOOOOOO---------------............ - 0x00, 0x03, 0xf8, 0x01, 0xfc, 0x00, 0x00, 0x00, // --------------OOOOOOO----------OOOOOOO--------------............ - 0x00, 0x07, 0xf8, 0x01, 0xfe, 0x00, 0x00, 0x00, // -------------OOOOOOOO----------OOOOOOOO-------------............ - 0x00, 0x0f, 0xf0, 0x00, 0xff, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------OOOOOOOO------------............ - 0x00, 0x1f, 0xe0, 0x00, 0x7f, 0x80, 0x00, 0x00, // -----------OOOOOOOO--------------OOOOOOOO-----------............ - 0x00, 0x1f, 0xc0, 0x00, 0x3f, 0x80, 0x00, 0x00, // -----------OOOOOOO----------------OOOOOOO-----------............ - 0x00, 0x3f, 0x80, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ----------OOOOOOO------------------OOOOOOO----------............ - 0x00, 0x7f, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ---------OOOOOOO--------------------OOOOOOO---------............ - 0x00, 0x7e, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ---------OOOOOO----------------------OOOOOO---------............ - 0x00, 0x3c, 0x00, 0x00, 0x03, 0xc0, 0x00, 0x00, // ----------OOOO------------------------OOOO----------............ - 0x00, 0x18, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, // -----------OO--------------------------OO-----------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 216, char width: 49 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, // ------------------------------------------OO-----............... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x78, 0x00, 0x00, // -------------------OOOOOOOOOOO-----------OOOO----............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0xfc, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO-------OOOOOO---............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0xf8, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO-----OOOOO----............... - 0x00, 0x07, 0xff, 0xff, 0xf1, 0xf0, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO---OOOOO-----............... - 0x00, 0x1f, 0xff, 0xff, 0xfb, 0xe0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO-OOOOO------............... - 0x00, 0x3f, 0xfe, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----------OOOOOOOOOOOOO---OOOOOOOOOOOOOOOOO------............... - 0x00, 0x7f, 0xe0, 0x03, 0xff, 0xc0, 0x00, 0x00, // ---------OOOOOOOOOO-----------OOOOOOOOOOOO-------............... - 0x00, 0x7f, 0x80, 0x00, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOO---------------OOOOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x01, 0xfc, 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, // -------OOOOOOO-------------------OOOOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, // ------OOOOOOO-------------------OOOOOOOOOOO------............... - 0x07, 0xf0, 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------OOOOOOOOOOOO------............... - 0x07, 0xf0, 0x00, 0x03, 0xf7, 0xf0, 0x00, 0x00, // -----OOOOOOO------------------OOOOOO-OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x03, 0xe7, 0xf0, 0x00, 0x00, // -----OOOOOO-------------------OOOOO--OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x07, 0xc3, 0xf0, 0x00, 0x00, // -----OOOOOO------------------OOOOO----OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x0f, 0xc3, 0xf0, 0x00, 0x00, // ----OOOOOOO-----------------OOOOOO----OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, // ----OOOOOOO----------------OOOOOO-----OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x1f, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x3e, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO----------------OOOOO--------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x7e, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO---------------OOOOOO--------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO--------------OOOOOO---------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0xf8, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO--------------OOOOO----------OOOOOO----............... - 0x1f, 0xc0, 0x01, 0xf0, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-------------OOOOO-----------OOOOOO----............... - 0x1f, 0xc0, 0x03, 0xe0, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO------------OOOOO------------OOOOOO----............... - 0x1f, 0xc0, 0x07, 0xe0, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------OOOOOO------------OOOOOO----............... - 0x0f, 0xc0, 0x07, 0xc0, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------OOOOO-------------OOOOOO----............... - 0x0f, 0xc0, 0x0f, 0x80, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO----------OOOOO--------------OOOOOO----............... - 0x0f, 0xc0, 0x1f, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO---------OOOOO---------------OOOOOO----............... - 0x0f, 0xc0, 0x3f, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO--------OOOOOO---------------OOOOOO----............... - 0x0f, 0xc0, 0x7e, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-------OOOOOO----------------OOOOOO----............... - 0x0f, 0xc0, 0x7c, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO-------OOOOO----------------OOOOOOO----............... - 0x0f, 0xe0, 0xf8, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO-----OOOOO-----------------OOOOOOO----............... - 0x0f, 0xe1, 0xf8, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----OOOOOOO----OOOOOO-----------------OOOOOO-----............... - 0x07, 0xe3, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---OOOOOO------------------OOOOOO-----............... - 0x07, 0xe3, 0xe0, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOO---OOOOO------------------OOOOOOO-----............... - 0x07, 0xf7, 0xc0, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-OOOOO-------------------OOOOOOO-----............... - 0x03, 0xff, 0xc0, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOOOOOOO------------------OOOOOOO------............... - 0x03, 0xff, 0x80, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOOOOOO-------------------OOOOOOO------............... - 0x03, 0xff, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOOOOO-------------------OOOOOOO-------............... - 0x01, 0xfe, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOOO--------------------OOOOOOO-------............... - 0x00, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --------OOOOOOO-------------------OOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x00, 0xff, 0xc0, 0x01, 0xff, 0x00, 0x00, 0x00, // --------OOOOOOOOOO-------------OOOOOOOOO---------............... - 0x01, 0xff, 0xf0, 0x07, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOO---------OOOOOOOOOO----------............... - 0x03, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x07, 0xef, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOO-OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x07, 0xc7, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOO---OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x0f, 0x81, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------OOOOOOOOOOOOOOOOOOO---------------............... - 0x1f, 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------OOOOOOOOOOOOOOO-----------------............... - 0x0f, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOO------------OOOOOOOOO--------------------............... - 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OO------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 217, char width: 45 - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO------------------------................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------------................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------------................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO----------------------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO---------------------................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO--------------------................... - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOO--------------------................... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x01, 0xf8, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOO-------------------OOOOOOO------................... - 0x01, 0xfc, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOO------------------OOOOOO-------................... - 0x00, 0xfe, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // --------OOOOOOO----------------OOOOOOO-------................... - 0x00, 0xff, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------OOOOOOO--------................... - 0x00, 0x7f, 0x80, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOO-----------OOOOOOOOO--------................... - 0x00, 0x7f, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------................... - 0x00, 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOO----------................... - 0x00, 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOO-----------................... - 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOO------------................... - 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOO--------------................... - 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOO-----------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - - // ASCII: 218, char width: 45 - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOO----------------................... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOO-----------------................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO-----------------................... - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOO------------------................... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-------------------................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO--------------------................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------OOOO---------------------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO---------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x01, 0xf8, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOO-------------------OOOOOOO------................... - 0x01, 0xfc, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOO------------------OOOOOO-------................... - 0x00, 0xfe, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // --------OOOOOOO----------------OOOOOOO-------................... - 0x00, 0xff, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------OOOOOOO--------................... - 0x00, 0x7f, 0x80, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOO-----------OOOOOOOOO--------................... - 0x00, 0x7f, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------................... - 0x00, 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOO----------................... - 0x00, 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOO-----------................... - 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOO------------................... - 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOO--------------................... - 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOO-----------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - - // ASCII: 219, char width: 45 - 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOO-------------------................... - 0x00, 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOO------------------................... - 0x00, 0x00, 0x3d, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOO-OOOO------------------................... - 0x00, 0x00, 0x7d, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-OOOOO-----------------................... - 0x00, 0x00, 0xf8, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO---OOOOO----------------................... - 0x00, 0x01, 0xf0, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-----OOOOO---------------................... - 0x00, 0x01, 0xe0, 0x3c, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO-------OOOO---------------................... - 0x00, 0x03, 0xc0, 0x1e, 0x00, 0x00, 0x00, 0x00, // --------------OOOO---------OOOO--------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x01, 0xf8, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOO-------------------OOOOOOO------................... - 0x01, 0xfc, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOO------------------OOOOOO-------................... - 0x00, 0xfe, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // --------OOOOOOO----------------OOOOOOO-------................... - 0x00, 0xff, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------OOOOOOO--------................... - 0x00, 0x7f, 0x80, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOO-----------OOOOOOOOO--------................... - 0x00, 0x7f, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------................... - 0x00, 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOO----------................... - 0x00, 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOO-----------................... - 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOO------------................... - 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOO--------------................... - 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOO-----------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - - // ASCII: 220, char width: 45 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x07, 0xf0, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-----OOOOOOO-------------................... - 0x00, 0x07, 0xf0, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-----OOOOOOO-------------................... - 0x00, 0x07, 0xf0, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-----OOOOOOO-------------................... - 0x00, 0x07, 0xf0, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-----OOOOOOO-------------................... - 0x00, 0x07, 0xf0, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-----OOOOOOO-------------................... - 0x00, 0x07, 0xf0, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-----OOOOOOO-------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x01, 0xf8, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOO-------------------OOOOOOO------................... - 0x01, 0xfc, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOO------------------OOOOOO-------................... - 0x00, 0xfe, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // --------OOOOOOO----------------OOOOOOO-------................... - 0x00, 0xff, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------OOOOOOO--------................... - 0x00, 0x7f, 0x80, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOO-----------OOOOOOOOO--------................... - 0x00, 0x7f, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------................... - 0x00, 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOO----------................... - 0x00, 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOO-----------................... - 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOO------------................... - 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOO--------------................... - 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOO-----------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - - // ASCII: 221, char width: 38 - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO------------.......................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO-------------.......................... - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOO-------------.......................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO--------------.......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO---------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO-----------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0xfe, 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // OOOOOOO------------------------OOOOOOO.......................... - 0x7f, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // -OOOOOOO----------------------OOOOOOO-.......................... - 0x3f, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --OOOOOO----------------------OOOOOO--.......................... - 0x3f, 0x80, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // --OOOOOOO--------------------OOOOOOO--.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0xc0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOO------------------OOOOOOO---.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO----------OOOOOOO-------.......................... - 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO----------OOOOOO--------.......................... - 0x00, 0xfe, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO--------OOOOOOO--------.......................... - 0x00, 0x7e, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO--------OOOOOO---------.......................... - 0x00, 0x3f, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO------OOOOOOO---------.......................... - 0x00, 0x3f, 0x87, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO----OOOOOOO----------.......................... - 0x00, 0x1f, 0x87, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----OOOOOO-----------.......................... - 0x00, 0x1f, 0xcf, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO--OOOOOOO-----------.......................... - 0x00, 0x0f, 0xcf, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO--OOOOOO------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOO--------------.......................... - 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOO--------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 222, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOO------------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xf0, 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO----.......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO----.......................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO----.......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO----.......................... - 0x03, 0xf0, 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOOOOO-----.......................... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO-----.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO-------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOO-----------.......................... - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO----------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 223, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOO--------------......................... - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO------------......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO-----------......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x00, 0xff, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO-------OOOOOOO---------......................... - 0x01, 0xfc, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-----------OOOOOO--------......................... - 0x01, 0xf8, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------------OOOOO--------......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO-------......................... - 0x03, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOO-------......................... - 0x03, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOO-------......................... - 0x03, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOO-------......................... - 0x03, 0xe0, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------------OOOOOOO-------......................... - 0x03, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------------OOOOOOOOO-------......................... - 0x03, 0xe0, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOO----------OOOOOOOOOOOO------......................... - 0x03, 0xe0, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------OOOOOOOOO----------......................... - 0x03, 0xe0, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOOOO-------------......................... - 0x03, 0xe0, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOOO--------------......................... - 0x03, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOO---------------......................... - 0x03, 0xe0, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOO----------------......................... - 0x03, 0xe0, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOO----------------......................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO----------------......................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO----------------......................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO----------------......................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO----------------......................... - 0x03, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOO---------------......................... - 0x03, 0xe0, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOOO--------------......................... - 0x03, 0xe0, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOOOO-------------......................... - 0x03, 0xe0, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOOOOO------------......................... - 0x03, 0xe0, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOOOOOOO----------......................... - 0x03, 0xe0, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------OOOOOOOOOO---------......................... - 0x03, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------OOOOOOOOOO--------......................... - 0x03, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------------OOOOOOOOO-------......................... - 0x03, 0xe0, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOO-------------OOOOOOOOO------......................... - 0x03, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO---------------OOOOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOO----------------OOOOOOOO----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOOO----......................... - 0x03, 0xe0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO------------------OOOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO--------------------OOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO------------------OOOOOOO---......................... - 0x03, 0xe1, 0x80, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOO----OO-----------OOOOOOO----......................... - 0x03, 0xe1, 0xf8, 0x3f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOO-----OOOOOOOOO----......................... - 0x03, 0xe1, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xe1, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOOOOOO------......................... - 0x03, 0xe1, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOOOOO-------......................... - 0x03, 0xe1, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOOOO--------......................... - 0x00, 0x00, 0x1f, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOO-----------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 224, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-----------------------.......................... - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-----------------------.......................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------------------.......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------------------.......................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---------------------.......................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO--------------------.......................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-------------------.......................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO-----------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO--------------.......................... - 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOO------------.......................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO----------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xe0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----------OOOOOOOO--------.......................... - 0x03, 0x80, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOO---------------OOOOOOO-------.......................... - 0x02, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------O------------------OOOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x7f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xfe, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO------------OOOOO------.......................... - 0x07, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOO------.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------OOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO------------OOOOOOOOO------.......................... - 0x07, 0xf0, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------OOOOOOOOOOO------.......................... - 0x07, 0xfe, 0x1f, 0xdf, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----OOOOOOO-OOOOO------.......................... - 0x03, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO--OOOOO------.......................... - 0x01, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---OOOOO------.......................... - 0x00, 0xff, 0xfe, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO----OOOOO------.......................... - 0x00, 0x7f, 0xfc, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO-----OOOOO------.......................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 225, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO----------.......................... - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOO-----------.......................... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO-----------.......................... - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO------------.......................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO-------------.......................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO--------------.......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO--------------.......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO---------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOO------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO--------------.......................... - 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOO------------.......................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO----------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xe0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----------OOOOOOOO--------.......................... - 0x03, 0x80, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOO---------------OOOOOOO-------.......................... - 0x02, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------O------------------OOOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x7f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xfe, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO------------OOOOO------.......................... - 0x07, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOO------.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------OOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO------------OOOOOOOOO------.......................... - 0x07, 0xf0, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------OOOOOOOOOOO------.......................... - 0x07, 0xfe, 0x1f, 0xdf, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----OOOOOOO-OOOOO------.......................... - 0x03, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO--OOOOO------.......................... - 0x01, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---OOOOO------.......................... - 0x00, 0xff, 0xfe, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO----OOOOO------.......................... - 0x00, 0x7f, 0xfc, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO-----OOOOO------.......................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 226, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO----------------.......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO----------------.......................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO---------------.......................... - 0x00, 0x03, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOO-OOOOO--------------.......................... - 0x00, 0x07, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-OOOOO--------------.......................... - 0x00, 0x0f, 0x8f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---OOOOO-------------.......................... - 0x00, 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-----OOOO-------------.......................... - 0x00, 0x1f, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----OOOOO------------.......................... - 0x00, 0x1e, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------OOOO------------.......................... - 0x00, 0x3c, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------OOOO-----------.......................... - 0x00, 0x7c, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------OOOOO----------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO--------------.......................... - 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOO------------.......................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO----------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xe0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----------OOOOOOOO--------.......................... - 0x03, 0x80, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOO---------------OOOOOOO-------.......................... - 0x02, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------O------------------OOOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x7f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xfe, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO------------OOOOO------.......................... - 0x07, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOO------.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------OOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO------------OOOOOOOOO------.......................... - 0x07, 0xf0, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------OOOOOOOOOOO------.......................... - 0x07, 0xfe, 0x1f, 0xdf, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----OOOOOOO-OOOOO------.......................... - 0x03, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO--OOOOO------.......................... - 0x01, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---OOOOO------.......................... - 0x00, 0xff, 0xfe, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO----OOOOO------.......................... - 0x00, 0x7f, 0xfc, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO-----OOOOO------.......................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 227, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x06, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // -------------OO----------OOOO---------.......................... - 0x00, 0x1f, 0xc0, 0x70, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-------OOO----------.......................... - 0x00, 0x3f, 0xe0, 0x70, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOO------OOO----------.......................... - 0x00, 0x3f, 0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO----OOOO----------.......................... - 0x00, 0x7f, 0xf8, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO---OOOO----------.......................... - 0x00, 0x78, 0xfd, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOO---OOOOOO-OOOOO----------.......................... - 0x00, 0x78, 0x7f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----OOOOOOOOOO-----------.......................... - 0x00, 0x70, 0x3f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------OOO------OOOOOOOOO-----------.......................... - 0x00, 0x70, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOO-------OOOOOOO------------.......................... - 0x00, 0x70, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------OOO---------OOOO-------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO--------------.......................... - 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOO------------.......................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO----------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xe0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----------OOOOOOOO--------.......................... - 0x03, 0x80, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOO---------------OOOOOOO-------.......................... - 0x02, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------O------------------OOOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x7f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xfe, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO------------OOOOO------.......................... - 0x07, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOO------.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------OOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO------------OOOOOOOOO------.......................... - 0x07, 0xf0, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------OOOOOOOOOOO------.......................... - 0x07, 0xfe, 0x1f, 0xdf, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----OOOOOOO-OOOOO------.......................... - 0x03, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO--OOOOO------.......................... - 0x01, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---OOOOO------.......................... - 0x00, 0xff, 0xfe, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO----OOOOO------.......................... - 0x00, 0x7f, 0xfc, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO-----OOOOO------.......................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 228, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO----------.......................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO----------.......................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO----------.......................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO----------.......................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO----------.......................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO----------.......................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO----------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO--------------.......................... - 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOO------------.......................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO----------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xe0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----------OOOOOOOO--------.......................... - 0x03, 0x80, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOO---------------OOOOOOO-------.......................... - 0x02, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------O------------------OOOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x7f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xfe, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO------------OOOOO------.......................... - 0x07, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOO------.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------OOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO------------OOOOOOOOO------.......................... - 0x07, 0xf0, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------OOOOOOOOOOO------.......................... - 0x07, 0xfe, 0x1f, 0xdf, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----OOOOOOO-OOOOO------.......................... - 0x03, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO--OOOOO------.......................... - 0x01, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---OOOOO------.......................... - 0x00, 0xff, 0xfe, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO----OOOOO------.......................... - 0x00, 0x7f, 0xfc, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO-----OOOOO------.......................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 229, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------O-------------------.......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO----------------.......................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO--------------.......................... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOO-------------.......................... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOO-------------.......................... - 0x00, 0x1f, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----OOOOO------------.......................... - 0x00, 0x1e, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------OOOO------------.......................... - 0x00, 0x3c, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------OOOO-----------.......................... - 0x00, 0x3c, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------OOOO-----------.......................... - 0x00, 0x3c, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------OOOO-----------.......................... - 0x00, 0x3c, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------OOOO-----------.......................... - 0x00, 0x3c, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------OOOO-----------.......................... - 0x00, 0x1e, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------OOOO------------.......................... - 0x00, 0x1e, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------OOOO------------.......................... - 0x00, 0x1f, 0x8f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---OOOOOO------------.......................... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOO-------------.......................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO--------------.......................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO---------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO--------------.......................... - 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOO------------.......................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO----------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xe0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----------OOOOOOOO--------.......................... - 0x03, 0x80, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOO---------------OOOOOOO-------.......................... - 0x02, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------O------------------OOOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x7f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xfe, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO------------OOOOO------.......................... - 0x07, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOO------.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------OOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO------------OOOOOOOOO------.......................... - 0x07, 0xf0, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------OOOOOOOOOOO------.......................... - 0x07, 0xfe, 0x1f, 0xdf, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----OOOOOOO-OOOOO------.......................... - 0x03, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO--OOOOO------.......................... - 0x01, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---OOOOO------.......................... - 0x00, 0xff, 0xfe, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO----OOOOO------.......................... - 0x00, 0x7f, 0xfc, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO-----OOOOO------.......................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 230, char width: 61 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x30, 0x00, 0x00, // ---------------OOOO-----------------------OO-----------------... - 0x00, 0x3f, 0xff, 0x00, 0x07, 0xff, 0x80, 0x00, // ----------OOOOOOOOOOOOOO-------------OOOOOOOOOOOO------------... - 0x01, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xe0, 0x00, // -------OOOOOOOOOOOOOOOOOOO---------OOOOOOOOOOOOOOOO----------... - 0x03, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xf0, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO-----OOOOOOOOOOOOOOOOOOO---------... - 0x03, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xf8, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOOOOOOOOOOOOOO--------... - 0x03, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO--OOOOOOOOOOOOOOOOOOOOOOO-------... - 0x03, 0xe0, 0x03, 0xff, 0xfc, 0x01, 0xfe, 0x00, // ------OOOOO-----------OOOOOOOOOOOOOOOO---------OOOOOOOO------... - 0x03, 0x80, 0x00, 0xff, 0xf8, 0x00, 0xfe, 0x00, // ------OOO---------------OOOOOOOOOOOOO-----------OOOOOOO------... - 0x02, 0x00, 0x00, 0x7f, 0xf0, 0x00, 0x7f, 0x00, // ------O------------------OOOOOOOOOOO-------------OOOOOOO-----... - 0x00, 0x00, 0x00, 0x3f, 0xe0, 0x00, 0x3f, 0x00, // --------------------------OOOOOOOOO---------------OOOOOO-----... - 0x00, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x1f, 0x80, // --------------------------OOOOOOOO-----------------OOOOOO----... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x1f, 0x80, // --------------------------OOOOOOO------------------OOOOOO----... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x1f, 0x80, // ---------------------------OOOOOO------------------OOOOOO----... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x0f, 0x80, // ---------------------------OOOOOO-------------------OOOOO----... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x0f, 0x80, // ---------------------------OOOOOO-------------------OOOOO----... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x0f, 0xc0, // ---------------OOOOOOOOOOOOOOOOO--------------------OOOOOO---... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x0f, 0xc0, // -----------OOOOOOOOOOOOOOOOOOOOO--------------------OOOOOO---... - 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---... - 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---... - 0x03, 0xfe, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xc0, // ------OOOOOOOOO------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---... - 0x07, 0xf0, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xc0, // -----OOOOOOO---------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---... - 0x07, 0xe0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOO-----------------------------... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO-----------------------------... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO-----------------------------... - 0x0f, 0xc0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO----------------OOOOOOO----------------------------... - 0x0f, 0x80, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOOO----------------------------... - 0x0f, 0x80, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOOO----------------------------... - 0x0f, 0x80, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOOOO---------------------------... - 0x0f, 0x80, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----------------OOOOOOOOO---------------------------... - 0x0f, 0xc0, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOOOOO--------------------------... - 0x0f, 0xc0, 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOOOOOO-------------------------... - 0x0f, 0xe0, 0x01, 0xff, 0xf8, 0x00, 0x03, 0x00, // ----OOOOOOO------------OOOOOOOOOOOOOO-----------------OO-----... - 0x07, 0xf0, 0x07, 0xf3, 0xfc, 0x00, 0x0f, 0x00, // -----OOOOOOO---------OOOOOOO--OOOOOOOO--------------OOOO-----... - 0x07, 0xfe, 0x1f, 0xe1, 0xff, 0x80, 0xff, 0x00, // -----OOOOOOOOOO----OOOOOOOO----OOOOOOOOOO-------OOOOOOOO-----... - 0x03, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0x00, // ------OOOOOOOOOOOOOOOOOOOO------OOOOOOOOOOOOOOOOOOOOOOOO-----... - 0x01, 0xff, 0xff, 0x80, 0x7f, 0xff, 0xff, 0x00, // -------OOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOOO-----... - 0x00, 0xff, 0xff, 0x00, 0x3f, 0xff, 0xfe, 0x00, // --------OOOOOOOOOOOOOOOO----------OOOOOOOOOOOOOOOOOOOOO------... - 0x00, 0x7f, 0xfc, 0x00, 0x0f, 0xff, 0xf8, 0x00, // ---------OOOOOOOOOOOOO--------------OOOOOOOOOOOOOOOOO--------... - 0x00, 0x0f, 0xf0, 0x00, 0x01, 0xff, 0x80, 0x00, // ------------OOOOOOOO-------------------OOOOOOOOOO------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - - // ASCII: 231, char width: 34 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOO-----------.............................. - 0x00, 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOO-------.............................. - 0x00, 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x3f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO----.............................. - 0x01, 0xff, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO----------OOOO----.............................. - 0x01, 0xfc, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO--------------OO----.............................. - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO---------------------.............................. - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------.............................. - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------.............................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-----------------------.............................. - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-----------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-----------------------.............................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-----------------------.............................. - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------.............................. - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO---------------------.............................. - 0x03, 0xfc, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO---------------O----.............................. - 0x01, 0xfe, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO------------OOO----.............................. - 0x00, 0xff, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOO-----OOOOOOO----.............................. - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x3f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x1f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOO------.............................. - 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOO---------.............................. - 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOO-----------.............................. - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------OOOO----------.............................. - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------OOOO----------.............................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOO---------.............................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOO---------.............................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOO---------.............................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOO---------.............................. - 0x00, 0x04, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------O------OOOOO---------.............................. - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO---------.............................. - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO---------.............................. - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO----------.............................. - 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOO------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - - // ASCII: 232, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------------------.......................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------------------.......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------------------.......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO--------------------.......................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO--------------------.......................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-------------------.......................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOO----------------.......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOO----------------.......................... - 0x00, 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOO------------.......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOO-------.......................... - 0x01, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO--------OOOOOOOO------.......................... - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOOO---.......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-----------------------------.......................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO--------------------------.......................... - 0x03, 0xf8, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------O----.......................... - 0x03, 0xfc, 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-----------------OOO----.......................... - 0x01, 0xff, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOO-------------OOOOO----.......................... - 0x00, 0xff, 0xe0, 0x7f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO------OOOOOOOOO----.......................... - 0x00, 0x7f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOO-----.......................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 233, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO---------.......................... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOO----------.......................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO----------.......................... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO-----------.......................... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO------------.......................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO-------------.......................... - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOO-------------.......................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO--------------.......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO---------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO-----------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOO----------------.......................... - 0x00, 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOO------------.......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOO-------.......................... - 0x01, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO--------OOOOOOOO------.......................... - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOOO---.......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-----------------------------.......................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO--------------------------.......................... - 0x03, 0xf8, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------O----.......................... - 0x03, 0xfc, 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-----------------OOO----.......................... - 0x01, 0xff, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOO-------------OOOOO----.......................... - 0x00, 0xff, 0xe0, 0x7f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO------OOOOOOOOO----.......................... - 0x00, 0x7f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOO-----.......................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 234, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO---------------.......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO---------------.......................... - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO--------------.......................... - 0x00, 0x01, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO-OOOOO-------------.......................... - 0x00, 0x03, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-OOOOO-------------.......................... - 0x00, 0x07, 0xc7, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---OOOOO------------.......................... - 0x00, 0x07, 0x83, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------OOOO-----OOOO------------.......................... - 0x00, 0x0f, 0x83, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-----OOOOO-----------.......................... - 0x00, 0x0f, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------OOOO-----------.......................... - 0x00, 0x1e, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------OOOO----------.......................... - 0x00, 0x3e, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------OOOOO---------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOO----------------.......................... - 0x00, 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOO------------.......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOO-------.......................... - 0x01, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO--------OOOOOOOO------.......................... - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOOO---.......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-----------------------------.......................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO--------------------------.......................... - 0x03, 0xf8, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------O----.......................... - 0x03, 0xfc, 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-----------------OOO----.......................... - 0x01, 0xff, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOO-------------OOOOO----.......................... - 0x00, 0xff, 0xe0, 0x7f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO------OOOOOOOOO----.......................... - 0x00, 0x7f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOO-----.......................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 235, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOO----------------.......................... - 0x00, 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOO------------.......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOO-------.......................... - 0x01, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO--------OOOOOOOO------.......................... - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOOO---.......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-----------------------------.......................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO--------------------------.......................... - 0x03, 0xf8, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------O----.......................... - 0x03, 0xfc, 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-----------------OOO----.......................... - 0x01, 0xff, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOO-------------OOOOO----.......................... - 0x00, 0xff, 0xe0, 0x7f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO------OOOOOOOOO----.......................... - 0x00, 0x7f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOO-----.......................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 236, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOO------------............................................... - 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOO------------............................................... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----------............................................... - 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOOO----------............................................... - 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO----------............................................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------............................................... - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO--------............................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--------............................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOO------............................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-----............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - - // ASCII: 237, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO.............................................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO............................................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO............................................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-............................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO--............................................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---............................................... - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---............................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO----............................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-----............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOO-------............................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - - // ASCII: 238, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-----............................................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-----............................................... - 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOO----............................................... - 0x0f, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-OOOOO---............................................... - 0x1f, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-OOOOO---............................................... - 0x3e, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO---OOOOO--............................................... - 0x3c, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO-----OOOO--............................................... - 0x7c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOO-----OOOOO-............................................... - 0x78, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO-------OOOO-............................................... - 0xf0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO---------OOOO............................................... - 0xf0, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO---------OOOOO.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - - // ASCII: 239, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----OOOOOOO.............................................. - 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----OOOOOOO.............................................. - 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----OOOOOOO.............................................. - 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----OOOOOOO.............................................. - 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----OOOOOOO.............................................. - 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----OOOOOOO.............................................. - 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----OOOOOOO.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - - // ASCII: 240, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO---------------------.......................... - 0x00, 0x1f, 0xc0, 0x0e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO----------OOO-------.......................... - 0x00, 0x0f, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO------OOOOOO-------.......................... - 0x00, 0x07, 0xe1, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOOOO-------.......................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOO-----------.......................... - 0x00, 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOO-------------.......................... - 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO---------------.......................... - 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOO---------------.......................... - 0x01, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO-OOOOOOO--------------.......................... - 0x01, 0xfc, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO----OOOOOOO-------------.......................... - 0x01, 0xe0, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------OOOOOOO------------.......................... - 0x01, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------O------------OOOOOO------------.......................... - 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOO-----------.......................... - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO----------.......................... - 0x00, 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOO---------.......................... - 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x3f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x7f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOO-------.......................... - 0x00, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOO-------.......................... - 0x01, 0xff, 0x81, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO------OOOOOOOOO------.......................... - 0x01, 0xfe, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO-----------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO-------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO----.......................... - 0x0f, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO-----------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOO----.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOO-------.......................... - 0x01, 0xff, 0x87, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOO--------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO-----------.......................... - 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOO------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 241, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x01, 0x80, 0x1e, 0x00, 0x00, 0x00, 0x00, // ---------------OO----------OOOO--------......................... - 0x00, 0x07, 0xf0, 0x1c, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-------OOO---------......................... - 0x00, 0x0f, 0xf8, 0x1c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOO------OOO---------......................... - 0x00, 0x0f, 0xfc, 0x3c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOO----OOOO---------......................... - 0x00, 0x1f, 0xfe, 0x3c, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO---OOOO---------......................... - 0x00, 0x1e, 0x3f, 0x7c, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---OOOOOO-OOOOO---------......................... - 0x00, 0x1e, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----OOOOOOOOOO----------......................... - 0x00, 0x1c, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOO------OOOOOOOOO----------......................... - 0x00, 0x1c, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOO-------OOOOOOO-----------......................... - 0x00, 0x1c, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOO---------OOOO------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x03, 0xe0, 0x7f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOOOOOO-----------......................... - 0x03, 0xe1, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOO----------......................... - 0x03, 0xe3, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOOO---------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xef, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOOOOOOOOOOOOOOO-------......................... - 0x03, 0xef, 0x80, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOO-------OOOOOOOO-------......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xfc, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOO------......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO------......................... - 0x03, 0xf8, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 242, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------------------.......................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------------------.......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------------------.......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO--------------------.......................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO--------------------.......................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-------------------.......................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOO----------------.......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OO------------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO-----------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x01, 0xfe, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOO-------.......................... - 0x03, 0xfc, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------OOOOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOO----.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOO-------.......................... - 0x01, 0xff, 0x87, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOOO-------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOO------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 243, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO---------.......................... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOO----------.......................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO----------.......................... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO-----------.......................... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO------------.......................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO-------------.......................... - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOO-------------.......................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO--------------.......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO---------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO-----------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OO------------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO-----------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x01, 0xfe, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOO-------.......................... - 0x03, 0xfc, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------OOOOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOO----.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOO-------.......................... - 0x01, 0xff, 0x87, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOOO-------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOO------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 244, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO---------------.......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO---------------.......................... - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO--------------.......................... - 0x00, 0x01, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO-OOOOO-------------.......................... - 0x00, 0x03, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-OOOOO-------------.......................... - 0x00, 0x07, 0xc7, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---OOOOO------------.......................... - 0x00, 0x07, 0x83, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------OOOO-----OOOO------------.......................... - 0x00, 0x0f, 0x83, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-----OOOOO-----------.......................... - 0x00, 0x0f, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------OOOO-----------.......................... - 0x00, 0x1e, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------OOOO----------.......................... - 0x00, 0x3e, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------OOOOO---------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OO------------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO-----------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x01, 0xfe, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOO-------.......................... - 0x03, 0xfc, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------OOOOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOO----.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOO-------.......................... - 0x01, 0xff, 0x87, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOOO-------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOO------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 245, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x03, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // --------------OO----------OOOO--------.......................... - 0x00, 0x0f, 0xe0, 0x38, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-------OOO---------.......................... - 0x00, 0x1f, 0xf0, 0x38, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOO------OOO---------.......................... - 0x00, 0x1f, 0xf8, 0x78, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO----OOOO---------.......................... - 0x00, 0x3f, 0xfc, 0x78, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOO---OOOO---------.......................... - 0x00, 0x3c, 0x7e, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---OOOOOO-OOOOO---------.......................... - 0x00, 0x3c, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----OOOOOOOOOO----------.......................... - 0x00, 0x38, 0x1f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOO------OOOOOOOOO----------.......................... - 0x00, 0x38, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOO-------OOOOOOO-----------.......................... - 0x00, 0x38, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------OOO---------OOOO------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OO------------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO-----------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x01, 0xfe, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOO-------.......................... - 0x03, 0xfc, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------OOOOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOO----.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOO-------.......................... - 0x01, 0xff, 0x87, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOOO-------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOO------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 246, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OO------------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO-----------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x01, 0xfe, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOO-------.......................... - 0x03, 0xfc, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------OOOOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOO----.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOO-------.......................... - 0x01, 0xff, 0x87, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOOO-------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOO------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 247, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 248, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, // --------------------------------OO----.......................... - 0x00, 0x00, 0x38, 0x01, 0xe0, 0x00, 0x00, 0x00, // ------------------OOO----------OOOO---.......................... - 0x00, 0x07, 0xff, 0x83, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-----OOOOO---.......................... - 0x00, 0x1f, 0xff, 0xe3, 0xe0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO---OOOOO---.......................... - 0x00, 0x3f, 0xff, 0xf7, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO-OOOOO----.......................... - 0x00, 0x7f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOO-----.......................... - 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x01, 0xfe, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOOO------.......................... - 0x03, 0xfc, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------OOOOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x07, 0xf0, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO------------OOOOOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO-------------OOOOOOOOO-----.......................... - 0x07, 0xe0, 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO------------OOOOOOOOOO-----.......................... - 0x0f, 0xc0, 0x03, 0xef, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------OOOOO-OOOOOO----.......................... - 0x0f, 0xc0, 0x07, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------OOOOO--OOOOOO----.......................... - 0x0f, 0xc0, 0x07, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------OOOOO--OOOOOO----.......................... - 0x0f, 0xc0, 0x0f, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOOO---OOOOOO----.......................... - 0x0f, 0xc0, 0x1f, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO---------OOOOO----OOOOOO----.......................... - 0x0f, 0x80, 0x1e, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----------OOOO------OOOOO----.......................... - 0x1f, 0x80, 0x3e, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO---------OOOOO------OOOOOO---.......................... - 0x1f, 0x80, 0x7c, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOOO-------OOOOOO---.......................... - 0x1f, 0x80, 0xf8, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO-------OOOOO--------OOOOOO---.......................... - 0x1f, 0x80, 0xf0, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO-------OOOO---------OOOOOO---.......................... - 0x1f, 0x81, 0xf0, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO------OOOOO---------OOOOOO---.......................... - 0x0f, 0x83, 0xe0, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-----OOOOO---------OOOOOO----.......................... - 0x0f, 0xc7, 0xc0, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO---OOOOO----------OOOOOO----.......................... - 0x0f, 0xc7, 0x80, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO---OOOO-----------OOOOOO----.......................... - 0x0f, 0xcf, 0x80, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO--OOOOO-----------OOOOOO----.......................... - 0x0f, 0xdf, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-OOOOO------------OOOOOO----.......................... - 0x0f, 0xfe, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOO------------OOOOOOO----.......................... - 0x07, 0xfe, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOO------------OOOOOO-----.......................... - 0x07, 0xfc, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOO------------OOOOOOO-----.......................... - 0x03, 0xf8, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOO-------.......................... - 0x03, 0xff, 0x87, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO----OOOOOOOOOO-------.......................... - 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x0f, 0x9f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--OOOOOOOOOOOOOOOOO----------.......................... - 0x1f, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----OOOOOOOOOOOOOO------------.......................... - 0x3e, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO--------OOOOOOOO---------------.......................... - 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOO--------------------------------.......................... - 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OO--------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 249, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----------------------......................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------------......................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---------------------......................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--------------------......................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-------------------......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-------------------......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO------------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO----------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x01, 0xfc, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOOOOO-----......................... - 0x01, 0xff, 0x9f, 0xef, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOO--OOOOOOOO-OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---OOOOOO-----......................... - 0x00, 0x1f, 0xfe, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO-----OOOOOO-----......................... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 250, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO----------......................... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOO-----------......................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO-----------......................... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO------------......................... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-------------......................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO--------------......................... - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOO--------------......................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO---------------......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO------------------......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x01, 0xfc, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOOOOO-----......................... - 0x01, 0xff, 0x9f, 0xef, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOO--OOOOOOOO-OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---OOOOOO-----......................... - 0x00, 0x1f, 0xfe, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO-----OOOOOO-----......................... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 251, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------------......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------------......................... - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO---------------......................... - 0x00, 0x01, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO-OOOOO--------------......................... - 0x00, 0x03, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-OOOOO--------------......................... - 0x00, 0x07, 0xc7, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---OOOOO-------------......................... - 0x00, 0x07, 0x83, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------OOOO-----OOOO-------------......................... - 0x00, 0x0f, 0x83, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-----OOOOO------------......................... - 0x00, 0x0f, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------OOOO------------......................... - 0x00, 0x1e, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------OOOO-----------......................... - 0x00, 0x3e, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------OOOOO----------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x01, 0xfc, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOOOOO-----......................... - 0x01, 0xff, 0x9f, 0xef, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOO--OOOOOOOO-OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---OOOOOO-----......................... - 0x00, 0x1f, 0xfe, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO-----OOOOOO-----......................... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 252, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO----------......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO----------......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO----------......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO----------......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO----------......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO----------......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO----------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x01, 0xfc, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOOOOO-----......................... - 0x01, 0xff, 0x9f, 0xef, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOO--OOOOOOOO-OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---OOOOOO-----......................... - 0x00, 0x1f, 0xfe, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO-----OOOOOO-----......................... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 253, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO---------........................... - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOO----------........................... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO----------........................... - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO-----------........................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO------------........................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO-------------........................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO-------------........................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO--------------........................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO---------------........................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........................... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOO-----------------........................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-----------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x3f, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --OOOOOO---------------------OOOOOO--........................... - 0x3f, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // --OOOOOO---------------------OOOOO---........................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO---........................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO---........................... - 0x1f, 0x80, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---OOOOOO------------------OOOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........................... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x01, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOOO-------........................... - 0x01, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOOO-------........................... - 0x01, 0xf8, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO----------OOOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0x7c, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO--------OOOOOO---------........................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO---------........................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO---------........................... - 0x00, 0x3e, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------OOOOOO----------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x1f, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO----OOOOOO-----------........................... - 0x00, 0x1f, 0x8f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---OOOOOO-----------........................... - 0x00, 0x0f, 0x8f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---OOOOO------------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO--------------........................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------........................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------........................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO----------------........................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO------------------........................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO------------------........................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------------------........................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-------------------........................... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO--------------------........................... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO--------------------........................... - 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOO---------------------........................... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----------------------........................... - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO-----------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - - // ASCII: 254, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------OO----------------......................... - 0x03, 0xe0, 0x7f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOOOOO------------......................... - 0x03, 0xe1, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOO----------......................... - 0x03, 0xe3, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOOO---------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xef, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOOOOOOOOOOOOOOO-------......................... - 0x03, 0xef, 0x80, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOO-OOOOO--------OOOOOOOO------......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xfc, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOOO-----......................... - 0x03, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO--------------OOOOOO-----......................... - 0x03, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOOO----......................... - 0x03, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO----------------OOOOOO----......................... - 0x03, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOOO----......................... - 0x03, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO--------------OOOOOO-----......................... - 0x03, 0xfc, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOOO-----......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xff, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOO---------OOOOOOOO------......................... - 0x03, 0xef, 0xc1, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOO-----OOOOOOOOO-------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xe3, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOO----------......................... - 0x03, 0xe0, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOOOOOOOOO-----------......................... - 0x03, 0xe0, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOOOO-------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 255, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO---------........................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO---------........................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO---------........................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO---------........................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO---------........................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO---------........................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO---------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x3f, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --OOOOOO---------------------OOOOOO--........................... - 0x3f, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // --OOOOOO---------------------OOOOO---........................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO---........................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO---........................... - 0x1f, 0x80, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---OOOOOO------------------OOOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........................... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x01, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOOO-------........................... - 0x01, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOOO-------........................... - 0x01, 0xf8, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO----------OOOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0x7c, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO--------OOOOOO---------........................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO---------........................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO---------........................... - 0x00, 0x3e, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------OOOOOO----------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x1f, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO----OOOOOO-----------........................... - 0x00, 0x1f, 0x8f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---OOOOOO-----------........................... - 0x00, 0x0f, 0x8f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---OOOOO------------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO--------------........................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------........................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------........................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO----------------........................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO------------------........................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO------------------........................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------------------........................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-------------------........................... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO--------------------........................... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO--------------------........................... - 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOO---------------------........................... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----------------------........................... - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO-----------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... -}; - -static const uint8_t dejavu_80_widths[224] = -{ - 20, 25, 29, 52, 39, 59, 48, 17, - 24, 24, 31, 52, 20, 22, 20, 21, - 39, 39, 39, 39, 39, 39, 39, 39, - 39, 39, 21, 21, 52, 52, 52, 33, - 62, 42, 43, 43, 48, 39, 36, 48, - 47, 18, 18, 41, 35, 54, 46, 49, - 37, 49, 43, 39, 38, 45, 42, 61, - 43, 38, 43, 24, 21, 24, 52, 31, - 31, 38, 39, 34, 39, 38, 22, 39, - 39, 17, 17, 36, 17, 60, 39, 38, - 39, 39, 26, 32, 24, 39, 37, 51, - 37, 37, 33, 39, 21, 39, 52, 20, - 20, 20, 20, 20, 20, 20, 20, 20, - 20, 20, 20, 20, 20, 20, 20, 20, - 20, 20, 20, 20, 20, 20, 20, 20, - 20, 20, 20, 20, 20, 20, 20, 20, - 20, 25, 39, 39, 39, 39, 21, 31, - 31, 62, 29, 38, 52, 22, 62, 31, - 31, 52, 25, 25, 31, 39, 39, 20, - 31, 25, 29, 38, 60, 60, 60, 33, - 42, 42, 42, 42, 42, 42, 60, 43, - 39, 39, 39, 39, 18, 18, 18, 18, - 48, 46, 49, 49, 49, 49, 49, 52, - 49, 45, 45, 45, 45, 38, 38, 39, - 38, 38, 38, 38, 38, 38, 61, 34, - 38, 38, 38, 38, 17, 17, 17, 17, - 38, 39, 38, 38, 38, 38, 38, 52, - 38, 39, 39, 39, 39, 37, 39, 37, -}; - -static const font_t dejavu_80_dsc = -{ - 224, // Letter count - 32, // First ascii code - 8, // Letters width (bytes) - 80, // Letters height (row) - 0, // Fixed width or 0 if variable - dejavu_80_widths, - dejavu_80_bitmaps -}; - -const font_t * dejavu_80_get_dsc(void) -{ - return &dejavu_80_dsc; -} - - -#endif \ No newline at end of file diff --git a/lv_misc/fonts/dejavu_80.h b/lv_misc/fonts/dejavu_80.h deleted file mode 100644 index 4b4037091..000000000 --- a/lv_misc/fonts/dejavu_80.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef DEJAVU_80_H -#define DEJAVU_80_H - -/*Use ISO8859-1 encoding in the IDE*/ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_80 != 0 - - -#include -#include "../font.h" -const font_t * dejavu_80_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/symbol_30.c b/lv_misc/fonts/symbol_30.c deleted file mode 100644 index 17119114f..000000000 --- a/lv_misc/fonts/symbol_30.c +++ /dev/null @@ -1,867 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_SYMBOL_30 != 0 - -#include -#include "../font.h" - -static const uint8_t symbol_30_bitmaps[3120] = -{ - // ASCII: 97, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x03, 0xff, 0xff, 0x00, // ------OOOOOOOOOOOOOOOOOO------.. - 0x07, 0xff, 0xff, 0x80, // -----OOOOOOOOOOOOOOOOOOOO-----.. - 0x07, 0xff, 0xff, 0x80, // -----OOOOOOOOOOOOOOOOOOOO-----.. - 0x07, 0xff, 0xff, 0x80, // -----OOOOOOOOOOOOOOOOOOOO-----.. - 0x0f, 0xff, 0xff, 0xc0, // ----OOOOOOOOOOOOOOOOOOOOOO----.. - 0x0f, 0xff, 0xff, 0xc0, // ----OOOOOOOOOOOOOOOOOOOOOO----.. - 0x0f, 0xff, 0xff, 0xc0, // ----OOOOOOOOOOOOOOOOOOOOOO----.. - 0x1f, 0xff, 0xff, 0xe0, // ---OOOOOOOOOOOOOOOOOOOOOOOO---.. - 0x1f, 0xff, 0xff, 0xe0, // ---OOOOOOOOOOOOOOOOOOOOOOOO---.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x7f, 0xff, 0xff, 0xf8, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOO-.. - 0x7f, 0xff, 0xff, 0xf8, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOO-.. - 0x7f, 0xff, 0xff, 0xf8, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOO-.. - 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.. - 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.. - 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.. - 0xe0, 0x00, 0x00, 0x1c, // OOO------------------------OOO.. - 0x60, 0x00, 0x00, 0x18, // -OO------------------------OO-.. - 0x60, 0x00, 0x03, 0x18, // -OO-------------------OO---OO-.. - 0x60, 0x00, 0x03, 0x18, // -OO-------------------OO---OO-.. - 0x70, 0x00, 0x00, 0x38, // -OOO----------------------OOO-.. - 0x30, 0x00, 0x00, 0x30, // --OO----------------------OO--.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 98, char width: 26 - 0xff, 0xfe, 0x40, 0x00, // OOOOOOOOOOOOOOO--O--------...... - 0xff, 0xfe, 0x60, 0x00, // OOOOOOOOOOOOOOO--OO-------...... - 0xff, 0xfe, 0x70, 0x00, // OOOOOOOOOOOOOOO--OOO------...... - 0xff, 0xfe, 0x78, 0x00, // OOOOOOOOOOOOOOO--OOOO-----...... - 0xff, 0xfe, 0x7c, 0x00, // OOOOOOOOOOOOOOO--OOOOO----...... - 0xff, 0xfe, 0x7e, 0x00, // OOOOOOOOOOOOOOO--OOOOOO---...... - 0xff, 0xfe, 0x7f, 0x00, // OOOOOOOOOOOOOOO--OOOOOOO--...... - 0xff, 0xfe, 0x7f, 0x80, // OOOOOOOOOOOOOOO--OOOOOOOO-...... - 0xff, 0xfe, 0x00, 0x00, // OOOOOOOOOOOOOOO-----------...... - 0xff, 0xff, 0x00, 0x00, // OOOOOOOOOOOOOOOO----------...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xfe, 0x00, 0x1f, 0xc0, // OOOOOOO------------OOOOOOO...... - 0xfe, 0x00, 0x1f, 0xc0, // OOOOOOO------------OOOOOOO...... - 0xfe, 0x00, 0x1f, 0xc0, // OOOOOOO------------OOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xfe, 0x00, 0x1f, 0xc0, // OOOOOOO------------OOOOOOO...... - 0xfe, 0x00, 0x1f, 0xc0, // OOOOOOO------------OOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xfe, 0x00, 0x1f, 0xc0, // OOOOOOO------------OOOOOOO...... - 0xfe, 0x00, 0x1f, 0xc0, // OOOOOOO------------OOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0x80, // OOOOOOOOOOOOOOOOOOOOOOOOO-...... - - // ASCII: 99, char width: 32 - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO--------------------- - 0x7f, 0xf0, 0x00, 0x00, // -OOOOOOOOOOO-------------------- - 0xff, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOO------------------- - 0xff, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOO------------------- - 0xff, 0xff, 0xff, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOO-------- - 0xff, 0xff, 0xff, 0x80, // OOOOOOOOOOOOOOOOOOOOOOOOO------- - 0xff, 0xff, 0xff, 0x80, // OOOOOOOOOOOOOOOOOOOOOOOOO------- - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO------ - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO------ - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO------ - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO------ - 0xff, 0x80, 0x00, 0x00, // OOOOOOOOO----------------------- - 0xfe, 0x00, 0x00, 0x00, // OOOOOOO------------------------- - 0xfc, 0x3f, 0xff, 0xff, // OOOOOO----OOOOOOOOOOOOOOOOOOOOOO - 0xf8, 0xff, 0xff, 0xfe, // OOOOO---OOOOOOOOOOOOOOOOOOOOOOO- - 0xf1, 0xff, 0xff, 0xfe, // OOOO---OOOOOOOOOOOOOOOOOOOOOOOO- - 0xf3, 0xff, 0xff, 0xfc, // OOOO--OOOOOOOOOOOOOOOOOOOOOOOO-- - 0xe7, 0xff, 0xff, 0xf8, // OOO--OOOOOOOOOOOOOOOOOOOOOOOO--- - 0xcf, 0xff, 0xff, 0xf0, // OO--OOOOOOOOOOOOOOOOOOOOOOOO---- - 0x8f, 0xff, 0xff, 0xe0, // O---OOOOOOOOOOOOOOOOOOOOOOO----- - 0x1f, 0xff, 0xff, 0xe0, // ---OOOOOOOOOOOOOOOOOOOOOOOO----- - 0x3f, 0xff, 0xff, 0xc0, // --OOOOOOOOOOOOOOOOOOOOOOOO------ - 0x7f, 0xff, 0xff, 0x80, // -OOOOOOOOOOOOOOOOOOOOOOOO------- - 0x7f, 0xff, 0xfe, 0x00, // -OOOOOOOOOOOOOOOOOOOOOO--------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - - // ASCII: 100, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x01, 0xff, 0x80, 0x00, // -------OOOOOOOOOO-------........ - 0x03, 0x81, 0x80, 0x00, // ------OOO------OO-------........ - 0x03, 0x01, 0xc0, 0x00, // ------OO-------OOO------........ - 0xff, 0xff, 0xff, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOO........ - 0xff, 0xff, 0xff, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOO........ - 0x30, 0x00, 0x1c, 0x00, // --OO---------------OOO--........ - 0x30, 0x00, 0x1c, 0x00, // --OO---------------OOO--........ - 0x30, 0x00, 0x1c, 0x00, // --OO---------------OOO--........ - 0x30, 0x00, 0x1c, 0x00, // --OO---------------OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x30, 0x00, 0x1c, 0x00, // --OO---------------OOO--........ - 0x30, 0x00, 0x1c, 0x00, // --OO---------------OOO--........ - 0x38, 0x00, 0x18, 0x00, // --OOO--------------OO---........ - 0x1f, 0xff, 0xf8, 0x00, // ---OOOOOOOOOOOOOOOOOO---........ - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO----........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 101, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOO-------...... - 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOO------...... - 0xcf, 0xe1, 0xb8, 0x00, // OO--OOOOOOO----OO-OOO-----...... - 0xcf, 0xe1, 0x9c, 0x00, // OO--OOOOOOO----OO--OOO----...... - 0xcf, 0xe1, 0x8e, 0x00, // OO--OOOOOOO----OO---OOO---...... - 0xcf, 0xe1, 0x87, 0x00, // OO--OOOOOOO----OO----OOO--...... - 0xcf, 0xe1, 0x83, 0x80, // OO--OOOOOOO----OO-----OOO-...... - 0xcf, 0xe1, 0x81, 0xc0, // OO--OOOOOOO----OO------OOO...... - 0xcf, 0xe1, 0x81, 0xc0, // OO--OOOOOOO----OO------OOO...... - 0xcf, 0xff, 0x81, 0xc0, // OO--OOOOOOOOOOOOO------OOO...... - 0xc7, 0xff, 0x81, 0xc0, // OO---OOOOOOOOOOOO------OOO...... - 0xc0, 0x00, 0x01, 0xc0, // OO---------------------OOO...... - 0xc0, 0x00, 0x01, 0xc0, // OO---------------------OOO...... - 0xc0, 0x00, 0x01, 0xc0, // OO---------------------OOO...... - 0xc0, 0x00, 0x01, 0xc0, // OO---------------------OOO...... - 0xc7, 0xff, 0xf9, 0xc0, // OO---OOOOOOOOOOOOOOOO--OOO...... - 0xcf, 0xff, 0xfd, 0xc0, // OO--OOOOOOOOOOOOOOOOOO-OOO...... - 0xce, 0x00, 0x1d, 0xc0, // OO--OOO------------OOO-OOO...... - 0xce, 0x00, 0x1d, 0xc0, // OO--OOO------------OOO-OOO...... - 0xce, 0x00, 0x1d, 0xc0, // OO--OOO------------OOO-OOO...... - 0xce, 0x00, 0x1d, 0xc0, // OO--OOO------------OOO-OOO...... - 0xce, 0x00, 0x1d, 0xc0, // OO--OOO------------OOO-OOO...... - 0xce, 0x00, 0x1d, 0xc0, // OO--OOO------------OOO-OOO...... - 0xce, 0x00, 0x1d, 0xc0, // OO--OOO------------OOO-OOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0x80, // OOOOOOOOOOOOOOOOOOOOOOOOO-...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 102, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x38, 0x00, // ------------------OOO-----...... - 0x00, 0x00, 0x7c, 0x00, // -----------------OOOOO----...... - 0x00, 0x00, 0xfe, 0x00, // ----------------OOOOOOO---...... - 0x00, 0x01, 0xff, 0x00, // ---------------OOOOOOOOO--...... - 0x00, 0x00, 0xff, 0x80, // ----------------OOOOOOOOO-...... - 0x00, 0x06, 0x7f, 0x80, // -------------OO--OOOOOOOO-...... - 0x00, 0x0f, 0x3f, 0x80, // ------------OOOO--OOOOOOO-...... - 0x00, 0x1f, 0x9f, 0x80, // -----------OOOOOO--OOOOOO-...... - 0x00, 0x3f, 0xcf, 0x00, // ----------OOOOOOOO--OOOO--...... - 0x00, 0x7b, 0xe6, 0x00, // ---------OOOO-OOOOO--OO---...... - 0x00, 0xf7, 0xf0, 0x00, // --------OOOO-OOOOOOO------...... - 0x01, 0xef, 0xf8, 0x00, // -------OOOO-OOOOOOOOO-----...... - 0x03, 0xdf, 0xf0, 0x00, // ------OOOO-OOOOOOOOO------...... - 0x07, 0xbf, 0xe0, 0x00, // -----OOOO-OOOOOOOOO-------...... - 0x0f, 0x7f, 0xc0, 0x00, // ----OOOO-OOOOOOOOO--------...... - 0x1e, 0xff, 0x80, 0x00, // ---OOOO-OOOOOOOOO---------...... - 0x3d, 0xff, 0x00, 0x00, // --OOOO-OOOOOOOOO----------...... - 0x7b, 0xfe, 0x00, 0x00, // -OOOO-OOOOOOOOO-----------...... - 0xff, 0xfc, 0x00, 0x00, // OOOOOOOOOOOOOO------------...... - 0xe7, 0xf8, 0x00, 0x00, // OOO--OOOOOOOO-------------...... - 0xc3, 0xf0, 0x00, 0x00, // OO----OOOOOO--------------...... - 0xc1, 0xe0, 0x00, 0x00, // OO-----OOOO---------------...... - 0xf1, 0xc0, 0x00, 0x00, // OOOO---OOO----------------...... - 0xf1, 0xc0, 0x00, 0x00, // OOOO---OOO----------------...... - 0xff, 0x80, 0x00, 0x00, // OOOOOOOOO-----------------...... - 0xff, 0x00, 0x00, 0x00, // OOOOOOOO------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 103, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x03, 0xc0, // ----------------------OOOO----.. - 0x00, 0x00, 0x07, 0xe0, // ---------------------OOOOOO---.. - 0x00, 0x00, 0x0f, 0xf0, // --------------------OOOOOOOO--.. - 0x00, 0x00, 0x0f, 0xf0, // --------------------OOOOOOOO--.. - 0x00, 0x00, 0x1f, 0xf0, // -------------------OOOOOOOOO--.. - 0x00, 0x00, 0x3f, 0xe0, // ------------------OOOOOOOOO---.. - 0x06, 0x00, 0x7f, 0xc0, // -----OO----------OOOOOOOOO----.. - 0x0f, 0x00, 0xff, 0x80, // ----OOOO--------OOOOOOOOO-----.. - 0x1f, 0x81, 0xff, 0x00, // ---OOOOOO------OOOOOOOOO------.. - 0x3f, 0xc3, 0xfe, 0x00, // --OOOOOOOO----OOOOOOOOO-------.. - 0x3f, 0xe7, 0xfc, 0x00, // --OOOOOOOOO--OOOOOOOOO--------.. - 0x1f, 0xff, 0xf8, 0x00, // ---OOOOOOOOOOOOOOOOOO---------.. - 0x0f, 0xff, 0xf0, 0x00, // ----OOOOOOOOOOOOOOOO----------.. - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----------.. - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------------.. - 0x01, 0xff, 0x80, 0x00, // -------OOOOOOOOOO-------------.. - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------------.. - 0x00, 0x7e, 0x00, 0x00, // ---------OOOOOO---------------.. - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO----------------.. - 0x00, 0x18, 0x00, 0x00, // -----------OO-----------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 104, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x0e, 0x00, 0x60, 0x00, // ----OOO----------OO-----........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x1f, 0x81, 0xf8, 0x00, // ---OOOOOO------OOOOOO---........ - 0x3f, 0xc3, 0xfc, 0x00, // --OOOOOOOO----OOOOOOOO--........ - 0x3f, 0xe7, 0xfc, 0x00, // --OOOOOOOOO--OOOOOOOOO--........ - 0x1f, 0xff, 0xf8, 0x00, // ---OOOOOOOOOOOOOOOOOO---........ - 0x0f, 0xff, 0xf0, 0x00, // ----OOOOOOOOOOOOOOOO----........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x01, 0xff, 0x80, 0x00, // -------OOOOOOOOOO-------........ - 0x01, 0xff, 0x80, 0x00, // -------OOOOOOOOOO-------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x0f, 0xff, 0xf0, 0x00, // ----OOOOOOOOOOOOOOOO----........ - 0x1f, 0xff, 0xf8, 0x00, // ---OOOOOOOOOOOOOOOOOO---........ - 0x3f, 0xe7, 0xfc, 0x00, // --OOOOOOOOO--OOOOOOOOO--........ - 0x3f, 0xc3, 0xfc, 0x00, // --OOOOOOOO----OOOOOOOO--........ - 0x3f, 0x81, 0xf8, 0x00, // --OOOOOOO------OOOOOO---........ - 0x1f, 0x00, 0xf0, 0x00, // ---OOOOO--------OOOO----........ - 0x0e, 0x00, 0x60, 0x00, // ----OOO----------OO-----........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 105, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x0c, 0x00, 0x00, 0xc0, // ----OO------------------OO----.. - 0x1e, 0x00, 0x01, 0xe0, // ---OOOO----------------OOOO---.. - 0x3f, 0x00, 0x03, 0xf0, // --OOOOOO--------------OOOOOO--.. - 0x3f, 0x80, 0x07, 0xf8, // --OOOOOOO------------OOOOOOOO-.. - 0x7f, 0xc0, 0x0f, 0xf0, // -OOOOOOOOO----------OOOOOOOO--.. - 0x3f, 0xe0, 0x1f, 0xf0, // --OOOOOOOOO--------OOOOOOOOO--.. - 0x1f, 0xf0, 0x3f, 0xe0, // ---OOOOOOOOO------OOOOOOOOO---.. - 0x0f, 0xf8, 0x7f, 0xc0, // ----OOOOOOOOO----OOOOOOOOO----.. - 0x07, 0xfc, 0xff, 0x80, // -----OOOOOOOOO--OOOOOOOOO-----.. - 0x03, 0xff, 0xff, 0x00, // ------OOOOOOOOOOOOOOOOOO------.. - 0x01, 0xff, 0xfe, 0x00, // -------OOOOOOOOOOOOOOOO-------.. - 0x00, 0xff, 0xfc, 0x00, // --------OOOOOOOOOOOOOO--------.. - 0x00, 0x7f, 0xf8, 0x00, // ---------OOOOOOOOOOOO---------.. - 0x00, 0x3f, 0xf0, 0x00, // ----------OOOOOOOOOO----------.. - 0x00, 0x1f, 0xe0, 0x00, // -----------OOOOOOOO-----------.. - 0x00, 0x0f, 0xc0, 0x00, // ------------OOOOOO------------.. - 0x00, 0x07, 0x80, 0x00, // -------------OOOO-------------.. - 0x00, 0x03, 0x00, 0x00, // --------------OO--------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 106, char width: 21 - 0x00, 0x03, 0xc0, 0x00, // --------------OOOO---........... - 0x00, 0x07, 0xe0, 0x00, // -------------OOOOOO--........... - 0x00, 0x0f, 0xf0, 0x00, // ------------OOOOOOOO-........... - 0x00, 0x1f, 0xf0, 0x00, // -----------OOOOOOOOO-........... - 0x00, 0x3f, 0xe0, 0x00, // ----------OOOOOOOOO--........... - 0x00, 0x7f, 0xc0, 0x00, // ---------OOOOOOOOO---........... - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO----........... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO-----........... - 0x03, 0xfe, 0x00, 0x00, // ------OOOOOOOOO------........... - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-------........... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO--------........... - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO---------........... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO----------........... - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO----------........... - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO---------........... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO--------........... - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-------........... - 0x03, 0xfe, 0x00, 0x00, // ------OOOOOOOOO------........... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO-----........... - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO----........... - 0x00, 0x7f, 0xc0, 0x00, // ---------OOOOOOOOO---........... - 0x00, 0x3f, 0xe0, 0x00, // ----------OOOOOOOOO--........... - 0x00, 0x1f, 0xf0, 0x00, // -----------OOOOOOOOO-........... - 0x00, 0x0f, 0xf0, 0x00, // ------------OOOOOOOO-........... - 0x00, 0x07, 0xe0, 0x00, // -------------OOOOOO--........... - 0x00, 0x03, 0xc0, 0x00, // --------------OOOO---........... - 0x00, 0x01, 0x80, 0x00, // ---------------OO----........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 107, char width: 21 - 0x1e, 0x00, 0x00, 0x00, // ---OOOO--------------........... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO-------------........... - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO------------........... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO-----------........... - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO----------........... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO---------........... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO--------........... - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-------........... - 0x03, 0xfe, 0x00, 0x00, // ------OOOOOOOOO------........... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO-----........... - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO----........... - 0x00, 0x7f, 0xc0, 0x00, // ---------OOOOOOOOO---........... - 0x00, 0x3f, 0xe0, 0x00, // ----------OOOOOOOOO--........... - 0x00, 0x3f, 0xe0, 0x00, // ----------OOOOOOOOO--........... - 0x00, 0x7f, 0xc0, 0x00, // ---------OOOOOOOOO---........... - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO----........... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO-----........... - 0x03, 0xfe, 0x00, 0x00, // ------OOOOOOOOO------........... - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-------........... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO--------........... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO---------........... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO----------........... - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO-----------........... - 0x7f, 0x80, 0x00, 0x00, // -OOOOOOOO------------........... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO-------------........... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO--------------........... - 0x0c, 0x00, 0x00, 0x00, // ----OO---------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 108, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x03, 0x00, 0x00, // --------------OO--------------.. - 0x00, 0x07, 0x80, 0x00, // -------------OOOO-------------.. - 0x00, 0x0f, 0xc0, 0x00, // ------------OOOOOO------------.. - 0x00, 0x1f, 0xe0, 0x00, // -----------OOOOOOOO-----------.. - 0x00, 0x3f, 0xf0, 0x00, // ----------OOOOOOOOOO----------.. - 0x00, 0x7f, 0xf8, 0x00, // ---------OOOOOOOOOOOO---------.. - 0x00, 0xff, 0xfc, 0x00, // --------OOOOOOOOOOOOOO--------.. - 0x01, 0xff, 0xfe, 0x00, // -------OOOOOOOOOOOOOOOO-------.. - 0x03, 0xff, 0xff, 0x00, // ------OOOOOOOOOOOOOOOOOO------.. - 0x07, 0xfc, 0xff, 0x80, // -----OOOOOOOOO--OOOOOOOOO-----.. - 0x0f, 0xf8, 0x7f, 0xc0, // ----OOOOOOOOO----OOOOOOOOO----.. - 0x1f, 0xf0, 0x3f, 0xe0, // ---OOOOOOOOO------OOOOOOOOO---.. - 0x3f, 0xe0, 0x1f, 0xf0, // --OOOOOOOOO--------OOOOOOOOO--.. - 0x3f, 0xc0, 0x0f, 0xf0, // --OOOOOOOO----------OOOOOOOO--.. - 0x7f, 0x80, 0x07, 0xf8, // -OOOOOOOO------------OOOOOOOO-.. - 0x3f, 0x00, 0x03, 0xf0, // --OOOOOO--------------OOOOOO--.. - 0x1e, 0x00, 0x01, 0xe0, // ---OOOO----------------OOOO---.. - 0x0c, 0x00, 0x00, 0xc0, // ----OO------------------OO----.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 109, char width: 17 - 0x01, 0x80, 0x00, 0x00, // -------OO--------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xe0, 0x00, 0x00, // -------OOOO------............... - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO-----............... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO----............... - 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---............... - 0x21, 0xde, 0x00, 0x00, // --O----OOO-OOOO--............... - 0x71, 0xcf, 0x00, 0x00, // -OOO---OOO--OOOO-............... - 0x79, 0xcf, 0x80, 0x00, // -OOOO--OOO--OOOOO............... - 0x3d, 0xde, 0x00, 0x00, // --OOOO-OOO-OOOO--............... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO---............... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO----............... - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-----............... - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO------............... - 0x01, 0xe0, 0x00, 0x00, // -------OOOO------............... - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-----............... - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO----............... - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO---............... - 0x1d, 0xde, 0x00, 0x00, // ---OOO-OOO-OOOO--............... - 0x39, 0xcf, 0x00, 0x00, // --OOO--OOO--OOOO-............... - 0x71, 0xc7, 0x80, 0x00, // -OOO---OOO---OOOO............... - 0x71, 0xce, 0x00, 0x00, // -OOO---OOO--OOO--............... - 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---............... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO----............... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO----............... - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO-----............... - 0x01, 0xe0, 0x00, 0x00, // -------OOOO------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0x80, 0x00, 0x00, // -------OO--------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 110, char width: 17 - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO------............... - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO-----............... - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO----............... - 0x38, 0x18, 0x00, 0x00, // --OOO------OO----............... - 0x30, 0x1b, 0x80, 0x00, // --OO-------OO-OOO............... - 0x30, 0x1b, 0x80, 0x00, // --OO-------OO-OOO............... - 0x30, 0x18, 0x00, 0x00, // --OO-------OO----............... - 0x30, 0x18, 0x00, 0x00, // --OO-------OO----............... - 0x33, 0x9b, 0x80, 0x00, // --OO--OOO--OO-OOO............... - 0x33, 0x9b, 0x80, 0x00, // --OO--OOO--OO-OOO............... - 0x33, 0x98, 0x00, 0x00, // --OO--OOO--OO----............... - 0x33, 0x98, 0x00, 0x00, // --OO--OOO--OO----............... - 0x33, 0x98, 0x00, 0x00, // --OO--OOO--OO----............... - 0x33, 0x9b, 0x80, 0x00, // --OO--OOO--OO-OOO............... - 0x33, 0x9b, 0x80, 0x00, // --OO--OOO--OO-OOO............... - 0x33, 0x98, 0x00, 0x00, // --OO--OOO--OO----............... - 0x33, 0x98, 0x00, 0x00, // --OO--OOO--OO----............... - 0x33, 0x98, 0x00, 0x00, // --OO--OOO--OO----............... - 0x73, 0x9c, 0x00, 0x00, // -OOO--OOO--OOO---............... - 0x63, 0x8c, 0x00, 0x00, // -OO---OOO---OO---............... - 0xe7, 0xce, 0x00, 0x00, // OOO--OOOOO--OOO--............... - 0xcf, 0xe6, 0x00, 0x00, // OO--OOOOOOO--OO--............... - 0xcf, 0xe6, 0x00, 0x00, // OO--OOOOOOO--OO--............... - 0xcf, 0xe6, 0x00, 0x00, // OO--OOOOOOO--OO--............... - 0xe7, 0xce, 0x00, 0x00, // OOO--OOOOO--OOO--............... - 0xe3, 0x8c, 0x00, 0x00, // OOO---OOO---OO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO----............... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-----............... - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO-------............... - - // ASCII: 111, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x06, 0x00, // ---------------------OO-........ - 0x00, 0x00, 0x1f, 0x00, // -------------------OOOOO........ - 0x00, 0x00, 0x7e, 0x00, // -----------------OOOOOO-........ - 0x00, 0x01, 0xfe, 0x00, // ---------------OOOOOOOO-........ - 0x00, 0x07, 0xfc, 0x00, // -------------OOOOOOOOO--........ - 0x00, 0x1f, 0xfc, 0x00, // -----------OOOOOOOOOOO--........ - 0x00, 0x7f, 0xf8, 0x00, // ---------OOOOOOOOOOOO---........ - 0x01, 0xff, 0xf8, 0x00, // -------OOOOOOOOOOOOOO---........ - 0x07, 0xff, 0xf0, 0x00, // -----OOOOOOOOOOOOOOO----........ - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO----........ - 0x7f, 0xff, 0xe0, 0x00, // -OOOOOOOOOOOOOOOOOO-----........ - 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOO-----........ - 0xff, 0xff, 0xc0, 0x00, // OOOOOOOOOOOOOOOOOO------........ - 0x00, 0x1f, 0xc0, 0x00, // -----------OOOOOOO------........ - 0x00, 0x1f, 0x80, 0x00, // -----------OOOOOO-------........ - 0x00, 0x1f, 0x80, 0x00, // -----------OOOOOO-------........ - 0x00, 0x1f, 0x00, 0x00, // -----------OOOOO--------........ - 0x00, 0x1f, 0x00, 0x00, // -----------OOOOO--------........ - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO---------........ - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO---------........ - 0x00, 0x1c, 0x00, 0x00, // -----------OOO----------........ - 0x00, 0x1c, 0x00, 0x00, // -----------OOO----------........ - 0x00, 0x18, 0x00, 0x00, // -----------OO-----------........ - 0x00, 0x18, 0x00, 0x00, // -----------OO-----------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 112, char width: 30 - 0x00, 0x07, 0x80, 0x00, // -------------OOOO-------------.. - 0x00, 0x0f, 0xc0, 0x00, // ------------OOOOOO------------.. - 0x00, 0x0f, 0xc0, 0x00, // ------------OOOOOO------------.. - 0x00, 0x1f, 0xe0, 0x00, // -----------OOOOOOOO-----------.. - 0x00, 0x1f, 0xe0, 0x00, // -----------OOOOOOOO-----------.. - 0x00, 0x3f, 0xf0, 0x00, // ----------OOOOOOOOOO----------.. - 0x00, 0x3f, 0xf0, 0x00, // ----------OOOOOOOOOO----------.. - 0x00, 0x7f, 0xf8, 0x00, // ---------OOOOOOOOOOOO---------.. - 0x00, 0xf8, 0x7c, 0x00, // --------OOOOO----OOOOO--------.. - 0x00, 0xf8, 0x7c, 0x00, // --------OOOOO----OOOOO--------.. - 0x01, 0xf8, 0x7e, 0x00, // -------OOOOOO----OOOOOO-------.. - 0x01, 0xf8, 0x7e, 0x00, // -------OOOOOO----OOOOOO-------.. - 0x03, 0xf8, 0x7f, 0x00, // ------OOOOOOO----OOOOOOO------.. - 0x03, 0xf8, 0x7f, 0x00, // ------OOOOOOO----OOOOOOO------.. - 0x07, 0xf8, 0x7f, 0x80, // -----OOOOOOOO----OOOOOOOO-----.. - 0x07, 0xf8, 0x7f, 0x80, // -----OOOOOOOO----OOOOOOOO-----.. - 0x0f, 0xff, 0xff, 0xc0, // ----OOOOOOOOOOOOOOOOOOOOOO----.. - 0x0f, 0xff, 0xff, 0xc0, // ----OOOOOOOOOOOOOOOOOOOOOO----.. - 0x1f, 0xf8, 0x7f, 0xe0, // ---OOOOOOOOOO----OOOOOOOOOO---.. - 0x1f, 0xf8, 0x7f, 0xe0, // ---OOOOOOOOOO----OOOOOOOOOO---.. - 0x3f, 0xf8, 0x7f, 0xf0, // --OOOOOOOOOOO----OOOOOOOOOOO--.. - 0x7f, 0xf8, 0x7f, 0xf8, // -OOOOOOOOOOOO----OOOOOOOOOOOO-.. - 0x7f, 0xf8, 0x7f, 0xf8, // -OOOOOOOOOOOO----OOOOOOOOOOOO-.. - 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.. - 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.. - 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.. - 0x7f, 0xff, 0xff, 0xf8, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOO-.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 113, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x7f, 0x00, 0x00, // ---------OOOOOOO--------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xf0, 0x00, // -----OOOOOOOOOOOOOOO----........ - 0x0f, 0xff, 0xf8, 0x00, // ----OOOOOOOOOOOOOOOOO---........ - 0x1f, 0xe3, 0xfc, 0x00, // ---OOOOOOOO---OOOOOOOO--........ - 0x3f, 0xc3, 0xfc, 0x00, // --OOOOOOOO----OOOOOOOO--........ - 0x7f, 0xc3, 0xfe, 0x00, // -OOOOOOOOO----OOOOOOOOO-........ - 0x7f, 0xe3, 0xfe, 0x00, // -OOOOOOOOOO---OOOOOOOOO-........ - 0x7f, 0xff, 0xff, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOO........ - 0xff, 0xff, 0xff, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOO........ - 0xff, 0xe3, 0xff, 0x00, // OOOOOOOOOOO---OOOOOOOOOO........ - 0xff, 0xe3, 0xff, 0x00, // OOOOOOOOOOO---OOOOOOOOOO........ - 0xff, 0xe3, 0xff, 0x00, // OOOOOOOOOOO---OOOOOOOOOO........ - 0xff, 0xe3, 0xff, 0x00, // OOOOOOOOOOO---OOOOOOOOOO........ - 0xff, 0xe3, 0xff, 0x00, // OOOOOOOOOOO---OOOOOOOOOO........ - 0xff, 0xe3, 0xff, 0x00, // OOOOOOOOOOO---OOOOOOOOOO........ - 0x7f, 0xe3, 0xff, 0x00, // -OOOOOOOOOO---OOOOOOOOOO........ - 0x7f, 0xe3, 0xfe, 0x00, // -OOOOOOOOOO---OOOOOOOOO-........ - 0x7f, 0xe3, 0xfe, 0x00, // -OOOOOOOOOO---OOOOOOOOO-........ - 0x3f, 0xe3, 0xfc, 0x00, // --OOOOOOOOO---OOOOOOOO--........ - 0x1f, 0xe3, 0xfc, 0x00, // ---OOOOOOOO---OOOOOOOO--........ - 0x0f, 0xff, 0xf8, 0x00, // ----OOOOOOOOOOOOOOOOO---........ - 0x07, 0xff, 0xf0, 0x00, // -----OOOOOOOOOOOOOOO----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x00, 0x7f, 0x00, 0x00, // ---------OOOOOOO--------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 114, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x7f, 0xff, 0xff, 0xc0, // -OOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xf0, 0x00, 0x01, 0xe0, // OOOO-------------------OOOO---.. - 0xe6, 0x00, 0x01, 0xf0, // OOO--OO----------------OOOOO--.. - 0xe7, 0x00, 0x01, 0xf8, // OOO--OOO---------------OOOOOO-.. - 0xe7, 0x00, 0x01, 0xfc, // OOO--OOO---------------OOOOOOO.. - 0xe7, 0x00, 0x01, 0xfc, // OOO--OOO---------------OOOOOOO.. - 0xe7, 0x00, 0x01, 0xfc, // OOO--OOO---------------OOOOOOO.. - 0xe7, 0x00, 0x01, 0xfc, // OOO--OOO---------------OOOOOOO.. - 0xe7, 0x00, 0x01, 0xfc, // OOO--OOO---------------OOOOOOO.. - 0xe7, 0x00, 0x01, 0xfc, // OOO--OOO---------------OOOOOOO.. - 0xe7, 0x00, 0x01, 0xf8, // OOO--OOO---------------OOOOOO-.. - 0xe6, 0x00, 0x01, 0xf0, // OOO--OO----------------OOOOO--.. - 0xe0, 0x00, 0x01, 0xe0, // OOO--------------------OOOO---.. - 0xf0, 0x00, 0x01, 0xc0, // OOOO-------------------OOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x7f, 0xff, 0xff, 0x80, // -OOOOOOOOOOOOOOOOOOOOOOOO-----.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 115, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x7f, 0xff, 0xff, 0xc0, // -OOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xf0, 0x00, 0x01, 0xe0, // OOOO-------------------OOOO---.. - 0xe6, 0x30, 0x01, 0xf0, // OOO--OO---OO-----------OOOOO--.. - 0xe7, 0x78, 0x01, 0xf8, // OOO--OOO-OOOO----------OOOOOO-.. - 0xe7, 0x78, 0x01, 0xfc, // OOO--OOO-OOOO----------OOOOOOO.. - 0xe7, 0x78, 0x01, 0xfc, // OOO--OOO-OOOO----------OOOOOOO.. - 0xe7, 0x78, 0x01, 0xfc, // OOO--OOO-OOOO----------OOOOOOO.. - 0xe7, 0x78, 0x01, 0xfc, // OOO--OOO-OOOO----------OOOOOOO.. - 0xe7, 0x78, 0x01, 0xfc, // OOO--OOO-OOOO----------OOOOOOO.. - 0xe7, 0x78, 0x01, 0xfc, // OOO--OOO-OOOO----------OOOOOOO.. - 0xe7, 0x78, 0x01, 0xf8, // OOO--OOO-OOOO----------OOOOOO-.. - 0xe6, 0x30, 0x01, 0xf0, // OOO--OO---OO-----------OOOOO--.. - 0xe0, 0x00, 0x01, 0xe0, // OOO--------------------OOOO---.. - 0xf0, 0x00, 0x01, 0xc0, // OOOO-------------------OOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x7f, 0xff, 0xff, 0x80, // -OOOOOOOOOOOOOOOOOOOOOOOO-----.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 116, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x7f, 0xff, 0xff, 0xc0, // -OOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xf0, 0x00, 0x01, 0xe0, // OOOO-------------------OOOO---.. - 0xe6, 0x33, 0x81, 0xf0, // OOO--OO---OO--OOO------OOOOO--.. - 0xe7, 0x7b, 0x81, 0xf8, // OOO--OOO-OOOO-OOO------OOOOOO-.. - 0xe7, 0x7b, 0x81, 0xfc, // OOO--OOO-OOOO-OOO------OOOOOOO.. - 0xe7, 0x7b, 0x81, 0xfc, // OOO--OOO-OOOO-OOO------OOOOOOO.. - 0xe7, 0x7b, 0x81, 0xfc, // OOO--OOO-OOOO-OOO------OOOOOOO.. - 0xe7, 0x7b, 0x81, 0xfc, // OOO--OOO-OOOO-OOO------OOOOOOO.. - 0xe7, 0x7b, 0x81, 0xfc, // OOO--OOO-OOOO-OOO------OOOOOOO.. - 0xe7, 0x7b, 0x81, 0xfc, // OOO--OOO-OOOO-OOO------OOOOOOO.. - 0xe7, 0x7b, 0x81, 0xf8, // OOO--OOO-OOOO-OOO------OOOOOO-.. - 0xe6, 0x33, 0x81, 0xf0, // OOO--OO---OO--OOO------OOOOO--.. - 0xe0, 0x00, 0x01, 0xe0, // OOO--------------------OOOO---.. - 0xf0, 0x00, 0x01, 0xc0, // OOOO-------------------OOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x7f, 0xff, 0xff, 0x80, // -OOOOOOOOOOOOOOOOOOOOOOOO-----.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 117, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x7f, 0xff, 0xff, 0xc0, // -OOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xf0, 0x00, 0x01, 0xe0, // OOOO-------------------OOOO---.. - 0xe6, 0x33, 0x9d, 0xf0, // OOO--OO---OO--OOO--OOO-OOOOO--.. - 0xe7, 0x7b, 0x9d, 0xf8, // OOO--OOO-OOOO-OOO--OOO-OOOOOO-.. - 0xe7, 0x7b, 0x9d, 0xfc, // OOO--OOO-OOOO-OOO--OOO-OOOOOOO.. - 0xe7, 0x7b, 0x9d, 0xfc, // OOO--OOO-OOOO-OOO--OOO-OOOOOOO.. - 0xe7, 0x7b, 0x9d, 0xfc, // OOO--OOO-OOOO-OOO--OOO-OOOOOOO.. - 0xe7, 0x7b, 0x9d, 0xfc, // OOO--OOO-OOOO-OOO--OOO-OOOOOOO.. - 0xe7, 0x7b, 0x9d, 0xfc, // OOO--OOO-OOOO-OOO--OOO-OOOOOOO.. - 0xe7, 0x7b, 0x9d, 0xfc, // OOO--OOO-OOOO-OOO--OOO-OOOOOOO.. - 0xe7, 0x7b, 0x9d, 0xf8, // OOO--OOO-OOOO-OOO--OOO-OOOOOO-.. - 0xe6, 0x33, 0x99, 0xf0, // OOO--OO---OO--OOO--OO--OOOOO--.. - 0xe0, 0x00, 0x01, 0xe0, // OOO--------------------OOOO---.. - 0xf0, 0x00, 0x01, 0xc0, // OOOO-------------------OOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x7f, 0xff, 0xff, 0x80, // -OOOOOOOOOOOOOOOOOOOOOOOO-----.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 118, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x7f, 0xff, 0xff, 0xc0, // -OOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xf0, 0x00, 0x01, 0xe0, // OOOO-------------------OOOO---.. - 0xe7, 0xff, 0xfd, 0xf0, // OOO--OOOOOOOOOOOOOOOOO-OOOOO--.. - 0xe7, 0xff, 0xfd, 0xf8, // OOO--OOOOOOOOOOOOOOOOO-OOOOOO-.. - 0xe7, 0xf7, 0xfd, 0xfc, // OOO--OOOOOOO-OOOOOOOOO-OOOOOOO.. - 0xe7, 0xe3, 0xfd, 0xfc, // OOO--OOOOOO---OOOOOOOO-OOOOOOO.. - 0xe7, 0xc3, 0xfd, 0xfc, // OOO--OOOOO----OOOOOOOO-OOOOOOO.. - 0xe7, 0x70, 0x7d, 0xfc, // OOO--OOO-OOO-----OOOOO-OOOOOOO.. - 0xe7, 0xf8, 0xfd, 0xfc, // OOO--OOOOOOOO---OOOOOO-OOOOOOO.. - 0xe7, 0xff, 0xfd, 0xfc, // OOO--OOOOOOOOOOOOOOOOO-OOOOOOO.. - 0xe7, 0xff, 0xfd, 0xf8, // OOO--OOOOOOOOOOOOOOOOO-OOOOOO-.. - 0xe7, 0xff, 0xfd, 0xf0, // OOO--OOOOOOOOOOOOOOOOO-OOOOO--.. - 0xe0, 0x00, 0x01, 0xe0, // OOO--------------------OOOO---.. - 0xf0, 0x00, 0x01, 0xc0, // OOOO-------------------OOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x7f, 0xff, 0xff, 0x80, // -OOOOOOOOOOOOOOOOOOOOOOOO-----.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 119, char width: 30 - 0x00, 0x7f, 0xf8, 0x00, // ---------OOOOOOOOOOOO---------.. - 0x01, 0xf0, 0x3e, 0x00, // -------OOOOO------OOOOO-------.. - 0x07, 0xc0, 0x0f, 0x80, // -----OOOOO----------OOOOO-----.. - 0x0f, 0xc0, 0x0f, 0xc0, // ----OOOOOO----------OOOOOO----.. - 0x1f, 0xe0, 0x1f, 0xe0, // ---OOOOOOOO--------OOOOOOOO---.. - 0x1f, 0xe0, 0x1f, 0xe0, // ---OOOOOOOO--------OOOOOOOO---.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x7f, 0xf0, 0x7f, 0xf8, // -OOOOOOOOOOO-----OOOOOOOOOOOO-.. - 0x67, 0xe0, 0x1f, 0x98, // -OO--OOOOOO--------OOOOOO--OO-.. - 0xe3, 0xc0, 0x0f, 0x1c, // OOO---OOOO----------OOOO---OOO.. - 0xe1, 0x80, 0x06, 0x1c, // OOO----OO------------OO----OOO.. - 0xc1, 0x80, 0x06, 0x0c, // OO-----OO------------OO-----OO.. - 0xc3, 0x80, 0x07, 0x0c, // OO----OOO------------OOO----OO.. - 0xc3, 0x80, 0x07, 0x0c, // OO----OOO------------OOO----OO.. - 0xc3, 0x80, 0x07, 0x0c, // OO----OOO------------OOO----OO.. - 0xc1, 0x80, 0x06, 0x0c, // OO-----OO------------OO-----OO.. - 0xe1, 0x80, 0x06, 0x1c, // OOO----OO------------OO----OOO.. - 0xe3, 0xc0, 0x0f, 0x1c, // OOO---OOOO----------OOOO---OOO.. - 0x67, 0xe0, 0x1f, 0x98, // -OO--OOOOOO--------OOOOOO--OO-.. - 0x7f, 0xf8, 0x7f, 0xf8, // -OOOOOOOOOOOO----OOOOOOOOOOOO-.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x1f, 0xe0, 0x1f, 0xe0, // ---OOOOOOOO--------OOOOOOOO---.. - 0x1f, 0xe0, 0x1f, 0xe0, // ---OOOOOOOO--------OOOOOOOO---.. - 0x0f, 0xc0, 0x0f, 0xc0, // ----OOOOOO----------OOOOOO----.. - 0x07, 0xc0, 0x07, 0x80, // -----OOOOO-----------OOOO-----.. - 0x01, 0xf0, 0x3e, 0x00, // -------OOOOO------OOOOO-------.. - 0x00, 0x7f, 0xf8, 0x00, // ---------OOOOOOOOOOOO---------.. - 0x00, 0x1f, 0xe0, 0x00, // -----------OOOOOOOO-----------.. - - // ASCII: 120, char width: 26 - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x07, 0x1e, 0x38, 0x00, // -----OOO---OOOO---OOO-----...... - 0x0f, 0x9e, 0x7c, 0x00, // ----OOOOO--OOOO--OOOOO----...... - 0x1f, 0x9e, 0x7e, 0x00, // ---OOOOOO--OOOO--OOOOOO---...... - 0x3f, 0x1e, 0x3f, 0x00, // --OOOOOO---OOOO---OOOOOO--...... - 0x7e, 0x1e, 0x1f, 0x00, // -OOOOOO----OOOO----OOOOO--...... - 0x7c, 0x1e, 0x0f, 0x80, // -OOOOO-----OOOO-----OOOOO-...... - 0x78, 0x1e, 0x0f, 0x80, // -OOOO------OOOO-----OOOOO-...... - 0xf8, 0x1e, 0x07, 0x80, // OOOOO------OOOO------OOOO-...... - 0xf8, 0x1e, 0x07, 0xc0, // OOOOO------OOOO------OOOOO...... - 0xf0, 0x1c, 0x07, 0xc0, // OOOO-------OOO-------OOOOO...... - 0xf0, 0x00, 0x07, 0xc0, // OOOO-----------------OOOOO...... - 0xf0, 0x00, 0x07, 0xc0, // OOOO-----------------OOOOO...... - 0xf8, 0x00, 0x07, 0xc0, // OOOOO----------------OOOOO...... - 0xf8, 0x00, 0x07, 0x80, // OOOOO----------------OOOO-...... - 0x78, 0x00, 0x0f, 0x80, // -OOOO---------------OOOOO-...... - 0x7c, 0x00, 0x0f, 0x80, // -OOOOO--------------OOOOO-...... - 0x3e, 0x00, 0x1f, 0x00, // --OOOOO------------OOOOO--...... - 0x3f, 0x00, 0x3f, 0x00, // --OOOOOO----------OOOOOO--...... - 0x1f, 0xc0, 0xfe, 0x00, // ---OOOOOOO------OOOOOOO---...... - 0x0f, 0xff, 0xfc, 0x00, // ----OOOOOOOOOOOOOOOOOO----...... - 0x07, 0xff, 0xf8, 0x00, // -----OOOOOOOOOOOOOOOO-----...... - 0x01, 0xff, 0xe0, 0x00, // -------OOOOOOOOOOOO-------...... - 0x00, 0x7f, 0x80, 0x00, // ---------OOOOOOOO---------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 121, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x3e, 0x00, 0x00, // ----------OOOOO-----------...... - 0x00, 0x3f, 0x00, 0x00, // ----------OOOOOO----------...... - 0x06, 0x3f, 0x18, 0x00, // -----OO---OOOOOO---OO-----...... - 0x0f, 0x3f, 0x3c, 0x00, // ----OOOO--OOOOOO--OOOO----...... - 0x1f, 0xff, 0xfe, 0x00, // ---OOOOOOOOOOOOOOOOOOOO---...... - 0x3f, 0xff, 0xfe, 0x00, // --OOOOOOOOOOOOOOOOOOOOO---...... - 0x1f, 0xff, 0xfe, 0x00, // ---OOOOOOOOOOOOOOOOOOOO---...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x0f, 0xff, 0xfc, 0x00, // ----OOOOOOOOOOOOOOOOOO----...... - 0x0f, 0xe1, 0xfc, 0x00, // ----OOOOOOO----OOOOOOO----...... - 0x3f, 0xc0, 0xff, 0x00, // --OOOOOOOO------OOOOOOOO--...... - 0xff, 0x80, 0x7f, 0xc0, // OOOOOOOOO--------OOOOOOOOO...... - 0xff, 0x80, 0x7f, 0xc0, // OOOOOOOOO--------OOOOOOOOO...... - 0xff, 0x80, 0x7f, 0xc0, // OOOOOOOOO--------OOOOOOOOO...... - 0xff, 0x80, 0x7f, 0xc0, // OOOOOOOOO--------OOOOOOOOO...... - 0x7f, 0xc0, 0xff, 0x00, // -OOOOOOOOO------OOOOOOOO--...... - 0x0f, 0xe1, 0xfc, 0x00, // ----OOOOOOO----OOOOOOO----...... - 0x0f, 0xff, 0xfc, 0x00, // ----OOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfe, 0x00, // ---OOOOOOOOOOOOOOOOOOOO---...... - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO--...... - 0x1f, 0xff, 0xfe, 0x00, // ---OOOOOOOOOOOOOOOOOOOO---...... - 0x0f, 0x3f, 0x3c, 0x00, // ----OOOO--OOOOOO--OOOO----...... - 0x06, 0x3f, 0x18, 0x00, // -----OO---OOOOOO---OO-----...... - 0x00, 0x3f, 0x00, 0x00, // ----------OOOOOO----------...... - 0x00, 0x3e, 0x00, 0x00, // ----------OOOOO-----------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 122, char width: 34 - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x0f, 0xfc, 0x00, // ------------OOOOOOOOOO---------- - 0x00, 0xff, 0xff, 0xc0, // --------OOOOOOOOOOOOOOOOOO------ - 0x03, 0xff, 0xff, 0xf0, // ------OOOOOOOOOOOOOOOOOOOOOO---- - 0x0f, 0xff, 0xff, 0xfc, // ----OOOOOOOOOOOOOOOOOOOOOOOOOO-- - 0x1f, 0xf8, 0x03, 0xff, // ---OOOOOOOOOO---------OOOOOOOOOO - 0x7f, 0xc0, 0x00, 0x7f, // -OOOOOOOOO---------------OOOOOOO - 0x7f, 0x07, 0xf8, 0x1f, // -OOOOOOO-----OOOOOOOO------OOOOO - 0x7c, 0x3f, 0xff, 0x0f, // -OOOOO----OOOOOOOOOOOOOO----OOOO - 0x18, 0xff, 0xff, 0xc3, // ---OO---OOOOOOOOOOOOOOOOOO----OO - 0x01, 0xff, 0xff, 0xe0, // -------OOOOOOOOOOOOOOOOOOOO----- - 0x03, 0xfc, 0x0f, 0xf8, // ------OOOOOOOO------OOOOOOOOO--- - 0x07, 0xf0, 0x03, 0xf8, // -----OOOOOOO----------OOOOOOO--- - 0x03, 0xc0, 0x00, 0xf0, // ------OOOO--------------OOOO---- - 0x01, 0x83, 0xf0, 0x60, // -------OO-----OOOOOO-----OO----- - 0x00, 0x1f, 0xfe, 0x00, // -----------OOOOOOOOOOOO--------- - 0x00, 0x3f, 0xff, 0x80, // ----------OOOOOOOOOOOOOOO------- - 0x00, 0x3f, 0xff, 0x00, // ----------OOOOOOOOOOOOOO-------- - 0x00, 0x1e, 0x0e, 0x00, // -----------OOOO-----OOO--------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x01, 0xe0, 0x00, // ---------------OOOO------------- - 0x00, 0x03, 0xf0, 0x00, // --------------OOOOOO------------ - 0x00, 0x01, 0xe0, 0x00, // ---------------OOOO------------- - 0x00, 0x00, 0xc0, 0x00, // ----------------OO-------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- -}; - -static const uint8_t symbol_30_widths[26] = -{ - 30, 26, 32, 24, 26, 26, 30, 24, - 30, 21, 21, 30, 17, 17, 24, 30, - 24, 30, 30, 30, 30, 30, 30, 26, - 26, 34, -}; - -static const font_t symbol_30_dsc = -{ - 26, // Letter count - 97, // First ascii code - 4, // Letters width (bytes) - 30, // Letters height (row) - 0, // Fixed width or 0 if variable - symbol_30_widths, - symbol_30_bitmaps -}; - -const font_t * symbol_30_get_dsc(void) -{ - return &symbol_30_dsc; -} - - -#endif diff --git a/lv_misc/fonts/symbol_30.h b/lv_misc/fonts/symbol_30.h deleted file mode 100644 index 5bccf05aa..000000000 --- a/lv_misc/fonts/symbol_30.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef SYMBOL_30_H -#define SYMBOL_30_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_SYMBOL_30 != 0 - -#include -#include "../font.h" - -const font_t * symbol_30_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/symbol_60.c b/lv_misc/fonts/symbol_60.c deleted file mode 100644 index f14be4c6b..000000000 --- a/lv_misc/fonts/symbol_60.c +++ /dev/null @@ -1,1648 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_SYMBOL_60 != 0 - -#include -#include "../font.h" - -static const uint8_t symbol_60_bitmaps[12480] = -{ - // ASCII: 97, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------.... - 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------.... - 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------.... - 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------.... - 0x00, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------.... - 0x00, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------.... - 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------.... - 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------.... - 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------.... - 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------.... - 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------.... - 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------.... - 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------.... - 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------.... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------.... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------.... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------.... - 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--.... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--.... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--.... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-.... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-.... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.... - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.... - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.... - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-.... - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xe0, // -OOOO--------------------------------------------------OOOO-.... - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xe0, // -OOOO--------------------------------------------------OOOO-.... - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xe0, // -OOOO--------------------------------------------------OOOO-.... - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xc0, // --OOOO------------------------------------------------OOOO--.... - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x07, 0x03, 0xc0, // --OOOO---------------------------------------OOO------OOOO--.... - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x83, 0xc0, // --OOOO--------------------------------------OOOOO-----OOOO--.... - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x83, 0xc0, // --OOOO--------------------------------------OOOOO-----OOOO--.... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x87, 0x80, // ---OOOO-------------------------------------OOOOO----OOOO---.... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x07, 0x07, 0x80, // ---OOOO--------------------------------------OOO-----OOOO---.... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, // ---OOOO----------------------------------------------OOOO---.... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, // ---OOOO----------------------------------------------OOOO---.... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, // ----OOOO--------------------------------------------OOOO----.... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, // ----OOOO--------------------------------------------OOOO----.... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 98, char width: 51 - 0x7f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------............. - 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------............. - 0xff, 0xff, 0xff, 0xfc, 0x30, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OO---------------............. - 0xff, 0xff, 0xff, 0xfc, 0x38, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOO--------------............. - 0xff, 0xff, 0xff, 0xfc, 0x3c, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOO-------------............. - 0xff, 0xff, 0xff, 0xfc, 0x3e, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOO------------............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOO-----------............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0x80, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOO----------............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xc0, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOO---------............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xe0, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOOO--------............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xf0, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOOOO-------............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOOOOO------............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xfc, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOOOOOO-----............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xfe, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOOOOOOO----............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOOOOOOOO---............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOOOOOOOOO--............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xc0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOOOOOOOOOO-............. - 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------............. - 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------............. - 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------------............. - 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------------............. - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............. - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............. - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-............. - - // ASCII: 99, char width: 64 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO------------------------------------------- - 0x1f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOO----------------------------------------- - 0x3f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO---------------------------------------- - 0x7f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOO--------------------------------------- - 0x7f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOO--------------------------------------- - 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOO--------------------------------------- - 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOO-------------------------------------- - 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOO-------------------------------------- - 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOO-------------------------------------- - 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------- - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------- - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------- - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------- - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------- - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------- - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------- - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------ - 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOO-------------------------------------------- - 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOO----------------------------------------------- - 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOO------------------------------------------------- - 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOO-------------------------------------------------- - 0xff, 0xf8, 0x07, 0xff, 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-- - 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, // OOOOOOOOOOOO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO- - 0xff, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, // OOOOOOOOOOO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO- - 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOOO-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-- - 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOO-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-- - 0xff, 0x03, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, // OOOOOOOO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--- - 0xfe, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // OOOOOOO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---- - 0xfe, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, // OOOOOOO-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----- - 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // OOOOOO-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------ - 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // OOOOO-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------ - 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, // OOOO-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------- - 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // OOO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------- - 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, // OO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------- - 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, // O------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------- - 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, // O-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------- - 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------- - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------ - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------- - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------- - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------- - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------- - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - - // ASCII: 100, char width: 47 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOO----------------................. - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO---------------................. - 0x00, 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOO--------------................. - 0x00, 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOO-------------................. - 0x00, 0x07, 0xc0, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO-----------OOOOO-------------................. - 0x00, 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, 0x00, // ------------OOOOO-------------OOOOO------------................. - 0x00, 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, 0x00, // ------------OOOOO-------------OOOOO------------................. - 0x00, 0x0f, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ------------OOOO---------------OOOOO-----------................. - 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................. - 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................. - 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................. - 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x87, 0x83, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO-----OOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x07, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-----------------------------OOOOO----................. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----................. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - - // ASCII: 101, char width: 51 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x7f, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------............. - 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------............. - 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............. - 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------............. - 0xf0, 0xff, 0xfc, 0x03, 0xcf, 0xc0, 0x00, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO--OOOOOO---------............. - 0xf0, 0xff, 0xfc, 0x03, 0xc7, 0xe0, 0x00, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO---OOOOOO--------............. - 0xf0, 0xff, 0xfc, 0x03, 0xc3, 0xf0, 0x00, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO----OOOOOO-------............. - 0xf0, 0xff, 0xfc, 0x03, 0xc1, 0xf8, 0x00, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO-----OOOOOO------............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0xfc, 0x00, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO------OOOOOO-----............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0x7e, 0x00, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO-------OOOOOO----............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0x3f, 0x00, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO--------OOOOOO---............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0x1f, 0x80, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO---------OOOOOO--............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0x0f, 0xc0, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO----------OOOOOO-............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0x07, 0xe0, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO-----------OOOOOO............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0x03, 0xe0, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO------------OOOOO............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0x01, 0xe0, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO-------------OOOO............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0x01, 0xe0, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO-------------OOOO............. - 0xf0, 0xff, 0xff, 0xff, 0xc0, 0x01, 0xf0, 0x00, // OOOO----OOOOOOOOOOOOOOOOOOOOOOOOOO-------------OOOOO............ - 0xf0, 0x7f, 0xff, 0xff, 0xc0, 0x01, 0xf0, 0x00, // OOOO-----OOOOOOOOOOOOOOOOOOOOOOOOO-------------OOOOO............ - 0xf0, 0x7f, 0xff, 0xff, 0xc0, 0x01, 0xf0, 0x00, // OOOO-----OOOOOOOOOOOOOOOOOOOOOOOOO-------------OOOOO............ - 0xf0, 0x3f, 0xff, 0xff, 0x80, 0x01, 0xf0, 0x00, // OOOO------OOOOOOOOOOOOOOOOOOOOOOO--------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x3f, 0xff, 0xff, 0xff, 0x81, 0xf0, 0x00, // OOOO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------OOOOO............ - 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xc1, 0xf0, 0x00, // OOOO-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----OOOOO............ - 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xe1, 0xf0, 0x00, // OOOO-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOO............ - 0xf0, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xf0, 0x00, // OOOO----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............. - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............. - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - - // ASCII: 102, char width: 51 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // ------------------------------------OOOOO----------............. - 0x00, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -----------------------------------OOOOOOO---------............. - 0x00, 0x00, 0x00, 0x00, 0x3f, 0xe0, 0x00, 0x00, // ----------------------------------OOOOOOOOO--------............. - 0x00, 0x00, 0x00, 0x00, 0x7f, 0xf0, 0x00, 0x00, // ---------------------------------OOOOOOOOOOO-------............. - 0x00, 0x00, 0x00, 0x00, 0xff, 0xf8, 0x00, 0x00, // --------------------------------OOOOOOOOOOOOO------............. - 0x00, 0x00, 0x00, 0x01, 0xff, 0xfc, 0x00, 0x00, // -------------------------------OOOOOOOOOOOOOOO-----............. - 0x00, 0x00, 0x00, 0x03, 0xff, 0xfe, 0x00, 0x00, // ------------------------------OOOOOOOOOOOOOOOOO----............. - 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, // -------------------------------OOOOOOOOOOOOOOOOO---............. - 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, // --------------------------------OOOOOOOOOOOOOOOOO--............. - 0x00, 0x00, 0x00, 0x10, 0x7f, 0xff, 0xc0, 0x00, // ---------------------------O-----OOOOOOOOOOOOOOOOO-............. - 0x00, 0x00, 0x00, 0x38, 0x3f, 0xff, 0xc0, 0x00, // --------------------------OOO-----OOOOOOOOOOOOOOOO-............. - 0x00, 0x00, 0x00, 0x7c, 0x1f, 0xff, 0xe0, 0x00, // -------------------------OOOOO-----OOOOOOOOOOOOOOOO............. - 0x00, 0x00, 0x00, 0xfe, 0x0f, 0xff, 0xe0, 0x00, // ------------------------OOOOOOO-----OOOOOOOOOOOOOOO............. - 0x00, 0x00, 0x01, 0xff, 0x07, 0xff, 0xe0, 0x00, // -----------------------OOOOOOOOO-----OOOOOOOOOOOOOO............. - 0x00, 0x00, 0x03, 0xff, 0x83, 0xff, 0xc0, 0x00, // ----------------------OOOOOOOOOOO-----OOOOOOOOOOOO-............. - 0x00, 0x00, 0x07, 0xf3, 0xc1, 0xff, 0x80, 0x00, // ---------------------OOOOOOO--OOOO-----OOOOOOOOOO--............. - 0x00, 0x00, 0x0f, 0xe7, 0xe0, 0xff, 0x00, 0x00, // --------------------OOOOOOO--OOOOOO-----OOOOOOOO---............. - 0x00, 0x00, 0x1f, 0xcf, 0xf0, 0x7e, 0x00, 0x00, // -------------------OOOOOOO--OOOOOOOO-----OOOOOO----............. - 0x00, 0x00, 0x3f, 0x9f, 0xf8, 0x3c, 0x00, 0x00, // ------------------OOOOOOO--OOOOOOOOOO-----OOOO-----............. - 0x00, 0x00, 0x7f, 0x3f, 0xfc, 0x18, 0x00, 0x00, // -----------------OOOOOOO--OOOOOOOOOOOO-----OO------............. - 0x00, 0x00, 0xfe, 0x7f, 0xfe, 0x10, 0x00, 0x00, // ----------------OOOOOOO--OOOOOOOOOOOOOO----O-------............. - 0x00, 0x01, 0xfc, 0xff, 0xff, 0x00, 0x00, 0x00, // ---------------OOOOOOO--OOOOOOOOOOOOOOOO-----------............. - 0x00, 0x03, 0xf9, 0xff, 0xff, 0xc0, 0x00, 0x00, // --------------OOOOOOO--OOOOOOOOOOOOOOOOOOO---------............. - 0x00, 0x07, 0xf3, 0xff, 0xff, 0x80, 0x00, 0x00, // -------------OOOOOOO--OOOOOOOOOOOOOOOOOOO----------............. - 0x00, 0x0f, 0xe7, 0xff, 0xff, 0x00, 0x00, 0x00, // ------------OOOOOOO--OOOOOOOOOOOOOOOOOOO-----------............. - 0x00, 0x1f, 0xcf, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----------OOOOOOO--OOOOOOOOOOOOOOOOOOO------------............. - 0x00, 0x3f, 0x9f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOO--OOOOOOOOOOOOOOOOOOO-------------............. - 0x00, 0x7f, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOO--OOOOOOOOOOOOOOOOOOO--------------............. - 0x00, 0xfe, 0x7f, 0xff, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOO--OOOOOOOOOOOOOOOOOOO---------------............. - 0x01, 0xfc, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO--OOOOOOOOOOOOOOOOOOO----------------............. - 0x03, 0xf9, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO--OOOOOOOOOOOOOOOOOOO-----------------............. - 0x07, 0xf3, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--OOOOOOOOOOOOOOOOOOO------------------............. - 0x0f, 0xe7, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--OOOOOOOOOOOOOOOOOOO-------------------............. - 0x1f, 0xcf, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO--OOOOOOOOOOOOOOOOOOO--------------------............. - 0x3f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------............. - 0x7f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------------............. - 0xfe, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-OOOOOOOOOOOOOOOOOOOO-----------------------............. - 0xfc, 0x7f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // OOOOOO---OOOOOOOOOOOOOOOOOO------------------------............. - 0xf8, 0x3f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // OOOOO-----OOOOOOOOOOOOOOOO-------------------------............. - 0xf0, 0x1f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // OOOO-------OOOOOOOOOOOOOO--------------------------............. - 0xf0, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO--------OOOOOOOOOOOO---------------------------............. - 0xf0, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO---------OOOOOOOOOO----------------------------............. - 0xff, 0x83, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOO-----OOOOOOOO-----------------------------............. - 0xff, 0x81, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOO------OOOOOO------------------------------............. - 0xff, 0x83, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOO-----OOOOOO-------------------------------............. - 0xff, 0x83, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOO-----OOOOO--------------------------------............. - 0xff, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOO----OOOOO---------------------------------............. - 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOO----------------------------------............. - 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOO-----------------------------------............. - 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOO------------------------------------............. - 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOO------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - - // ASCII: 103, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ----------------------------------------------OOOO----------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xe0, 0x00, // ---------------------------------------------OOOOOO---------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xf0, 0x00, // --------------------------------------------OOOOOOOO--------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0xf8, 0x00, // -------------------------------------------OOOOOOOOOO-------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xfc, 0x00, // ------------------------------------------OOOOOOOOOOOO------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xfe, 0x00, // -----------------------------------------OOOOOOOOOOOOOO-----.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, // ----------------------------------------OOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0x00, // ---------------------------------------OOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x00, 0x00, 0x03, 0xff, 0xff, 0x00, // --------------------------------------OOOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x00, 0x00, 0x07, 0xff, 0xff, 0x00, // -------------------------------------OOOOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x00, 0x00, 0x0f, 0xff, 0xfe, 0x00, // ------------------------------------OOOOOOOOOOOOOOOOOOO-----.... - 0x00, 0x00, 0x00, 0x00, 0x1f, 0xff, 0xfc, 0x00, // -----------------------------------OOOOOOOOOOOOOOOOOOO------.... - 0x00, 0x3c, 0x00, 0x00, 0x3f, 0xff, 0xf8, 0x00, // ----------OOOO--------------------OOOOOOOOOOOOOOOOOOO-------.... - 0x00, 0x7e, 0x00, 0x00, 0x7f, 0xff, 0xf0, 0x00, // ---------OOOOOO------------------OOOOOOOOOOOOOOOOOOO--------.... - 0x00, 0xff, 0x00, 0x00, 0xff, 0xff, 0xe0, 0x00, // --------OOOOOOOO----------------OOOOOOOOOOOOOOOOOOO---------.... - 0x01, 0xff, 0x80, 0x01, 0xff, 0xff, 0xc0, 0x00, // -------OOOOOOOOOO--------------OOOOOOOOOOOOOOOOOOO----------.... - 0x03, 0xff, 0xc0, 0x03, 0xff, 0xff, 0x80, 0x00, // ------OOOOOOOOOOOO------------OOOOOOOOOOOOOOOOOOO-----------.... - 0x07, 0xff, 0xe0, 0x07, 0xff, 0xff, 0x00, 0x00, // -----OOOOOOOOOOOOOO----------OOOOOOOOOOOOOOOOOOO------------.... - 0x0f, 0xff, 0xf0, 0x0f, 0xff, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOO-------------.... - 0x0f, 0xff, 0xf8, 0x1f, 0xff, 0xfc, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO------OOOOOOOOOOOOOOOOOOO--------------.... - 0x0f, 0xff, 0xf8, 0x3f, 0xff, 0xf8, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO-----OOOOOOOOOOOOOOOOOOO---------------.... - 0x0f, 0xff, 0xfc, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO---OOOOOOOOOOOOOOOOOOO----------------.... - 0x07, 0xff, 0xfe, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-OOOOOOOOOOOOOOOOOOO-----------------.... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------------.... - 0x01, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------------.... - 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------------.... - 0x00, 0x7f, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------.... - 0x00, 0x3f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------------.... - 0x00, 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO-----------------------.... - 0x00, 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOO------------------------.... - 0x00, 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOO-------------------------.... - 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOO--------------------------.... - 0x00, 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOO---------------------------.... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO----------------------------.... - 0x00, 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOO-----------------------------.... - 0x00, 0x00, 0x3f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOO------------------------------.... - 0x00, 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOO-------------------------------.... - 0x00, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOO--------------------------------.... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO---------------------------------.... - 0x00, 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOO----------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 104, char width: 47 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x38, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, // ----------OOO---------------------OOO----------................. - 0x00, 0x7c, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---------OOOOO-------------------OOOOOO--------................. - 0x00, 0xfe, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // --------OOOOOOO-----------------OOOOOOOO-------................. - 0x01, 0xff, 0x00, 0x01, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOO---------------OOOOOOOOOO------................. - 0x03, 0xff, 0x80, 0x03, 0xff, 0xc0, 0x00, 0x00, // ------OOOOOOOOOOO-------------OOOOOOOOOOOO-----................. - 0x07, 0xff, 0xc0, 0x07, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOO-----------OOOOOOOOOOOOOO----................. - 0x0f, 0xff, 0xe0, 0x0f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOOOOOOOOOOO---------OOOOOOOOOOOOOOO----................. - 0x0f, 0xff, 0xf0, 0x1f, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOO---................. - 0x0f, 0xff, 0xf8, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO-----OOOOOOOOOOOOOOOOO----................. - 0x0f, 0xff, 0xfc, 0x7f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO---OOOOOOOOOOOOOOOOOO----................. - 0x07, 0xff, 0xfe, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-OOOOOOOOOOOOOOOOOO-----................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------................. - 0x00, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------................. - 0x00, 0x7f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------................. - 0x00, 0x3f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOO----------................. - 0x00, 0x1f, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOO-----------................. - 0x00, 0x0f, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOO------------................. - 0x00, 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOO-------------................. - 0x00, 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOO--------------................. - 0x00, 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOO--------------................. - 0x00, 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOO-------------................. - 0x00, 0x0f, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOO------------................. - 0x00, 0x1f, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOO-----------................. - 0x00, 0x3f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOO----------................. - 0x00, 0x7f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------................. - 0x00, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------................. - 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----................. - 0x0f, 0xff, 0xfc, 0x7f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO---OOOOOOOOOOOOOOOOOO----................. - 0x0f, 0xff, 0xf8, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO-----OOOOOOOOOOOOOOOOO----................. - 0x0f, 0xff, 0xf0, 0x1f, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOO---................. - 0x0f, 0xff, 0xe0, 0x0f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOOOOOOOOOOO---------OOOOOOOOOOOOOOO----................. - 0x07, 0xff, 0xc0, 0x07, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOO-----------OOOOOOOOOOOOOO----................. - 0x03, 0xff, 0x80, 0x03, 0xff, 0xc0, 0x00, 0x00, // ------OOOOOOOOOOO-------------OOOOOOOOOOOO-----................. - 0x01, 0xff, 0x00, 0x01, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOO---------------OOOOOOOOOO------................. - 0x00, 0xfe, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // --------OOOOOOO-----------------OOOOOOOO-------................. - 0x00, 0x7c, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---------OOOOO-------------------OOOOOO--------................. - 0x00, 0x38, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ----------OOO---------------------OOOO---------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - - // ASCII: 105, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, // ---------OOO------------------------------------OOO---------.... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // --------OOOOO----------------------------------OOOOO--------.... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // -------OOOOOOO--------------------------------OOOOOOO-------.... - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x07, 0xfc, 0x00, // ------OOOOOOOOO------------------------------OOOOOOOOO------.... - 0x07, 0xff, 0x00, 0x00, 0x00, 0x0f, 0xfe, 0x00, // -----OOOOOOOOOOO----------------------------OOOOOOOOOOO-----.... - 0x0f, 0xff, 0x80, 0x00, 0x00, 0x1f, 0xff, 0x00, // ----OOOOOOOOOOOOO--------------------------OOOOOOOOOOOOO----.... - 0x1f, 0xff, 0xc0, 0x00, 0x00, 0x3f, 0xff, 0x80, // ---OOOOOOOOOOOOOOO------------------------OOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x7f, 0xff, 0x80, // ---OOOOOOOOOOOOOOOO----------------------OOOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xf0, 0x00, 0x00, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOO--------------------OOOOOOOOOOOOOOOOO---.... - 0x0f, 0xff, 0xf8, 0x00, 0x01, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOO------------------OOOOOOOOOOOOOOOOO----.... - 0x07, 0xff, 0xfc, 0x00, 0x03, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOO----------------OOOOOOOOOOOOOOOOO-----.... - 0x03, 0xff, 0xfe, 0x00, 0x07, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOOO--------------OOOOOOOOOOOOOOOOO------.... - 0x01, 0xff, 0xff, 0x00, 0x0f, 0xff, 0xf8, 0x00, // -------OOOOOOOOOOOOOOOOO------------OOOOOOOOOOOOOOOOO-------.... - 0x00, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOOOOOOO----------OOOOOOOOOOOOOOOOO--------.... - 0x00, 0x7f, 0xff, 0xc0, 0x3f, 0xff, 0xe0, 0x00, // ---------OOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOO---------.... - 0x00, 0x3f, 0xff, 0xe0, 0x7f, 0xff, 0xc0, 0x00, // ----------OOOOOOOOOOOOOOOOO------OOOOOOOOOOOOOOOOO----------.... - 0x00, 0x1f, 0xff, 0xf0, 0xff, 0xff, 0x80, 0x00, // -----------OOOOOOOOOOOOOOOOO----OOOOOOOOOOOOOOOOO-----------.... - 0x00, 0x0f, 0xff, 0xf9, 0xff, 0xff, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOO--OOOOOOOOOOOOOOOOO------------.... - 0x00, 0x07, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------.... - 0x00, 0x03, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------.... - 0x00, 0x01, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------.... - 0x00, 0x00, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------.... - 0x00, 0x00, 0x7f, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOOOOOOOOOOO-----------------.... - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOO------------------.... - 0x00, 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOOOOOOO-------------------.... - 0x00, 0x00, 0x0f, 0xff, 0xff, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOOOOO--------------------.... - 0x00, 0x00, 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOO---------------------.... - 0x00, 0x00, 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOOO----------------------.... - 0x00, 0x00, 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOO-----------------------.... - 0x00, 0x00, 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOO------------------------.... - 0x00, 0x00, 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOO-------------------------.... - 0x00, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOO--------------------------.... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO---------------------------.... - 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ----------------------------OOOO----------------------------.... - 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, // -----------------------------OO-----------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 106, char width: 43 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // -------------------------------OOO---------..................... - 0x00, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // ------------------------------OOOOO--------..................... - 0x00, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----------------------------OOOOOOO-------..................... - 0x00, 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ----------------------------OOOOOOOOO------..................... - 0x00, 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, // ---------------------------OOOOOOOOOOO-----..................... - 0x00, 0x00, 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOOOOOO----..................... - 0x00, 0x00, 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOOOOOO----..................... - 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOOOOOO---..................... - 0x00, 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOOO---..................... - 0x00, 0x00, 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOOOO----..................... - 0x00, 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOO-----..................... - 0x00, 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOO------..................... - 0x00, 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOO-------..................... - 0x00, 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOO--------..................... - 0x00, 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOO---------..................... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------..................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO-----------..................... - 0x00, 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOO------------..................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO-------------..................... - 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOO--------------..................... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO---------------..................... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------------..................... - 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO-----------------..................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO------------------..................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-------------------..................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO--------------------..................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---------------------..................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---------------------..................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO--------------------..................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-------------------..................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO------------------..................... - 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO-----------------..................... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------------..................... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO---------------..................... - 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOO--------------..................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO-------------..................... - 0x00, 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOO------------..................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO-----------..................... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------..................... - 0x00, 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOO---------..................... - 0x00, 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOO--------..................... - 0x00, 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOO-------..................... - 0x00, 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOO------..................... - 0x00, 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOO-----..................... - 0x00, 0x00, 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOOOO----..................... - 0x00, 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOOO---..................... - 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOOOOOO---..................... - 0x00, 0x00, 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOOOOOOO---..................... - 0x00, 0x00, 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOOOOOO----..................... - 0x00, 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, // ---------------------------OOOOOOOOOOO-----..................... - 0x00, 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ----------------------------OOOOOOOOO------..................... - 0x00, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----------------------------OOOOOOO-------..................... - 0x00, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // ------------------------------OOOOO--------..................... - 0x00, 0x00, 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // -------------------------------OOO---------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - - // ASCII: 107, char width: 43 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOO-------------------------------..................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO------------------------------..................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-----------------------------..................... - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO----------------------------..................... - 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOO---------------------------..................... - 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOO--------------------------..................... - 0x1f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOO-------------------------..................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO------------------------..................... - 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOO-----------------------..................... - 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO----------------------..................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---------------------..................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO--------------------..................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-------------------..................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO------------------..................... - 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO-----------------..................... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------------..................... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO---------------..................... - 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOO--------------..................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO-------------..................... - 0x00, 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOO------------..................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO-----------..................... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------..................... - 0x00, 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOO---------..................... - 0x00, 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOO--------..................... - 0x00, 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOO-------..................... - 0x00, 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOO------..................... - 0x00, 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOO-----..................... - 0x00, 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOO-----..................... - 0x00, 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOO------..................... - 0x00, 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOO-------..................... - 0x00, 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOO--------..................... - 0x00, 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOO---------..................... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------..................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO-----------..................... - 0x00, 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOO------------..................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO-------------..................... - 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOO--------------..................... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO---------------..................... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------------..................... - 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO-----------------..................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO------------------..................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-------------------..................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO--------------------..................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---------------------..................... - 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO----------------------..................... - 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOO-----------------------..................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO------------------------..................... - 0x1f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOO-------------------------..................... - 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOO--------------------------..................... - 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOO---------------------------..................... - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO----------------------------..................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-----------------------------..................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO------------------------------..................... - 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOO-------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - - // ASCII: 108, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, // -----------------------------OO-----------------------------.... - 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ----------------------------OOOO----------------------------.... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO---------------------------.... - 0x00, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOO--------------------------.... - 0x00, 0x00, 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOO-------------------------.... - 0x00, 0x00, 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOO------------------------.... - 0x00, 0x00, 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOO-----------------------.... - 0x00, 0x00, 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOOO----------------------.... - 0x00, 0x00, 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOO---------------------.... - 0x00, 0x00, 0x0f, 0xff, 0xff, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOOOOO--------------------.... - 0x00, 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOOOOOOO-------------------.... - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOO------------------.... - 0x00, 0x00, 0x7f, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOOOOOOOOOOO-----------------.... - 0x00, 0x00, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------.... - 0x00, 0x01, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------.... - 0x00, 0x03, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------.... - 0x00, 0x07, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------.... - 0x00, 0x0f, 0xff, 0xf9, 0xff, 0xff, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOO--OOOOOOOOOOOOOOOOO------------.... - 0x00, 0x1f, 0xff, 0xf0, 0xff, 0xff, 0x80, 0x00, // -----------OOOOOOOOOOOOOOOOO----OOOOOOOOOOOOOOOOO-----------.... - 0x00, 0x3f, 0xff, 0xe0, 0x7f, 0xff, 0xc0, 0x00, // ----------OOOOOOOOOOOOOOOOO------OOOOOOOOOOOOOOOOO----------.... - 0x00, 0x7f, 0xff, 0xc0, 0x3f, 0xff, 0xe0, 0x00, // ---------OOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOO---------.... - 0x00, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOOOOOOO----------OOOOOOOOOOOOOOOOO--------.... - 0x01, 0xff, 0xff, 0x00, 0x0f, 0xff, 0xf8, 0x00, // -------OOOOOOOOOOOOOOOOO------------OOOOOOOOOOOOOOOOO-------.... - 0x03, 0xff, 0xfe, 0x00, 0x07, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOOO--------------OOOOOOOOOOOOOOOOO------.... - 0x07, 0xff, 0xfc, 0x00, 0x03, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOO----------------OOOOOOOOOOOOOOOOO-----.... - 0x0f, 0xff, 0xf8, 0x00, 0x01, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOO------------------OOOOOOOOOOOOOOOOO----.... - 0x1f, 0xff, 0xf0, 0x00, 0x00, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOO--------------------OOOOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x7f, 0xff, 0x80, // ---OOOOOOOOOOOOOOOO----------------------OOOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xc0, 0x00, 0x00, 0x3f, 0xff, 0x80, // ---OOOOOOOOOOOOOOO------------------------OOOOOOOOOOOOOOO---.... - 0x0f, 0xff, 0x80, 0x00, 0x00, 0x1f, 0xff, 0x00, // ----OOOOOOOOOOOOO--------------------------OOOOOOOOOOOOO----.... - 0x07, 0xff, 0x00, 0x00, 0x00, 0x0f, 0xfe, 0x00, // -----OOOOOOOOOOO----------------------------OOOOOOOOOOO-----.... - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x07, 0xfc, 0x00, // ------OOOOOOOOO------------------------------OOOOOOOOO------.... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // -------OOOOOOO--------------------------------OOOOOOO-------.... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // --------OOOOO----------------------------------OOOOO--------.... - 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, // ---------OOO------------------------------------OOO---------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 109, char width: 34 - 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------O------------------.............................. - 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OO-----------------.............................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOO----------------.............................. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO---------------.............................. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO--------------.............................. - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-------------.............................. - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO------------.............................. - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO-----------.............................. - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO----------.............................. - 0x00, 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOO---------.............................. - 0x00, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOO--------.............................. - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO-------.............................. - 0x00, 0x01, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOO------.............................. - 0x00, 0x01, 0xf7, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-OOOOOOOO-----.............................. - 0x0c, 0x01, 0xf3, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OO---------OOOOO--OOOOOOOO----.............................. - 0x1e, 0x01, 0xf1, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---OOOO--------OOOOO---OOOOOOOO---.............................. - 0x3f, 0x01, 0xf0, 0xff, 0x00, 0x00, 0x00, 0x00, // --OOOOOO-------OOOOO----OOOOOOOO--.............................. - 0x7f, 0x81, 0xf0, 0x7f, 0x80, 0x00, 0x00, 0x00, // -OOOOOOOO------OOOOO-----OOOOOOOO-.............................. - 0x3f, 0xc1, 0xf0, 0x7f, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOO-----OOOOO-----OOOOOOO--.............................. - 0x1f, 0xe1, 0xf0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOO----OOOOO----OOOOOOO---.............................. - 0x0f, 0xf1, 0xf1, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOO---OOOOO---OOOOOOO----.............................. - 0x07, 0xf9, 0xf3, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOO--OOOOO--OOOOOOO-----.............................. - 0x03, 0xfd, 0xf7, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO-OOOOO-OOOOOOO------.............................. - 0x01, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOO-------.............................. - 0x00, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOO--------.............................. - 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOO---------.............................. - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO----------.............................. - 0x00, 0x1f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO-----------.............................. - 0x00, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOO------------.............................. - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO-------------.............................. - 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOO------------.............................. - 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO-----------.............................. - 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----------.............................. - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---------.............................. - 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--------.............................. - 0x00, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-------.............................. - 0x01, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOO------.............................. - 0x03, 0xfd, 0xf7, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO-OOOOO-OOOOOOOO-----.............................. - 0x07, 0xf9, 0xf3, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOO--OOOOO--OOOOOOOO----.............................. - 0x0f, 0xf1, 0xf1, 0xfe, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOO---OOOOO---OOOOOOOO---.............................. - 0x1f, 0xe1, 0xf0, 0xff, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOO----OOOOO----OOOOOOOO--.............................. - 0x3f, 0xc1, 0xf0, 0x7f, 0x80, 0x00, 0x00, 0x00, // --OOOOOOOO-----OOOOO-----OOOOOOOO-.............................. - 0x7f, 0x81, 0xf0, 0x7f, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOO------OOOOO-----OOOOOOO--.............................. - 0x3f, 0x01, 0xf0, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOO-------OOOOO----OOOOOOO---.............................. - 0x1e, 0x01, 0xf1, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOO--------OOOOO---OOOOOOO----.............................. - 0x0c, 0x01, 0xf3, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OO---------OOOOO--OOOOOOO-----.............................. - 0x00, 0x01, 0xf7, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-OOOOOOO------.............................. - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO-------.............................. - 0x00, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOO--------.............................. - 0x00, 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOO---------.............................. - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO----------.............................. - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO-----------.............................. - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO------------.............................. - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-------------.............................. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO--------------.............................. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO---------------.............................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOO----------------.............................. - 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OO-----------------.............................. - 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------O------------------.............................. - 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------O------------------.............................. - - // ASCII: 110, char width: 34 - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO----------------.............................. - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO-------------.............................. - 0x00, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOO------------.............................. - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-----------.............................. - 0x03, 0xf8, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO----OOOOOOO----------.............................. - 0x03, 0xe0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOO----------.............................. - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOO----------OOOOO---------.............................. - 0x07, 0x80, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------OOOO---------.............................. - 0x0f, 0x80, 0x07, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--OOOOOO.............................. - 0x0f, 0x80, 0x07, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--OOOOOO.............................. - 0x0f, 0x80, 0x07, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--OOOOOO.............................. - 0x0f, 0x80, 0x07, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--OOOOOO.............................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--------.............................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--------.............................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--------.............................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--------.............................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--OOOOOO.............................. - 0x0f, 0x87, 0x87, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--OOOOOO.............................. - 0x0f, 0x87, 0x87, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--OOOOOO.............................. - 0x0f, 0x87, 0x87, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--OOOOOO.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--OOOOOO.............................. - 0x0f, 0x87, 0x87, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--OOOOOO.............................. - 0x0f, 0x87, 0x87, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--OOOOOO.............................. - 0x0f, 0x87, 0x87, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--OOOOOO.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x1f, 0x87, 0x87, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO----OOOO----OOOOOO-------.............................. - 0x1f, 0x87, 0x87, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO----OOOO----OOOOOO-------.............................. - 0x3e, 0x07, 0x81, 0xf0, 0x00, 0x00, 0x00, 0x00, // --OOOOO------OOOO------OOOOO------.............................. - 0x7e, 0x07, 0x81, 0xf8, 0x00, 0x00, 0x00, 0x00, // -OOOOOO------OOOO------OOOOOO-----.............................. - 0x7c, 0x1f, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -OOOOO-----OOOOOOOO-----OOOOO-----.............................. - 0x78, 0x3f, 0xf0, 0x78, 0x00, 0x00, 0x00, 0x00, // -OOOO-----OOOOOOOOOO-----OOOO-----.............................. - 0xf8, 0x7f, 0xf8, 0x7c, 0x00, 0x00, 0x00, 0x00, // OOOOO----OOOOOOOOOOOO----OOOOO----.............................. - 0xf8, 0x7f, 0xf8, 0x7c, 0x00, 0x00, 0x00, 0x00, // OOOOO----OOOOOOOOOOOO----OOOOO----.............................. - 0xf0, 0x7f, 0xf8, 0x3c, 0x00, 0x00, 0x00, 0x00, // OOOO-----OOOOOOOOOOOO-----OOOO----.............................. - 0xf0, 0xff, 0xfc, 0x3c, 0x00, 0x00, 0x00, 0x00, // OOOO----OOOOOOOOOOOOOO----OOOO----.............................. - 0xf0, 0x7f, 0xf8, 0x3c, 0x00, 0x00, 0x00, 0x00, // OOOO-----OOOOOOOOOOOO-----OOOO----.............................. - 0xf0, 0x7f, 0xf8, 0x3c, 0x00, 0x00, 0x00, 0x00, // OOOO-----OOOOOOOOOOOO-----OOOO----.............................. - 0xf8, 0x7f, 0xf8, 0x7c, 0x00, 0x00, 0x00, 0x00, // OOOOO----OOOOOOOOOOOO----OOOOO----.............................. - 0xf8, 0x3f, 0xf0, 0x7c, 0x00, 0x00, 0x00, 0x00, // OOOOO-----OOOOOOOOOO-----OOOOO----.............................. - 0x78, 0x1f, 0xe0, 0x78, 0x00, 0x00, 0x00, 0x00, // -OOOO------OOOOOOOO------OOOO-----.............................. - 0x7c, 0x0f, 0xc0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -OOOOO------OOOOOO------OOOOO-----.............................. - 0x7c, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // -OOOOO------------------OOOOO-----.............................. - 0x3e, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // --OOOOO----------------OOOOO------.............................. - 0x3f, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // --OOOOOO--------------OOOOO-------.............................. - 0x1f, 0xc0, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO----------OOOOOOO-------.............................. - 0x0f, 0xf0, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOO------OOOOOOOO--------.............................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO---------.............................. - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-----------.............................. - 0x00, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOO------------.............................. - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO---------------.............................. - - // ASCII: 111, char width: 47 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, // ------------------------------------------OOOOO................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, // -----------------------------------------OOOOOO................. - 0x00, 0x00, 0x00, 0x00, 0x01, 0xfe, 0x00, 0x00, // ---------------------------------------OOOOOOOO................. - 0x00, 0x00, 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, // -------------------------------------OOOOOOOOOO................. - 0x00, 0x00, 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, // -----------------------------------OOOOOOOOOOO-................. - 0x00, 0x00, 0x00, 0x00, 0x7f, 0xfc, 0x00, 0x00, // ---------------------------------OOOOOOOOOOOOO-................. - 0x00, 0x00, 0x00, 0x01, 0xff, 0xf8, 0x00, 0x00, // -------------------------------OOOOOOOOOOOOOO--................. - 0x00, 0x00, 0x00, 0x07, 0xff, 0xf8, 0x00, 0x00, // -----------------------------OOOOOOOOOOOOOOOO--................. - 0x00, 0x00, 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, // ---------------------------OOOOOOOOOOOOOOOOO---................. - 0x00, 0x00, 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // -------------------------OOOOOOOOOOOOOOOOOOO---................. - 0x00, 0x00, 0x01, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOOOOOO----................. - 0x00, 0x00, 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOOOOOO----................. - 0x00, 0x00, 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOOOOOOOO-----................. - 0x00, 0x00, 0x7f, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOOOOOOOOOO-----................. - 0x00, 0x01, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x00, 0x07, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x00, 0x1f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------................. - 0x00, 0x7f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------................. - 0x01, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------................. - 0x07, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------................. - 0x1f, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------................. - 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------................. - 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------................. - 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------................. - 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------................. - 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------................. - 0x00, 0x00, 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOO------------................. - 0x00, 0x00, 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOO------------................. - 0x00, 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOO-------------................. - 0x00, 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOO-------------................. - 0x00, 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOO--------------................. - 0x00, 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOO--------------................. - 0x00, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOO---------------................. - 0x00, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOO---------------................. - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO----------------................. - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO----------------................. - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO-----------------................. - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO-----------------................. - 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOO------------------................. - 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOO------------------................. - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO-------------------................. - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO-------------------................. - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO--------------------................. - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO--------------------................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO---------------------................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO---------------------................. - 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------------------OOO----------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - - // ASCII: 112, char width: 60 - 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ----------------------------OOOO----------------------------.... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO---------------------------.... - 0x00, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOO--------------------------.... - 0x00, 0x00, 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOO-------------------------.... - 0x00, 0x00, 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOO-------------------------.... - 0x00, 0x00, 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOO------------------------.... - 0x00, 0x00, 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOO------------------------.... - 0x00, 0x00, 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOO-----------------------.... - 0x00, 0x00, 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOO-----------------------.... - 0x00, 0x00, 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOOO----------------------.... - 0x00, 0x00, 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOOO----------------------.... - 0x00, 0x00, 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOO---------------------.... - 0x00, 0x00, 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOO---------------------.... - 0x00, 0x00, 0x0f, 0xff, 0xff, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOOOOO--------------------.... - 0x00, 0x00, 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOOOOOO-------------------.... - 0x00, 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOOOOOOO-------------------.... - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOO------------------.... - 0x00, 0x00, 0x3f, 0x80, 0x1f, 0xc0, 0x00, 0x00, // ------------------OOOOOOO----------OOOOOOO------------------.... - 0x00, 0x00, 0x7f, 0x80, 0x1f, 0xe0, 0x00, 0x00, // -----------------OOOOOOOO----------OOOOOOOO-----------------.... - 0x00, 0x00, 0x7f, 0x80, 0x1f, 0xe0, 0x00, 0x00, // -----------------OOOOOOOO----------OOOOOOOO-----------------.... - 0x00, 0x00, 0xff, 0x80, 0x1f, 0xf0, 0x00, 0x00, // ----------------OOOOOOOOO----------OOOOOOOOO----------------.... - 0x00, 0x00, 0xff, 0x80, 0x1f, 0xf0, 0x00, 0x00, // ----------------OOOOOOOOO----------OOOOOOOOO----------------.... - 0x00, 0x01, 0xff, 0x80, 0x1f, 0xf8, 0x00, 0x00, // ---------------OOOOOOOOOO----------OOOOOOOOOO---------------.... - 0x00, 0x01, 0xff, 0x80, 0x3f, 0xf8, 0x00, 0x00, // ---------------OOOOOOOOOO---------OOOOOOOOOOO---------------.... - 0x00, 0x03, 0xff, 0xc0, 0x3f, 0xfc, 0x00, 0x00, // --------------OOOOOOOOOOOO--------OOOOOOOOOOOO--------------.... - 0x00, 0x03, 0xff, 0xc0, 0x3f, 0xfc, 0x00, 0x00, // --------------OOOOOOOOOOOO--------OOOOOOOOOOOO--------------.... - 0x00, 0x07, 0xff, 0xc0, 0x3f, 0xfe, 0x00, 0x00, // -------------OOOOOOOOOOOOO--------OOOOOOOOOOOOO-------------.... - 0x00, 0x0f, 0xff, 0xc0, 0x3f, 0xff, 0x00, 0x00, // ------------OOOOOOOOOOOOOO--------OOOOOOOOOOOOOO------------.... - 0x00, 0x0f, 0xff, 0xc0, 0x3f, 0xff, 0x00, 0x00, // ------------OOOOOOOOOOOOOO--------OOOOOOOOOOOOOO------------.... - 0x00, 0x1f, 0xff, 0xc0, 0x3f, 0xff, 0x80, 0x00, // -----------OOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOO-----------.... - 0x00, 0x1f, 0xff, 0xc0, 0x3f, 0xff, 0x80, 0x00, // -----------OOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOO-----------.... - 0x00, 0x3f, 0xff, 0xc0, 0x3f, 0xff, 0xc0, 0x00, // ----------OOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOO----------.... - 0x00, 0x3f, 0xff, 0xc0, 0x3f, 0xff, 0xc0, 0x00, // ----------OOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOO----------.... - 0x00, 0x7f, 0xff, 0xc0, 0x3f, 0xff, 0xe0, 0x00, // ---------OOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOO---------.... - 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------.... - 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------.... - 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------.... - 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------.... - 0x03, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xf8, 0x00, // ------OOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOO-------.... - 0x03, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOO------.... - 0x07, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOO-----.... - 0x07, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOO-----.... - 0x0f, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOO----.... - 0x0f, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOO----.... - 0x1f, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOOO---.... - 0x3f, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xc0, // --OOOOOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOOOO--.... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--.... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-.... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-.... - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.... - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.... - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.... - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-.... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 113, char width: 49 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOO--------------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x3f, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------............... - 0x00, 0x7f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------............... - 0x00, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............... - 0x01, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............... - 0x03, 0xff, 0xfc, 0x1f, 0xff, 0xe0, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-----OOOOOOOOOOOOOOOO------............... - 0x07, 0xff, 0xf8, 0x0f, 0xff, 0xf0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOO-----............... - 0x0f, 0xff, 0xf8, 0x0f, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOO-----............... - 0x0f, 0xff, 0xf0, 0x07, 0xff, 0xf8, 0x00, 0x00, // ----OOOOOOOOOOOOOOOO---------OOOOOOOOOOOOOOOO----............... - 0x1f, 0xff, 0xf0, 0x07, 0xff, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOO---------OOOOOOOOOOOOOOOOO---............... - 0x3f, 0xff, 0xf8, 0x0f, 0xff, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOO---............... - 0x3f, 0xff, 0xf8, 0x0f, 0xff, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOO--............... - 0x3f, 0xff, 0xfc, 0x1f, 0xff, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOO-----OOOOOOOOOOOOOOOOOOOO--............... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-............... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-............... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-............... - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOO-............... - 0x7f, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOO-............... - 0x7f, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOO-............... - 0x7f, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOO-............... - 0x3f, 0xff, 0xf8, 0x0f, 0xff, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOO--............... - 0x3f, 0xff, 0xf8, 0x0f, 0xff, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOO--............... - 0x3f, 0xff, 0xf8, 0x0f, 0xff, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOO---............... - 0x1f, 0xff, 0xf8, 0x0f, 0xff, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOO---............... - 0x0f, 0xff, 0xf8, 0x0f, 0xff, 0xf8, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOO----............... - 0x0f, 0xff, 0xf8, 0x0f, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOO-----............... - 0x07, 0xff, 0xf8, 0x0f, 0xff, 0xf0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOO-----............... - 0x03, 0xff, 0xf8, 0x0f, 0xff, 0xe0, 0x00, 0x00, // ------OOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOO------............... - 0x01, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............... - 0x00, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............... - 0x00, 0x7f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------............... - 0x00, 0x3f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOO--------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 114, char width: 59 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x1c, 0x00, 0x00, 0x00, 0x01, 0xff, 0x00, // OOOOOO-----OOO---------------------------------OOOOOOOOO---..... - 0xfc, 0x3e, 0x00, 0x00, 0x00, 0x01, 0xff, 0x80, // OOOOOO----OOOOO--------------------------------OOOOOOOOOO--..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xc0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOO-..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xc0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOO-..... - 0xfc, 0x3e, 0x00, 0x00, 0x00, 0x01, 0xff, 0x80, // OOOOOO----OOOOO--------------------------------OOOOOOOOOO--..... - 0xfc, 0x1c, 0x00, 0x00, 0x00, 0x01, 0xff, 0x00, // OOOOOO-----OOO---------------------------------OOOOOOOOO---..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - - // ASCII: 115, char width: 59 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x1c, 0x0f, 0x00, 0x00, 0x01, 0xff, 0x00, // OOOOOO-----OOO------OOOO-----------------------OOOOOOOOO---..... - 0xfc, 0x3e, 0x1f, 0x80, 0x00, 0x01, 0xff, 0x80, // OOOOOO----OOOOO----OOOOOO----------------------OOOOOOOOOO--..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xc0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOO-..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xc0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOO-..... - 0xfc, 0x3e, 0x1f, 0x80, 0x00, 0x01, 0xff, 0x80, // OOOOOO----OOOOO----OOOOOO----------------------OOOOOOOOOO--..... - 0xfc, 0x1c, 0x0f, 0x00, 0x00, 0x01, 0xff, 0x00, // OOOOOO-----OOO------OOOO-----------------------OOOOOOOOO---..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - - // ASCII: 116, char width: 59 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x1c, 0x0f, 0x07, 0x80, 0x01, 0xff, 0x00, // OOOOOO-----OOO------OOOO-----OOOO--------------OOOOOOOOO---..... - 0xfc, 0x3e, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0x80, // OOOOOO----OOOOO----OOOOOO---OOOOOO-------------OOOOOOOOOO--..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xc0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOO-..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xc0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOO-..... - 0xfc, 0x3e, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0x80, // OOOOOO----OOOOO----OOOOOO---OOOOOO-------------OOOOOOOOOO--..... - 0xfc, 0x1c, 0x0f, 0x07, 0x80, 0x01, 0xff, 0x00, // OOOOOO-----OOO------OOOO-----OOOO--------------OOOOOOOOO---..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - - // ASCII: 117, char width: 59 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x1c, 0x0f, 0x07, 0x81, 0xc1, 0xff, 0x00, // OOOOOO-----OOO------OOOO-----OOOO------OOO-----OOOOOOOOO---..... - 0xfc, 0x3e, 0x1f, 0x8f, 0xc3, 0xe1, 0xff, 0x80, // OOOOOO----OOOOO----OOOOOO---OOOOOO----OOOOO----OOOOOOOOOO--..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xc0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOO-..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc3, 0xf1, 0xff, 0xc0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO----OOOOOO---OOOOOOOOOOO-..... - 0xfc, 0x3e, 0x1f, 0x8f, 0xc3, 0xe1, 0xff, 0x80, // OOOOOO----OOOOO----OOOOOO---OOOOOO----OOOOO----OOOOOOOOOO--..... - 0xfc, 0x1c, 0x0f, 0x07, 0x81, 0xc1, 0xff, 0x00, // OOOOOO-----OOO------OOOO-----OOOO------OOO-----OOOOOOOOO---..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - - // ASCII: 118, char width: 59 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf1, 0xff, 0x00, // OOOOOO---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOO---..... - 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf1, 0xff, 0x80, // OOOOOO---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOOO--..... - 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xc0, // OOOOOO---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOOOO-..... - 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xff, 0xbf, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOOOOO-OOOOOOOOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xfe, 0x1f, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOOO----OOOOOOOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xfc, 0x1f, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOO-----OOOOOOOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xf0, 0x0f, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOO--------OOOOOOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xe0, 0x07, 0xf7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOO----------OOOOOOO-OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xc0, 0x04, 0x0f, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOO-----------O------OOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x3f, 0x80, 0x3f, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO--OOOOOOO---------OOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xff, 0x80, 0x7f, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOOOOO--------OOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xff, 0xc0, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOOOOOO------OOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xff, 0xc3, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOOOOOO----OOOOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xff, 0xe7, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOOOOOOO--OOOOOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xc0, // OOOOOO---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOOOO-..... - 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf1, 0xff, 0x80, // OOOOOO---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOOO--..... - 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf1, 0xff, 0x00, // OOOOOO---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOO---..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - - // ASCII: 119, char width: 60 - 0x00, 0x00, 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOO------------------------.... - 0x00, 0x00, 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOO---------------------.... - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOO------------------.... - 0x00, 0x00, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------.... - 0x00, 0x03, 0xff, 0x80, 0x1f, 0xfc, 0x00, 0x00, // --------------OOOOOOOOOOO----------OOOOOOOOOOO--------------.... - 0x00, 0x07, 0xfc, 0x00, 0x03, 0xfe, 0x00, 0x00, // -------------OOOOOOOOO----------------OOOOOOOOO-------------.... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x7f, 0x80, 0x00, // -----------OOOOOOOO----------------------OOOOOOOO-----------.... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x3f, 0xc0, 0x00, // ----------OOOOOOOO------------------------OOOOOOOO----------.... - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x7f, 0xe0, 0x00, // ---------OOOOOOOOOO----------------------OOOOOOOOOO---------.... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOO--------------------OOOOOOOOOOOO--------.... - 0x01, 0xff, 0xf8, 0x00, 0x01, 0xff, 0xf8, 0x00, // -------OOOOOOOOOOOOOO------------------OOOOOOOOOOOOOO-------.... - 0x03, 0xff, 0xfc, 0x00, 0x03, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOO----------------OOOOOOOOOOOOOOOO------.... - 0x07, 0xff, 0xfe, 0x00, 0x07, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOO--------------OOOOOOOOOOOOOOOOOO-----.... - 0x07, 0xff, 0xff, 0x3f, 0xcf, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOOO--OOOOOOOO--OOOOOOOOOOOOOOOOOOO-----.... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOOO---.... - 0x3e, 0xff, 0xff, 0x00, 0x0f, 0xff, 0xf7, 0xc0, // --OOOOO-OOOOOOOOOOOOOOOO------------OOOOOOOOOOOOOOOO-OOOOO--.... - 0x3e, 0x7f, 0xfc, 0x00, 0x03, 0xff, 0xe7, 0xc0, // --OOOOO--OOOOOOOOOOOOO----------------OOOOOOOOOOOOO--OOOOO--.... - 0x3c, 0x3f, 0xf8, 0x00, 0x01, 0xff, 0xc3, 0xc0, // --OOOO----OOOOOOOOOOO------------------OOOOOOOOOOO----OOOO--.... - 0x7c, 0x1f, 0xf0, 0x00, 0x00, 0xff, 0x83, 0xe0, // -OOOOO-----OOOOOOOOO--------------------OOOOOOOOO-----OOOOO-.... - 0x7c, 0x0f, 0xf0, 0x00, 0x00, 0xff, 0x03, 0xe0, // -OOOOO------OOOOOOOO--------------------OOOOOOOO------OOOOO-.... - 0x78, 0x07, 0xe0, 0x00, 0x00, 0x7e, 0x01, 0xe0, // -OOOO--------OOOOOO----------------------OOOOOO--------OOOO-.... - 0xf8, 0x03, 0xc0, 0x00, 0x00, 0x3c, 0x01, 0xf0, // OOOOO---------OOOO------------------------OOOO---------OOOOO.... - 0xf8, 0x07, 0xc0, 0x00, 0x00, 0x3e, 0x01, 0xf0, // OOOOO--------OOOOO------------------------OOOOO--------OOOOO.... - 0xf8, 0x07, 0xc0, 0x00, 0x00, 0x3e, 0x01, 0xf0, // OOOOO--------OOOOO------------------------OOOOO--------OOOOO.... - 0xf0, 0x07, 0xc0, 0x00, 0x00, 0x1e, 0x00, 0xf0, // OOOO---------OOOOO-------------------------OOOO---------OOOO.... - 0xf0, 0x07, 0x80, 0x00, 0x00, 0x1e, 0x00, 0xf0, // OOOO---------OOOO--------------------------OOOO---------OOOO.... - 0xf0, 0x07, 0x80, 0x00, 0x00, 0x1e, 0x00, 0xf0, // OOOO---------OOOO--------------------------OOOO---------OOOO.... - 0xf0, 0x07, 0x80, 0x00, 0x00, 0x1e, 0x00, 0xf0, // OOOO---------OOOO--------------------------OOOO---------OOOO.... - 0xf0, 0x07, 0x80, 0x00, 0x00, 0x1e, 0x00, 0xf0, // OOOO---------OOOO--------------------------OOOO---------OOOO.... - 0xf0, 0x07, 0x80, 0x00, 0x00, 0x1e, 0x00, 0xf0, // OOOO---------OOOO--------------------------OOOO---------OOOO.... - 0xf8, 0x07, 0xc0, 0x00, 0x00, 0x3e, 0x01, 0xf0, // OOOOO--------OOOOO------------------------OOOOO--------OOOOO.... - 0xf8, 0x07, 0xc0, 0x00, 0x00, 0x3e, 0x01, 0xf0, // OOOOO--------OOOOO------------------------OOOOO--------OOOOO.... - 0xf8, 0x03, 0xc0, 0x00, 0x00, 0x3c, 0x01, 0xf0, // OOOOO---------OOOO------------------------OOOO---------OOOOO.... - 0x78, 0x07, 0xe0, 0x00, 0x00, 0x7e, 0x01, 0xe0, // -OOOO--------OOOOOO----------------------OOOOOO--------OOOO-.... - 0x78, 0x0f, 0xe0, 0x00, 0x00, 0xff, 0x01, 0xe0, // -OOOO-------OOOOOOO---------------------OOOOOOOO-------OOOO-.... - 0x7c, 0x1f, 0xf0, 0x00, 0x00, 0xff, 0x83, 0xe0, // -OOOOO-----OOOOOOOOO--------------------OOOOOOOOO-----OOOOO-.... - 0x7c, 0x3f, 0xf8, 0x00, 0x01, 0xff, 0xc3, 0xe0, // -OOOOO----OOOOOOOOOOO------------------OOOOOOOOOOO----OOOOO-.... - 0x3e, 0x7f, 0xfc, 0x00, 0x03, 0xff, 0xe7, 0xc0, // --OOOOO--OOOOOOOOOOOOO----------------OOOOOOOOOOOOO--OOOOO--.... - 0x3e, 0xff, 0xff, 0x00, 0x0f, 0xff, 0xf7, 0xc0, // --OOOOO-OOOOOOOOOOOOOOOO------------OOOOOOOOOOOOOOOO-OOOOO--.... - 0x1f, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x07, 0xff, 0xff, 0x3f, 0xcf, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOOO--OOOOOOOO--OOOOOOOOOOOOOOOOOOO-----.... - 0x03, 0xff, 0xfe, 0x00, 0x07, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOOO--------------OOOOOOOOOOOOOOOOO------.... - 0x03, 0xff, 0xfc, 0x00, 0x03, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOO----------------OOOOOOOOOOOOOOOO------.... - 0x01, 0xff, 0xf8, 0x00, 0x01, 0xff, 0xf8, 0x00, // -------OOOOOOOOOOOOOO------------------OOOOOOOOOOOOOO-------.... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOO--------------------OOOOOOOOOOOO--------.... - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x7f, 0xe0, 0x00, // ---------OOOOOOOOOO----------------------OOOOOOOOOO---------.... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x3f, 0xc0, 0x00, // ----------OOOOOOOO------------------------OOOOOOOO----------.... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x7f, 0x80, 0x00, // -----------OOOOOOOO----------------------OOOOOOOO-----------.... - 0x00, 0x07, 0xfc, 0x00, 0x03, 0xfe, 0x00, 0x00, // -------------OOOOOOOOO----------------OOOOOOOOO-------------.... - 0x00, 0x03, 0xff, 0x80, 0x1f, 0xfc, 0x00, 0x00, // --------------OOOOOOOOOOO----------OOOOOOOOOOO--------------.... - 0x00, 0x00, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------.... - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOO------------------.... - 0x00, 0x00, 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOO---------------------.... - 0x00, 0x00, 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOO-------------------------.... - - // ASCII: 120, char width: 51 - 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOO-----------------------............. - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO----------------------............. - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO---------------------............. - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO---------------------............. - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO---------------------............. - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO---------------------............. - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO---------------------............. - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO---------------------............. - 0x00, 0x0c, 0x07, 0xfc, 0x02, 0x00, 0x00, 0x00, // ------------OO-------OOOOOOOOO--------O------------............. - 0x00, 0x3f, 0x07, 0xfc, 0x0f, 0x80, 0x00, 0x00, // ----------OOOOOO-----OOOOOOOOO------OOOOO----------............. - 0x00, 0x7f, 0x87, 0xfc, 0x1f, 0xe0, 0x00, 0x00, // ---------OOOOOOOO----OOOOOOOOO-----OOOOOOOO--------............. - 0x00, 0xff, 0x87, 0xfc, 0x3f, 0xf0, 0x00, 0x00, // --------OOOOOOOOO----OOOOOOOOO----OOOOOOOOOO-------............. - 0x01, 0xff, 0x87, 0xfc, 0x3f, 0xf8, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOO----OOOOOOOOOOO------............. - 0x03, 0xff, 0x87, 0xfc, 0x3f, 0xfc, 0x00, 0x00, // ------OOOOOOOOOOO----OOOOOOOOO----OOOOOOOOOOOO-----............. - 0x07, 0xff, 0x87, 0xfc, 0x1f, 0xfc, 0x00, 0x00, // -----OOOOOOOOOOOO----OOOOOOOOO-----OOOOOOOOOOO-----............. - 0x0f, 0xff, 0x07, 0xfc, 0x1f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOOO-----OOOOOOOOO-----OOOOOOOOOOOO----............. - 0x0f, 0xfe, 0x07, 0xfc, 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOO------OOOOOOOOO------OOOOOOOOOOOO---............. - 0x1f, 0xfc, 0x07, 0xfc, 0x07, 0xff, 0x00, 0x00, // ---OOOOOOOOOOO-------OOOOOOOOO-------OOOOOOOOOOO---............. - 0x1f, 0xf8, 0x07, 0xfc, 0x03, 0xff, 0x80, 0x00, // ---OOOOOOOOOO--------OOOOOOOOO--------OOOOOOOOOOO--............. - 0x3f, 0xf0, 0x07, 0xfc, 0x01, 0xff, 0x80, 0x00, // --OOOOOOOOOO---------OOOOOOOOO---------OOOOOOOOOO--............. - 0x3f, 0xe0, 0x07, 0xfc, 0x00, 0xff, 0xc0, 0x00, // --OOOOOOOOO----------OOOOOOOOO----------OOOOOOOOOO-............. - 0x7f, 0xe0, 0x07, 0xfc, 0x00, 0x7f, 0xc0, 0x00, // -OOOOOOOOOO----------OOOOOOOOO-----------OOOOOOOOO-............. - 0x7f, 0xc0, 0x07, 0xfc, 0x00, 0x7f, 0xc0, 0x00, // -OOOOOOOOO-----------OOOOOOOOO-----------OOOOOOOOO-............. - 0x7f, 0xc0, 0x07, 0xfc, 0x00, 0x3f, 0xe0, 0x00, // -OOOOOOOOO-----------OOOOOOOOO------------OOOOOOOOO............. - 0xff, 0xc0, 0x07, 0xfc, 0x00, 0x3f, 0xe0, 0x00, // OOOOOOOOOO-----------OOOOOOOOO------------OOOOOOOOO............. - 0xff, 0x80, 0x07, 0xfc, 0x00, 0x3f, 0xe0, 0x00, // OOOOOOOOO------------OOOOOOOOO------------OOOOOOOOO............. - 0xff, 0x80, 0x07, 0xfc, 0x00, 0x3f, 0xe0, 0x00, // OOOOOOOOO------------OOOOOOOOO------------OOOOOOOOO............. - 0xff, 0x80, 0x03, 0xfc, 0x00, 0x1f, 0xe0, 0x00, // OOOOOOOOO-------------OOOOOOOO-------------OOOOOOOO............. - 0xff, 0x80, 0x03, 0xf8, 0x00, 0x1f, 0xe0, 0x00, // OOOOOOOOO-------------OOOOOOO--------------OOOOOOOO............. - 0xff, 0x80, 0x00, 0xf0, 0x00, 0x1f, 0xf0, 0x00, // OOOOOOOOO---------------OOOO---------------OOOOOOOOO............ - 0xff, 0x80, 0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, // OOOOOOOOO----------------------------------OOOOOOOO............. - 0xff, 0x80, 0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, // OOOOOOOOO----------------------------------OOOOOOOO............. - 0xff, 0x80, 0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, // OOOOOOOOO----------------------------------OOOOOOOO............. - 0xff, 0x80, 0x00, 0x00, 0x00, 0x3f, 0xe0, 0x00, // OOOOOOOOO---------------------------------OOOOOOOOO............. - 0xff, 0x80, 0x00, 0x00, 0x00, 0x3f, 0xe0, 0x00, // OOOOOOOOO---------------------------------OOOOOOOOO............. - 0xff, 0xc0, 0x00, 0x00, 0x00, 0x3f, 0xe0, 0x00, // OOOOOOOOOO--------------------------------OOOOOOOOO............. - 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x7f, 0xe0, 0x00, // -OOOOOOOOO-------------------------------OOOOOOOOOO............. - 0x7f, 0xe0, 0x00, 0x00, 0x00, 0x7f, 0xc0, 0x00, // -OOOOOOOOOO------------------------------OOOOOOOOO-............. - 0x7f, 0xe0, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, // -OOOOOOOOOO-----------------------------OOOOOOOOOO-............. - 0x3f, 0xf0, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, // --OOOOOOOOOO----------------------------OOOOOOOOOO-............. - 0x3f, 0xf0, 0x00, 0x00, 0x01, 0xff, 0x80, 0x00, // --OOOOOOOOOO---------------------------OOOOOOOOOO--............. - 0x1f, 0xf8, 0x00, 0x00, 0x03, 0xff, 0x80, 0x00, // ---OOOOOOOOOO-------------------------OOOOOOOOOOO--............. - 0x1f, 0xfc, 0x00, 0x00, 0x07, 0xff, 0x00, 0x00, // ---OOOOOOOOOOO-----------------------OOOOOOOOOOO---............. - 0x0f, 0xfe, 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOO---------------------OOOOOOOOOOOO---............. - 0x07, 0xff, 0x80, 0x00, 0x3f, 0xfe, 0x00, 0x00, // -----OOOOOOOOOOOO-----------------OOOOOOOOOOOOO----............. - 0x07, 0xff, 0xe0, 0x00, 0x7f, 0xfc, 0x00, 0x00, // -----OOOOOOOOOOOOOO--------------OOOOOOOOOOOOO-----............. - 0x03, 0xff, 0xfc, 0x03, 0xff, 0xf8, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOO------............. - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------............. - 0x00, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............. - 0x00, 0x7f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............. - 0x00, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------............. - 0x00, 0x1f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............. - 0x00, 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOO-------------............. - 0x00, 0x01, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOOOOO--------------............. - 0x00, 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOO-----------------............. - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO--------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - - // ASCII: 121, char width: 51 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO--------------------............. - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO--------------------............. - 0x00, 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOO--------------------............. - 0x00, 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOO--------------------............. - 0x00, 0x30, 0x0f, 0xfe, 0x01, 0x80, 0x00, 0x00, // ----------OO--------OOOOOOOOOOO--------OO----------............. - 0x00, 0x7c, 0x0f, 0xfe, 0x03, 0xc0, 0x00, 0x00, // ---------OOOOO------OOOOOOOOOOO-------OOOO---------............. - 0x00, 0xfe, 0x0f, 0xff, 0x07, 0xe0, 0x00, 0x00, // --------OOOOOOO-----OOOOOOOOOOOO-----OOOOOO--------............. - 0x01, 0xff, 0x3f, 0xff, 0x9f, 0xf0, 0x00, 0x00, // -------OOOOOOOOO--OOOOOOOOOOOOOOO--OOOOOOOOO-------............. - 0x03, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------............. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............. - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----............. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----............. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............. - 0x03, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------............. - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............. - 0x00, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............. - 0x00, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............. - 0x00, 0xff, 0xfe, 0x07, 0xff, 0xf0, 0x00, 0x00, // --------OOOOOOOOOOOOOOO------OOOOOOOOOOOOOOO-------............. - 0x01, 0xff, 0xf8, 0x01, 0xff, 0xf0, 0x00, 0x00, // -------OOOOOOOOOOOOOO----------OOOOOOOOOOOOO-------............. - 0x01, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0x00, // -------OOOOOOOOOOOOO------------OOOOOOOOOOOO-------............. - 0x7f, 0xff, 0xe0, 0x00, 0x7f, 0xff, 0x80, 0x00, // -OOOOOOOOOOOOOOOOOO--------------OOOOOOOOOOOOOOOO--............. - 0xff, 0xff, 0xc0, 0x00, 0x7f, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOO---------------OOOOOOOOOOOOOOOOOO............. - 0xff, 0xff, 0xc0, 0x00, 0x3f, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOO----------------OOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0x80, 0x00, 0x3f, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOO-----------------OOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0x80, 0x00, 0x3f, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOO-----------------OOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0x80, 0x00, 0x3f, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOO-----------------OOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0x80, 0x00, 0x3f, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOO-----------------OOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0x80, 0x00, 0x3f, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOO-----------------OOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xc0, 0x00, 0x3f, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOO----------------OOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xc0, 0x00, 0x7f, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOO---------------OOOOOOOOOOOOOOOOOO............. - 0x7f, 0xff, 0xe0, 0x00, 0x7f, 0xff, 0xc0, 0x00, // -OOOOOOOOOOOOOOOOOO--------------OOOOOOOOOOOOOOOOO-............. - 0x01, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0x00, // -------OOOOOOOOOOOOO------------OOOOOOOOOOOO-------............. - 0x01, 0xff, 0xf8, 0x01, 0xff, 0xf0, 0x00, 0x00, // -------OOOOOOOOOOOOOO----------OOOOOOOOOOOOO-------............. - 0x00, 0xff, 0xfe, 0x07, 0xff, 0xf0, 0x00, 0x00, // --------OOOOOOOOOOOOOOO------OOOOOOOOOOOOOOO-------............. - 0x00, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............. - 0x00, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............. - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............. - 0x03, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------............. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----............. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----............. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............. - 0x03, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------............. - 0x01, 0xff, 0x3f, 0xff, 0xdf, 0xf0, 0x00, 0x00, // -------OOOOOOOOO--OOOOOOOOOOOOOOOO-OOOOOOOOO-------............. - 0x00, 0xfe, 0x0f, 0xff, 0x0f, 0xe0, 0x00, 0x00, // --------OOOOOOO-----OOOOOOOOOOOO----OOOOOOO--------............. - 0x00, 0x7c, 0x0f, 0xff, 0x03, 0xc0, 0x00, 0x00, // ---------OOOOO------OOOOOOOOOOOO------OOOO---------............. - 0x00, 0x30, 0x0f, 0xfe, 0x01, 0x80, 0x00, 0x00, // ----------OO--------OOOOOOOOOOO--------OO----------............. - 0x00, 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOO--------------------............. - 0x00, 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOO--------------------............. - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO--------------------............. - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO--------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - - // ASCII: 122, char width: 68 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x1f, 0xff, 0x80, 0x00, 0x00, // ---------------------------OOOOOOOOOOOOOO----------------------- - 0x00, 0x00, 0x01, 0xff, 0xff, 0xfc, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOOOOOOOOO------------------ - 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0x80, 0x00, // -------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------- - 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // ----------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------ - 0x00, 0x03, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------- - 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------- - 0x00, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------ - 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---- - 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--- - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x7f, 0xff, 0xfe, // ------OOOOOOOOOOOOOOOOOOOOOO-------------OOOOOOOOOOOOOOOOOOOOOO- - 0x07, 0xff, 0xff, 0x00, 0x00, 0x07, 0xff, 0xff, // -----OOOOOOOOOOOOOOOOOOO---------------------OOOOOOOOOOOOOOOOOOO - 0x1f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0xff, 0xff, // ---OOOOOOOOOOOOOOOOOO---------------------------OOOOOOOOOOOOOOOO - 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x3f, 0xff, // --OOOOOOOOOOOOOOOOO-------------------------------OOOOOOOOOOOOOO - 0x7f, 0xff, 0x80, 0x0f, 0xff, 0x00, 0x0f, 0xff, // -OOOOOOOOOOOOOOOO-----------OOOOOOOOOOOO------------OOOOOOOOOOOO - 0x7f, 0xfe, 0x00, 0xff, 0xff, 0xf0, 0x03, 0xff, // -OOOOOOOOOOOOOO---------OOOOOOOOOOOOOOOOOOOO----------OOOOOOOOOO - 0x3f, 0xf8, 0x03, 0xff, 0xff, 0xfe, 0x01, 0xff, // --OOOOOOOOOOO---------OOOOOOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOO - 0x1f, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xc0, 0x7f, // ---OOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------OOOOOOO - 0x0f, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x3f, // ----OOOOOOO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------OOOOOO - 0x07, 0x80, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1f, // -----OOOO-------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------OOOOO - 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x04, // ------OO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------O-- - 0x00, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------- - 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------- - 0x00, 0x1f, 0xff, 0xfc, 0x01, 0xff, 0xff, 0xc0, // -----------OOOOOOOOOOOOOOOOOOO---------OOOOOOOOOOOOOOOOOOO------ - 0x00, 0x3f, 0xff, 0xc0, 0x00, 0x1f, 0xff, 0xc0, // ----------OOOOOOOOOOOOOOOO-----------------OOOOOOOOOOOOOOO------ - 0x00, 0x1f, 0xff, 0x00, 0x00, 0x07, 0xff, 0x80, // -----------OOOOOOOOOOOOO---------------------OOOOOOOOOOOO------- - 0x00, 0x0f, 0xfc, 0x00, 0x00, 0x01, 0xff, 0x00, // ------------OOOOOOOOOO-------------------------OOOOOOOOO-------- - 0x00, 0x07, 0xf0, 0x03, 0xfe, 0x00, 0x7f, 0x00, // -------------OOOOOOO----------OOOOOOOOO----------OOOOOOO-------- - 0x00, 0x03, 0xc0, 0x3f, 0xff, 0xc0, 0x3e, 0x00, // --------------OOOO--------OOOOOOOOOOOOOOOO--------OOOOO--------- - 0x00, 0x01, 0x80, 0xff, 0xff, 0xf0, 0x18, 0x00, // ---------------OO-------OOOOOOOOOOOOOOOOOOOO-------OO----------- - 0x00, 0x00, 0x01, 0xff, 0xff, 0xfc, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOOOOOOOOO------------------ - 0x00, 0x00, 0x07, 0xff, 0xff, 0xfe, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOOOOOOOOOO----------------- - 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0x80, 0x00, // --------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------- - 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0x80, 0x00, // --------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------- - 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------- - 0x00, 0x00, 0x07, 0xff, 0xff, 0xff, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------------- - 0x00, 0x00, 0x03, 0xfe, 0x03, 0xfe, 0x00, 0x00, // ----------------------OOOOOOOOO-------OOOOOOOOO----------------- - 0x00, 0x00, 0x01, 0xf0, 0x00, 0xfc, 0x00, 0x00, // -----------------------OOOOO------------OOOOOO------------------ - 0x00, 0x00, 0x00, 0xc0, 0x00, 0x30, 0x00, 0x00, // ------------------------OO----------------OO-------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // -------------------------------OOOOOO--------------------------- - 0x00, 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, // -----------------------------OOOOOOOOOO------------------------- - 0x00, 0x00, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -----------------------------OOOOOOOOOOO------------------------ - 0x00, 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, // -----------------------------OOOOOOOOOO------------------------- - 0x00, 0x00, 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, // ------------------------------OOOOOOOOO------------------------- - 0x00, 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // -------------------------------OOOOOOO-------------------------- - 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // --------------------------------OOOOO--------------------------- - 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // ---------------------------------OO----------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- -}; - - -static const uint8_t symbol_60_widths[26] = -{ - 60, 51, 64, 47, 51, 51, 60, 47, - 60, 43, 43, 60, 34, 34, 47, 60, - 49, 59, 59, 59, 59, 59, 60, 51, - 51, 68, -}; - -static const font_t symbol_60_dsc = -{ - 26, // Letter count - 97, // First ascii code - 8, // Letters width (bytes) - 60, // Letters height (row) - 0, // Fixed width or 0 if variable - symbol_60_widths, - symbol_60_bitmaps -}; - -const font_t * symbol_60_get_dsc(void) -{ - return &symbol_60_dsc; -} - - -#endif diff --git a/lv_misc/fonts/symbol_60.h b/lv_misc/fonts/symbol_60.h deleted file mode 100644 index 81fdf564c..000000000 --- a/lv_misc/fonts/symbol_60.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef SYMBOL_60_H -#define SYMBOL_60_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_SYMBOL_60 != 0 - -#include -#include "../font.h" - -const font_t * symbol_60_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/symbol_def.h b/lv_misc/fonts/symbol_def.h deleted file mode 100644 index aad1df986..000000000 --- a/lv_misc/fonts/symbol_def.h +++ /dev/null @@ -1,39 +0,0 @@ -#ifndef SYMBOL_DEF_H -#define SYMBOL_DEF_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_SYMBOL_30 != 0 || USE_FONT_SYMBOL_60 != 0 - - -#define SYMBOL_DRIVE "a" -#define SYMBOL_FILE "b" -#define SYMBOL_FOLDER "c" -#define SYMBOL_DELETE "d" -#define SYMBOL_SAVE "e" -#define SYMBOL_EDIT "f" -#define SYMBOL_OK "g" -#define SYMBOL_CLOSE "h" -#define SYMBOL_DOWN "i" -#define SYMBOL_LEFT "j" -#define SYMBOL_RIGHT "k" -#define SYMBOL_UP "l" -#define SYMBOL_BT "m" -#define SYMBOL_THERM "n" -#define SYMBOL_GPS "o" -#define SYMBOL_WARN "p" -#define SYMBOL_INFO "q" -#define SYMBOL_BATT1 "r" -#define SYMBOL_BATT2 "s" -#define SYMBOL_BATT3 "t" -#define SYMBOL_BATT4 "u" -#define SYMBOL_BATTCH "v" -#define SYMBOL_HELP "w" -#define SYMBOL_POWER "x" -#define SYMBOL_SETUP "y" -#define SYMBOL_WIFI "z" - -#endif - -#endif /*SYMBOL_DEF_H*/ diff --git a/lv_misc/text.c b/lv_misc/text.c deleted file mode 100644 index 01ad6568f..000000000 --- a/lv_misc/text.c +++ /dev/null @@ -1,265 +0,0 @@ -/** - * @file font.c - * - */ - -/********************* - * INCLUDES - *********************/ -#include "text.h" -#include "misc/math/math_base.h" - -/********************* - * DEFINES - *********************/ -#define TXT_NO_BREAK_FOUND UINT16_MAX - -/********************** - * TYPEDEFS - **********************/ - -/********************** - * STATIC PROTOTYPES - **********************/ -static bool txt_is_break_char(char letter); - -/********************** - * STATIC VARIABLES - **********************/ - -/********************** - * MACROS - **********************/ - -/********************** - * GLOBAL FUNCTIONS - **********************/ - -/** - * Get size of a text - * @param size_res pointer to a 'point_t' variable to store the result - * @param text pointer to a text - * @param font pinter to font of the text - * @param letter_space letter space of the text - * @param line_space line space of the text - * @param flags settings for the text from 'txt_flag_t' enum - * @param max_width max with of the text (break the lines to fit this size) Set LV_CORD_MAX to avoid line breaks - */ -void txt_get_size(point_t * size_res, const char * text, const font_t * font, - uint16_t letter_space, uint16_t line_space, cord_t max_width, txt_flag_t flag) -{ - size_res->x = 0; - size_res->y = 0; - - if(text == NULL) return; - if(font == NULL) return; - - uint32_t line_start = 0; - uint32_t new_line_start = 0; - cord_t act_line_length; - uint8_t letter_height = font_get_height(font); - - /*Calc. the height and longest line*/ - while (text[line_start] != '\0') - { - new_line_start += txt_get_next_line(&text[line_start], font, letter_space, max_width, flag); - size_res->y += letter_height; - size_res->y += line_space; - - /*Calculate the the longest line*/ - act_line_length = txt_get_width(&text[line_start], new_line_start - line_start, - font, letter_space, flag); - - size_res->x = MATH_MAX(act_line_length, size_res->x); - line_start = new_line_start; - } - - if(line_start != 0 && (text[line_start - 1] == '\n' || text[line_start - 1] == '\r')) { - size_res->y += letter_height + line_space; - } - - /*Correction with the last line space or set the height manually if the text is empty*/ - if(size_res->y == 0) size_res->y = letter_height; - else size_res->y -= line_space; - -} - -/** - * Get the next line of text. Check line length and break chars too. - * @param txt a '\0' terminated string - * @param font pointer to a font - * @param letter_space letter space - * @param max_l max line length - * @param flags settings for the text from 'txt_flag_type' enum - * @return the index of the first char of the new line - */ -uint16_t txt_get_next_line(const char * txt, const font_t * font, - uint16_t letter_space, cord_t max_l, txt_flag_t flag) -{ - if(txt == NULL) return 0; - if(font == NULL) return 0; - - uint32_t i = 0; - cord_t act_l = 0; - uint16_t last_break = TXT_NO_BREAK_FOUND; - txt_cmd_state_t cmd_state = TXT_CMD_STATE_WAIT; - - while(txt[i] != '\0') { - - /*Handle the recolor command*/ - if((flag & TXT_FLAG_RECOLOR) != 0) { - if(txt_is_cmd(&cmd_state, txt[i]) != false) { - i++; /*Skip the letter is it is part of a command*/ - continue; - } - } - - /*Check for new line chars*/ - if(txt[i] == '\n' || txt[i] == '\r') { - /*Handle \n\r and \r\n as well*/ - if(txt[i] == '\n' && txt[i + 1] == '\r') { - i++; - } else if(txt[i] == '\r' && txt[i + 1] == '\n') { - i++; - } - return i+1; /*Return with the first letter of the next line*/ - - } else { /*Check the actual length*/ - act_l += font_get_width(font, txt[i]); - - /*If the txt is too long then finish, this is the line end*/ - if(act_l > max_l) { - /*If already a break character is found, then break there*/ - if(last_break != TXT_NO_BREAK_FOUND && txt_is_break_char(txt[i]) == false) { - i = last_break; - } - - while(txt[i] == ' ') i++; - - /* Do not let to return without doing nothing. - * Find at least one character */ - if(i == 0) i++; - - return i; - } - /*If this char still can fit to this line then check if - * txt can be broken here later */ - else if(txt_is_break_char(txt[i])) { - last_break = i; - last_break++;/*Go to the next char, the break char stays in this line*/ - } - } - - act_l += letter_space; - i++; - } - - return i; -} - -/** - * Give the length of a text with a given font - * @param txt a '\0' terminate string - * @param char_num number of characters in 'txt' - * @param font pointer to a font - * @param letter_space letter space - * @param flags settings for the text from 'txt_flag_t' enum - * @return length of a char_num long text - */ -cord_t txt_get_width(const char * txt, uint16_t char_num, - const font_t * font, uint16_t letter_space, txt_flag_t flag) -{ - if(txt == NULL) return 0; - if(font == NULL) return 0; - - uint16_t i; - cord_t len = 0; - txt_cmd_state_t cmd_state = TXT_CMD_STATE_WAIT; - - if(char_num != 0) { - for(i = 0; i < char_num; i++) { - if((flag & TXT_FLAG_RECOLOR) != 0) { - if(txt_is_cmd(&cmd_state, txt[i]) != false) { - continue; - } - } - len += font_get_width(font, txt[i]); - len += letter_space; - } - - /*Trim closing spaces */ - for(i = char_num - 1; i > 0; i--) { - if(txt[i] == ' ') { - len -= font_get_width(font, txt[i]); - len -= letter_space; - } else { - break; - } - } - - /*Correct the last letter space, - * because thee is no letter space after the last char*/ - len -= letter_space; - } - - return len; -} - -/** - * Check next character in a string and decide if te character is part of the command or not - * @param state pointer to a txt_cmd_state_t variable which stores the current state of command processing - * @param c the current character - * @return true: the character is part of a command and should not be written, - * false: the character should be written - */ -bool txt_is_cmd(txt_cmd_state_t * state, char c) -{ - bool ret = false; - - if(c == TXT_RECOLOR_CMD) { - if(*state == TXT_CMD_STATE_WAIT) { /*Start char*/ - *state = TXT_CMD_STATE_PAR; - ret = true; - } else if(*state == TXT_CMD_STATE_PAR) { /*Other start char in parameter is escaped cmd. char */ - *state = TXT_CMD_STATE_WAIT; - }else if(*state == TXT_CMD_STATE_IN) { /*Command end */ - *state = TXT_CMD_STATE_WAIT; - ret = true; - } - } - - /*Skip the color parameter and wait the space after it*/ - if(*state == TXT_CMD_STATE_PAR) { - if(c == ' ') { - *state = TXT_CMD_STATE_IN; /*After the parameter the text is in the command*/ - } - ret = true; - } - - return ret; -} - -/********************** - * STATIC FUNCTIONS - **********************/ - -/** - * Test if char is break char or not (a text can broken here or not) - * @param letter a letter - * @return false: 'letter' is not break char - */ -static bool txt_is_break_char(char letter) -{ - uint8_t i; - bool ret = false; - - /*Compare the letter to TXT_BREAK_CHARS*/ - for(i = 0; LV_TXT_BREAK_CHARS[i] != '\0'; i++) { - if(letter == LV_TXT_BREAK_CHARS[i]) { - ret = true; /*If match then it is break char*/ - break; - } - } - - return ret; -} diff --git a/lv_misc/text.h b/lv_misc/text.h deleted file mode 100644 index 192801722..000000000 --- a/lv_misc/text.h +++ /dev/null @@ -1,94 +0,0 @@ -/** - * @file text.h - * - */ - -#ifndef TEXT_H -#define TEXT_H - -/********************* - * INCLUDES - *********************/ - -#include -#include -#include "font.h" -#include "area.h" - -/********************* - * DEFINES - *********************/ -#define TXT_RECOLOR_CMD '#' - -/********************** - * TYPEDEFS - **********************/ -typedef enum -{ - TXT_FLAG_NONE = 0x00, - TXT_FLAG_RECOLOR = 0x01, -}txt_flag_t; - -typedef enum -{ - TXT_CMD_STATE_WAIT, - TXT_CMD_STATE_PAR, - TXT_CMD_STATE_IN, -}txt_cmd_state_t; - -/********************** - * GLOBAL PROTOTYPES - **********************/ - -/** - * Get size of a text - * @param size_res pointer to a 'point_t' variable to store the result - * @param text pointer to a text - * @param font pinter to font of the text - * @param letter_space letter space of the text - * @param line_space line space of the text - * @param flags settings for the text from 'txt_flag_t' enum - * @param max_width max with of the text (break the lines to fit this size) Set LV_CORD_MAX to avoid line breaks - */ -void txt_get_size(point_t * size_res, const char * text, const font_t * font, - uint16_t letter_space, uint16_t line_space, cord_t max_width, txt_flag_t flag); - -/** - * Get the next line of text. Check line length and break chars too. - * @param txt a '\0' terminated string - * @param font_p pointer to a font - * @param letter_space letter space - * @param max_l max line length - * @param flags settings for the text from 'txt_flag_t' enum - * @return the index of the first char of the new line - */ -uint16_t txt_get_next_line(const char * txt, const font_t * font_p, - uint16_t letter_space, cord_t max_l, txt_flag_t flag); - -/** - * Give the length of a text with a given font - * @param txt a '\0' terminate string - * @param char_num number of characters in 'txt' - * @param font_p pointer to a font - * @param letter_space letter space - * @param flags settings for the text from 'txt_flag_t' enum - * @return length of a char_num long text - */ -cord_t txt_get_width(const char * txt, uint16_t char_num, - const font_t * font_p, uint16_t letter_space, txt_flag_t flag); - -/** - * Check next character in a string and decide if te character is part of the command or not - * @param state pointer to a txt_cmd_state_t variable which stores the current state of command processing - * @param c the current character - * @return true: the character is part of a command and should not be written, - * false: the character should be written - */ -bool txt_is_cmd(txt_cmd_state_t * state, char c); - -/********************** - * MACROS - **********************/ - -#endif - diff --git a/lv_obj/lv_dispi.c b/lv_obj/lv_dispi.c index efdde9feb..157b65f93 100644 --- a/lv_obj/lv_dispi.c +++ b/lv_obj/lv_dispi.c @@ -177,6 +177,7 @@ static void dispi_proc_point(lv_dispi_t * dispi_p, cord_t x, cord_t y) if(lv_dispi_reset_now != false) { dispi_p->act_obj = NULL; dispi_p->last_obj = NULL; + dispi_p->drag_range_out = 0; dispi_p->drag_in_prog = 0; dispi_p->long_press_sent = 0; dispi_p->press_time_stamp = 0; @@ -188,10 +189,10 @@ static void dispi_proc_point(lv_dispi_t * dispi_p, cord_t x, cord_t y) if(dispi_p->pressed != false){ #if LV_DISPI_TP_MARKER != 0 area_t area; - area.x1 = x; - area.y1 = y; - area.x2 = x + 1; - area.y2 = y + 1; + area.x1 = x - (LV_DISPI_TP_MARKER >> 1); + area.y1 = y - (LV_DISPI_TP_MARKER >> 1); + area.x2 = x + ((LV_DISPI_TP_MARKER >> 1) | 0x1); + area.y2 = y + ((LV_DISPI_TP_MARKER >> 1) | 0x1); lv_rfill(&area, NULL, COLOR_MAKE(0xFF, 0, 0), OPA_COVER); #endif dispi_proc_press(dispi_p); @@ -218,8 +219,8 @@ static void dispi_proc_press(lv_dispi_t * dispi_p) if(dispi_p->act_obj == NULL) { pr_obj = dispi_search_obj(dispi_p, lv_scr_act()); } - /*If there is last object but it can not be dragged also search*/ - else if(lv_obj_get_drag(dispi_p->act_obj) == false) {/*Now act_obj != NULL*/ + /*If there is last object but it is not dragged also search*/ + else if(dispi_p->drag_in_prog == 0) {/*Now act_obj != NULL*/ pr_obj = dispi_search_obj(dispi_p, lv_scr_act()); } /*If a dragable object was the last then keep it*/ @@ -244,6 +245,7 @@ static void dispi_proc_press(lv_dispi_t * dispi_p) * It is necessary to count the long press time.*/ dispi_p->press_time_stamp = systick_get(); dispi_p->long_press_sent = 0; + dispi_p->drag_range_out = 0; dispi_p->drag_in_prog = 0; dispi_p->vect_sum.x = 0; dispi_p->vect_sum.y = 0; @@ -402,7 +404,7 @@ static void dispi_drag(lv_dispi_t * dispi_p) if(lv_obj_get_drag(drag_obj) == false) return; /*If still there is no drag then count the movement*/ - if(dispi_p->drag_in_prog == 0) { + if(dispi_p->drag_range_out == 0) { dispi_p->vect_sum.x += dispi_p->vect.x; dispi_p->vect_sum.y += dispi_p->vect.y; @@ -410,21 +412,29 @@ static void dispi_drag(lv_dispi_t * dispi_p) if(MATH_ABS(dispi_p->vect_sum.x) >= LV_DISPI_DRAG_LIMIT || MATH_ABS(dispi_p->vect_sum.y) >= LV_DISPI_DRAG_LIMIT) { - dispi_p->drag_in_prog = 1; - drag_obj->signal_f(drag_obj, - LV_SIGNAL_DRAG_BEGIN, dispi_p); + dispi_p->drag_range_out = 1; } } /*If the drag limit is stepped over then handle the dragging*/ - if(dispi_p->drag_in_prog != 0) { + if(dispi_p->drag_range_out != 0) { /*Set new position if the vector is not zero*/ if(dispi_p->vect.x != 0 || dispi_p->vect.y != 0) { /*Get the coordinates of the object end modify them*/ - cord_t act_x = lv_obj_get_x(drag_obj) + dispi_p->vect.x; - cord_t act_y = lv_obj_get_y(drag_obj) + dispi_p->vect.y; - lv_obj_set_pos(drag_obj, act_x, act_y); + cord_t act_x = lv_obj_get_x(drag_obj); + cord_t act_y = lv_obj_get_y(drag_obj); + + lv_obj_set_pos(drag_obj, act_x + dispi_p->vect.x, act_y + dispi_p->vect.y); + + /*Set the drag in progress flag if the object is really moved*/ + if(lv_obj_get_x(drag_obj) != act_x || lv_obj_get_y(drag_obj) != act_y) { + if(dispi_p->drag_range_out != 0) { /*Send the drag begin signal on first move*/ + drag_obj->signal_f(drag_obj, LV_SIGNAL_DRAG_BEGIN, dispi_p); + } + dispi_p->drag_in_prog = 1; + } + } } } diff --git a/lv_obj/lv_dispi.h b/lv_obj/lv_dispi.h index 51915c264..b5175cb05 100644 --- a/lv_obj/lv_dispi.h +++ b/lv_obj/lv_dispi.h @@ -31,6 +31,7 @@ typedef struct uint32_t lpr_rep_time_stamp; /*Flags*/ + uint8_t drag_range_out :1; uint8_t drag_in_prog :1; uint8_t long_press_sent :1; uint8_t wait_release :1; @@ -39,8 +40,8 @@ typedef struct typedef enum { - LV_ACTION_RES_INV = 0, - LV_ACTION_RES_OK, + LV_ACTION_RES_INV = 0, /*Typically indicates that the object is deleted (become invalid) in the action function*/ + LV_ACTION_RES_OK, /*The object is valid (no deleted) after the action*/ }lv_action_res_t; typedef lv_action_res_t ( * lv_action_t) (struct __LV_OBJ_T * obj, lv_dispi_t * dispi); diff --git a/lv_obj/lv_obj.c b/lv_obj/lv_obj.c index 83e04dff4..969cbf89f 100644 --- a/lv_obj/lv_obj.c +++ b/lv_obj/lv_obj.c @@ -7,13 +7,14 @@ * INCLUDES *********************/ -#include -#include -#include -#include -#include -#include -#include +#include "lv_conf.h" +#include "lvgl/lv_draw/lv_draw.h" +#include "lvgl/lv_obj/lv_dispi.h" +#include "lvgl/lv_obj/lv_obj.h" +#include "lvgl/lv_obj/lv_refr.h" +#include "lvgl/lv_app/lv_app.h" +#include "lvgl/lv_draw/lv_draw_rbasic.h" +#include "misc/gfx/anim.h" #include #include @@ -34,6 +35,7 @@ **********************/ static void lv_obj_pos_child_refr(lv_obj_t * obj, cord_t x_diff, cord_t y_diff); static void lv_style_refr_core(void * style_p, lv_obj_t * obj); +static void lv_child_refr_style(lv_obj_t * obj); static void lv_obj_del_child(lv_obj_t * obj); static bool lv_obj_design(lv_obj_t * obj, const area_t * mask_p, lv_design_mode_t mode); @@ -44,11 +46,6 @@ static lv_obj_t * def_scr = NULL; static lv_obj_t * act_scr = NULL; static ll_dsc_t scr_ll; -static lv_objs_t lv_objs_def = {.color = COLOR_MAKE(0xa0, 0xc0, 0xe0), .transp = 0}; -static lv_objs_t lv_objs_scr = {.color = LV_OBJ_DEF_SCR_COLOR, .transp = 0}; -static lv_objs_t lv_objs_transp = {.transp = 1}; - - #ifdef LV_IMG_DEF_WALLPAPER LV_IMG_DECLARE(LV_IMG_DEF_WALLPAPER); #endif @@ -70,12 +67,12 @@ void lv_init(void) area_t scr_area; area_set(&scr_area, 0, 0, LV_HOR_RES, LV_VER_RES); lv_rfill(&scr_area, NULL, COLOR_BLACK, OPA_COVER); + + /*Init. the sstyles*/ + lv_style_init(); /*Init. the screen refresh system*/ lv_refr_init(); - - /*Init. the animations*/ - anim_init(); /*Create the default screen*/ ll_init(&scr_ll, sizeof(lv_obj_t)); @@ -84,6 +81,7 @@ void lv_init(void) def_scr = lv_img_create(NULL, NULL); lv_img_set_auto_size(def_scr, false); lv_img_set_file(def_scr, "U:/def_wp"); + lv_img_set_upscale(def_scr, true); #else def_scr = lv_obj_create(NULL, NULL); #endif @@ -133,15 +131,16 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) new_obj->ext_size = 0; /*Set appearance*/ - new_obj->style_p = lv_objs_get(LV_OBJS_SCR, NULL); - new_obj->opa = OPA_COVER; + new_obj->style_p = lv_style_get(LV_STYLE_SCR, NULL); /*Set virtual functions*/ lv_obj_set_signal_f(new_obj, lv_obj_signal); lv_obj_set_design_f(new_obj, lv_obj_design); /*Set free data*/ +#if LV_OBJ_FREE_NUM != 0 new_obj->free_num = 0; +#endif #if LV_OBJ_FREE_P != 0 new_obj->free_p = NULL; #endif @@ -151,7 +150,6 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) new_obj->drag_en = 0; new_obj->drag_throw_en = 0; new_obj->drag_parent = 0; - new_obj->style_iso = 0; new_obj->hidden = 0; new_obj->top_en = 0; new_obj->protect = LV_PROTECT_NONE; @@ -176,15 +174,16 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) new_obj->ext_size = 0; /*Set appearance*/ - new_obj->style_p = lv_objs_get(LV_OBJS_DEF, NULL); - new_obj->opa = OPA_COVER; + new_obj->style_p = lv_style_get(LV_STYLE_PLAIN, NULL); /*Set virtual functions*/ lv_obj_set_signal_f(new_obj, lv_obj_signal); lv_obj_set_design_f(new_obj, lv_obj_design); /*Set free data*/ +#if LV_OBJ_FREE_NUM != 0 new_obj->free_num = 0; +#endif #if LV_OBJ_FREE_P != 0 new_obj->free_p = NULL; #endif @@ -194,7 +193,6 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) new_obj->drag_en = 0; new_obj->drag_throw_en = 0; new_obj->drag_parent = 0; - new_obj->style_iso = 0; new_obj->hidden = 0; new_obj->top_en = 0; new_obj->protect = LV_PROTECT_NONE; @@ -207,10 +205,10 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) area_cpy(&new_obj->cords, ©->cords); new_obj->ext_size = copy->ext_size; - new_obj->opa = copy->opa; - /*Set free data*/ +#if LV_OBJ_FREE_NUM != 0 new_obj->free_num = copy->free_num; +#endif #if LV_OBJ_FREE_P != 0 new_obj->free_p = copy->free_p; #endif @@ -225,10 +223,6 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) new_obj->style_p = copy->style_p; - if(copy->style_iso != 0) { - lv_obj_iso_style(new_obj, dm_get_size(copy->style_p)); - } - lv_obj_set_pos(new_obj, lv_obj_get_x(copy), lv_obj_get_y(copy)); } @@ -246,7 +240,7 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) /** * Delete 'obj' and all of its children - * @param obj + * @param obj pointer to an object to delete */ void lv_obj_del(lv_obj_t * obj) { @@ -284,7 +278,6 @@ void lv_obj_del(lv_obj_t * obj) /*Delete the base objects*/ if(obj->ext != NULL) dm_free(obj->ext); - if(obj->style_iso != 0) dm_free(obj->style_p); dm_free(obj); /*Free the object itself*/ /* Reset all display input (dispi) because @@ -308,50 +301,25 @@ bool lv_obj_signal(lv_obj_t * obj, lv_signal_t sign, void * param) { bool valid = true; + lv_style_t * style = lv_obj_get_style(obj); switch(sign) { - case LV_SIGNAL_CHILD_CHG: - /*Return 'invalid' if the child change signal is not enabled*/ - if(lv_obj_is_protected(obj, LV_PROTECT_CHILD_CHG) != false) valid = false; - break; - default: - break; + case LV_SIGNAL_CHILD_CHG: + /*Return 'invalid' if the child change signal is not enabled*/ + if(lv_obj_is_protected(obj, LV_PROTECT_CHILD_CHG) != false) valid = false; + break; + case LV_SIGNAL_REFR_EXT_SIZE: + if(style->swidth > obj->ext_size) obj->ext_size = style->swidth; + break; + case LV_SIGNAL_STYLE_CHG: + lv_obj_refr_ext_size(obj); + break; + default: + break; } return valid; } -/** - * Return with a pointer to built-in style and/or copy it to a variable - * @param style a style name from lv_objs_builtin_t enum - * @param copy_p copy the style to this variable. (NULL if unused) - * @return pointer to an lv_objs_t style - */ -lv_objs_t * lv_objs_get(lv_objs_builtin_t style, lv_objs_t * copy_p) -{ - lv_objs_t *style_p; - - switch(style) { - case LV_OBJS_DEF: - style_p = &lv_objs_def; - break; - case LV_OBJS_SCR: - style_p = &lv_objs_scr; - break; - case LV_OBJS_TRANSP: - style_p = &lv_objs_transp; - break; - default: - style_p = NULL; - } - - if(copy_p != NULL) { - if(style_p != NULL) memcpy(copy_p, style_p, sizeof(lv_objs_t)); - else memcpy(copy_p, &lv_objs_def, sizeof(lv_objs_t)); - } - - return style_p; -} - /** * Mark the object as invalid therefore its current position will be redrawn by 'lv_refr_task' @@ -489,7 +457,7 @@ void lv_obj_set_pos(lv_obj_t * obj, cord_t x, cord_t y) /** * Set relative the position of an object (relative to the parent). - * The coordinates will be upscaled to compensate LV_DOWNSCALE. + * The coordinates will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object * @param x new distance from the left side of the parent. (will be multiplied with LV_DOWNSCALE) * @param y new distance from the top of the parent. (will be multiplied with LV_DOWNSCALE) @@ -511,7 +479,7 @@ void lv_obj_set_x(lv_obj_t * obj, cord_t x) /** * Set the x coordinate of a object. - * The coordinate will be upscaled to compensate LV_DOWNSCALE. + * The coordinate will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object * @param x new distance from the left side from the parent. (will be multiplied with LV_DOWNSCALE) */ @@ -532,7 +500,7 @@ void lv_obj_set_y(lv_obj_t * obj, cord_t y) /** * Set the y coordinate of a object. - * The coordinate will be upscaled to compensate LV_DOWNSCALE. + * The coordinate will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object * @param y new distance from the top of the parent. (will be multiplied with LV_DOWNSCALE) */ @@ -581,7 +549,7 @@ void lv_obj_set_size(lv_obj_t * obj, cord_t w, cord_t h) } /** - * Set the size of an object. The coordinates will be upscaled to compensate LV_DOWNSCALE. + * Set the size of an object. The coordinates will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object * @param w new width (will be multiplied with LV_DOWNSCALE) * @param h new height (will be multiplied with LV_DOWNSCALE) @@ -602,7 +570,7 @@ void lv_obj_set_width(lv_obj_t * obj, cord_t w) } /** - * Set the width of an object. The width will be upscaled to compensate LV_DOWNSCALE + * Set the width of an object. The width will be upscaled with LV_DOWNSCALE * @param obj pointer to an object * @param w new width (will be multiplied with LV_DOWNSCALE) */ @@ -622,7 +590,7 @@ void lv_obj_set_height(lv_obj_t * obj, cord_t h) } /** - * Set the height of an object. The height will be upscaled to compensate LV_DOWNSCALE + * Set the height of an object. The height will be upscaled with LV_DOWNSCALE * @param obj pointer to an object * @param h new height (will be multiplied with LV_DOWNSCALE) */ @@ -770,7 +738,7 @@ void lv_obj_align(lv_obj_t * obj,lv_obj_t * base, lv_align_t align, cord_t x_mod /** - * Align an object to an other object. The coordinates will be upscaled to compensate LV_DOWNSCALE. + * Align an object to an other object. The coordinates will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object to align * @param base pointer to an object (if NULL the parent is used). 'obj' will be aligned to it. * @param align type of alignment (see 'lv_align_t' enum) @@ -803,76 +771,15 @@ void lv_obj_set_ext_size(lv_obj_t * obj, cord_t ext_size) * @param obj pointer to an object * @param style_p pointer to the new style */ -void lv_obj_set_style(lv_obj_t * obj, void * style) +void lv_obj_set_style(lv_obj_t * obj, lv_style_t * style) { - lv_obj_inv(obj); - - if(obj->style_iso != 0) { - dm_free(obj->style_p); - obj->style_iso = 0; - } obj->style_p = style; - /*Send a style change signal to the object*/ - lv_obj_refr_style(obj); + /*Send a signal about style change to every children with NULL style*/ + lv_child_refr_style(obj); - lv_obj_inv(obj); } -/** - * Isolate the style of an object. In other words a unique style will be created - * for this object which can be freely modified independently from the style of the - * other objects. - */ -void * lv_obj_iso_style(lv_obj_t * obj, uint32_t style_size) -{ - if(obj->style_iso != 0) return obj->style_p; - - void * ori_style_p = lv_obj_get_style(obj); - void * iso_style = dm_alloc(style_size); - dm_assert(iso_style); - memcpy(iso_style, ori_style_p, style_size); - - obj->style_iso = 1; - obj->style_p = iso_style; - - lv_obj_refr_style(obj); - - return obj->style_p; -} - -/** - * Set the opacity of an object - * @param obj pointer to an object - * @param opa 0 (transparent) .. 255(fully cover) - */ -void lv_obj_set_opa(lv_obj_t * obj, uint8_t opa) -{ - obj->opa = opa; - - lv_obj_inv(obj); -} - -/** - * Set the opacity of an object and all of its children - * @param obj pointer to an object - * @param opa 0 (transparent) .. 255(fully cover) - */ -void lv_obj_set_opar(lv_obj_t * obj, uint8_t opa) -{ - lv_obj_t * i; - - LL_READ(obj->child_ll, i) { - lv_obj_set_opar(i, opa); - } - - /*Set the opacity is the object is not protected*/ - if(lv_obj_is_protected(obj, LV_PROTECT_OPA) == false) obj->opa = opa; - - lv_obj_inv(obj); -} - - /** * Notify an object about its style is modified * @param obj pointer to an object @@ -887,10 +794,10 @@ void lv_obj_refr_style(lv_obj_t * obj) /** * Notify all object if a style is modified - * @param style pinter to a style. Only objects with this style will be notified + * @param style pointer to a style. Only the objects with this style will be notified * (NULL to notify all objects) */ -void lv_style_refr_all(void * style) +void lv_style_refr_objs(void * style) { lv_obj_t * i; LL_READ(scr_ll, i) { @@ -1042,6 +949,7 @@ void lv_obj_refr_ext_size(lv_obj_t * obj) lv_obj_inv(obj); } +#if LV_OBJ_FREE_NUM != 0 /** * Set an application specific number for an object. * It can help to identify objects in the application. @@ -1052,6 +960,7 @@ void lv_obj_set_free_num(lv_obj_t * obj, uint8_t free_num) { obj->free_num = free_num; } +#endif #if LV_OBJ_FREE_P != 0 /** @@ -1115,11 +1024,6 @@ void lv_obj_anim(lv_obj_t * obj, lv_anim_builtin_t type, uint16_t time, uint16_t a.start = lv_obj_get_height(par); a.end = lv_obj_get_y(obj); break; - case LV_ANIM_FADE: - a.fp = (void(*)(void * , int32_t))lv_obj_set_opar; - a.start = OPA_TRANSP; - a.end = OPA_COVER; - break; case LV_ANIM_GROW_H: a.fp = (void(*)(void * , int32_t))lv_obj_set_width; a.start = 0; @@ -1300,7 +1204,7 @@ cord_t lv_obj_get_height(lv_obj_t * obj) * @param obj pointer to an object * @return the extended size attribute */ -cord_t lv_obj_getext_size(lv_obj_t * obj) +cord_t lv_obj_get_ext_size(lv_obj_t * obj) { return obj->ext_size; } @@ -1310,23 +1214,26 @@ cord_t lv_obj_getext_size(lv_obj_t * obj) *---------------*/ /** - * Get the style pointer of an object + * Get the style pointer of an object (if NULL get style of the parent) * @param obj pointer to an object * @return pointer to a style */ -void * lv_obj_get_style(lv_obj_t * obj) +lv_style_t * lv_obj_get_style(lv_obj_t * obj) { - return obj->style_p; -} + if(obj->style_p != NULL) return obj->style_p; + else { + lv_obj_t * par = obj->par; -/** - * Get the opacity of an object - * @param obj pointer to an object - * @return 0 (transparent) .. 255 (fully cover) - */ -opa_t lv_obj_get_opa(lv_obj_t * obj) -{ - return obj->opa; + while(par != NULL) { + if(par->style_p != NULL) { + if(par->style_p->glass == 0) return par->style_p; + } + par = par->par; + } + } + + /*Never reach this, at least the screen has to be a style*/ + return NULL; } /*----------------- @@ -1393,16 +1300,6 @@ bool lv_obj_get_drag_parent(lv_obj_t * obj) return obj->drag_parent == 0 ? false : true; } -/** - * Get the style isolation attribute of an object - * @param obj pointer to an object - * @return pointer to a style - */ -bool lv_obj_get_style_iso(lv_obj_t * obj) -{ - return obj->style_iso == 0 ? false : true; -} - /** * Get the protect field of an object * @param obj pointer to an object @@ -1460,7 +1357,7 @@ void * lv_obj_get_ext(lv_obj_t * obj) return obj->ext; } - +#if LV_OBJ_FREE_NUM != 0 /** * Get the free number * @param obj pointer to an object @@ -1470,6 +1367,7 @@ uint8_t lv_obj_get_free_num(lv_obj_t * obj) { return obj->free_num; } +#endif #if LV_OBJ_FREE_P != 0 /** @@ -1499,21 +1397,33 @@ void * lv_obj_get_free_p(lv_obj_t * obj) static bool lv_obj_design(lv_obj_t * obj, const area_t * mask_p, lv_design_mode_t mode) { if(mode == LV_DESIGN_COVER_CHK) { - bool cover; - cover = area_is_in(mask_p, &obj->cords); - return cover; + + /* Because of the radius it is not sure the area is covered + * Check the areas where there is no radius*/ + lv_style_t * style = lv_obj_get_style(obj); + if(style->empty != 0) return false; + + uint16_t r = style->radius; + + if(r == LV_RADIUS_CIRCLE) return false; + + area_t area_tmp; + + /*Check horizontally without radius*/ + lv_obj_get_cords(obj, &area_tmp); + area_tmp.x1 += r; + area_tmp.x2 -= r; + if(area_is_in(mask_p, &area_tmp) == false) return false; + + /*Check vertically without radius*/ + lv_obj_get_cords(obj, &area_tmp); + area_tmp.y1 += r; + area_tmp.y2 -= r; + if(area_is_in(mask_p, &area_tmp) == false) return false; + } else if(mode == LV_DESIGN_DRAW_MAIN) { - lv_objs_t * objs_p = lv_obj_get_style(obj); - - opa_t opa = lv_obj_get_opa(obj); - color_t color = objs_p->color; - - /*Simply draw a rectangle*/ -#if LV_VDB_SIZE == 0 - lv_rfill(&obj->cords, mask_p, color, opa); -#else - lv_vfill(&obj->cords, mask_p, color, opa); -#endif + lv_style_t * style = lv_obj_get_style(obj); + lv_draw_rect(&obj->cords, mask_p, style); } return true; } @@ -1555,6 +1465,26 @@ static void lv_style_refr_core(void * style_p, lv_obj_t * obj) } } + +/** + * Recursively refresh the style of the children. Go deeper until a not NULL style is found + * because the NULL styles are inherited from the parent + * @param obj pointer to an object + */ +static void lv_child_refr_style(lv_obj_t * obj) +{ + lv_obj_t * child = lv_obj_get_child(obj, NULL); + while(child != NULL) { + if(child->style_p == NULL) { + lv_child_refr_style(child); + } + child = lv_obj_get_child(obj, child); + } + + /*Send a style change signal to the object*/ + lv_obj_refr_style(obj); +} + /** * Called by 'lv_obj_del' to delete the children objects * @param obj pointer to an object (all of its children will be deleted) @@ -1589,9 +1519,6 @@ static void lv_obj_del_child(lv_obj_t * obj) /*Delete the base objects*/ if(obj->ext != NULL) dm_free(obj->ext); - if(obj->style_iso != 0) dm_free(obj->style_p); dm_free(obj); /*Free the object itself*/ } - - diff --git a/lv_obj/lv_obj.h b/lv_obj/lv_obj.h index 5e3bd7fbf..987bcc833 100644 --- a/lv_obj/lv_obj.h +++ b/lv_obj/lv_obj.h @@ -9,16 +9,19 @@ /********************* * INCLUDES *********************/ -#include +#include "lv_conf.h" +#include #include #include #include "misc/mem/dyn_mem.h" #include "misc/mem/linked_list.h" -#include "misc/others/color.h" +#include "misc/gfx/color.h" +#include "lv_style.h" /********************* * DEFINES *********************/ + /*Error check of lv_conf.h*/ #if LV_HOR_RES == 0 || LV_VER_RES == 0 #error "LV: LV_HOR_RES and LV_VER_RES must be greater then 0" @@ -76,39 +79,37 @@ typedef bool (* lv_signal_f_t) (struct __LV_OBJ_T * obj, lv_signal_t sign, void typedef struct __LV_OBJ_T { - struct __LV_OBJ_T * par; - ll_dsc_t child_ll; + struct __LV_OBJ_T * par; /*Pointer to the parent object*/ + ll_dsc_t child_ll; /*Linked list to store the children objects*/ - area_t cords; + area_t cords; /*Coordinates of the object (x1, y1, x2, y2)*/ - lv_signal_f_t signal_f; - lv_design_f_t design_f; + lv_signal_f_t signal_f; /*Object type specific signal function*/ + lv_design_f_t design_f; /*Object type specific design function*/ - void * ext; /*The object attributes can be extended here*/ - void * style_p; /*Object specific style*/ + void * ext; /*Object type specific extended data*/ + lv_style_t * style_p; /*Pointer to the object's style*/ #if LV_OBJ_FREE_P != 0 - void * free_p; /*Application specific pointer (set it freely)*/ + void * free_p; /*Application specific pointer (set it freely)*/ #endif /*Attributes and states*/ - uint8_t click_en :1; /*1: can be pressed by a display input device*/ - uint8_t drag_en :1; /*1: enable the dragging*/ + uint8_t click_en :1; /*1: Can be pressed by a display input device*/ + uint8_t drag_en :1; /*1: Enable the dragging*/ uint8_t drag_throw_en:1; /*1: Enable throwing with drag*/ - uint8_t drag_parent :1; /*1. Parent will be dragged instead*/ - uint8_t style_iso :1; /*1: The object has got an own style*/ + uint8_t drag_parent :1; /*1: Parent will be dragged instead*/ uint8_t hidden :1; /*1: Object is hidden*/ - uint8_t top_en :1; /*1: If the object or its children is clicked it goes to the foreground*/ + uint8_t top_en :1; /*1: If the object or its children is clicked it goes to the foreground*/ uint8_t reserved :1; uint8_t protect; /*Automatically happening actions can be prevented. 'OR'ed values from lv_obj_prot_t*/ - cord_t ext_size; /*EXTtend the size of the object in every direction. Used to draw shadow, shine etc.*/ + cord_t ext_size; /*EXTtend the size of the object in every direction. E.g. for shadow drawing*/ +#if LV_OBJ_FREE_NUM != 0 uint8_t free_num; /*Application specific identifier (set it freely)*/ - opa_t opa; - - +#endif }lv_obj_t; /*Protect some attributes (max. 8 bit)*/ @@ -116,54 +117,45 @@ typedef enum { LV_PROTECT_NONE = 0x00, LV_PROTECT_CHILD_CHG = 0x01, /*Disable the child change signal. Used by the library*/ - LV_PROTECT_OPA = 0x02, /*Prevent lv_obj_set_opar to modify the opacity*/ - LV_PROTECT_PARENT = 0x04, /*Prevent automatic parent change (e.g. in lv_page)*/ - LV_PROTECT_POS = 0x08, /*Prevent automatic positioning (e.g. in lv_rect layout)*/ + LV_PROTECT_PARENT = 0x02, /*Prevent automatic parent change (e.g. in lv_page)*/ + LV_PROTECT_POS = 0x04, /*Prevent automatic positioning (e.g. in lv_rect layout)*/ }lv_protect_t; typedef enum { LV_ALIGN_CENTER = 0, - LV_ALIGN_IN_TOP_LEFT, - LV_ALIGN_IN_TOP_MID, - LV_ALIGN_IN_TOP_RIGHT, - LV_ALIGN_IN_BOTTOM_LEFT, - LV_ALIGN_IN_BOTTOM_MID, - LV_ALIGN_IN_BOTTOM_RIGHT, - LV_ALIGN_IN_LEFT_MID, - LV_ALIGN_IN_RIGHT_MID, - LV_ALIGN_OUT_TOP_LEFT, - LV_ALIGN_OUT_TOP_MID, - LV_ALIGN_OUT_TOP_RIGHT, - LV_ALIGN_OUT_BOTTOM_LEFT, - LV_ALIGN_OUT_BOTTOM_MID, - LV_ALIGN_OUT_BOTTOM_RIGHT, - LV_ALIGN_OUT_LEFT_TOP, - LV_ALIGN_OUT_LEFT_MID, - LV_ALIGN_OUT_LEFT_BOTTOM, - LV_ALIGN_OUT_RIGHT_TOP, - LV_ALIGN_OUT_RIGHT_MID, - LV_ALIGN_OUT_RIGHT_BOTTOM, + LV_ALIGN_IN_TOP_LEFT, + LV_ALIGN_IN_TOP_MID, + LV_ALIGN_IN_TOP_RIGHT, + LV_ALIGN_IN_BOTTOM_LEFT, + LV_ALIGN_IN_BOTTOM_MID, + LV_ALIGN_IN_BOTTOM_RIGHT, + LV_ALIGN_IN_LEFT_MID, + LV_ALIGN_IN_RIGHT_MID, + LV_ALIGN_OUT_TOP_LEFT, + LV_ALIGN_OUT_TOP_MID, + LV_ALIGN_OUT_TOP_RIGHT, + LV_ALIGN_OUT_BOTTOM_LEFT, + LV_ALIGN_OUT_BOTTOM_MID, + LV_ALIGN_OUT_BOTTOM_RIGHT, + LV_ALIGN_OUT_LEFT_TOP, + LV_ALIGN_OUT_LEFT_MID, + LV_ALIGN_OUT_LEFT_BOTTOM, + LV_ALIGN_OUT_RIGHT_TOP, + LV_ALIGN_OUT_RIGHT_MID, + LV_ALIGN_OUT_RIGHT_BOTTOM, }lv_align_t; typedef struct { color_t color; - uint8_t transp :1; + opa_t opa; }lv_objs_t; -typedef enum -{ - LV_OBJS_DEF, - LV_OBJS_SCR, - LV_OBJS_TRANSP, -}lv_objs_builtin_t; - typedef enum { LV_ANIM_NONE = 0, - LV_ANIM_FADE, /*Animate the opacity*/ LV_ANIM_FLOAT_TOP, /*Float from/to the top*/ LV_ANIM_FLOAT_LEFT, /*Float from/to the left*/ LV_ANIM_FLOAT_BOTTOM, /*Float from/to the bottom*/ @@ -181,25 +173,6 @@ typedef enum */ void lv_init(void); -/** - * Mark the object as invalid therefore its current position will be redrawn by 'lv_refr_task' - * @param obj pointer to an object - */ -void lv_obj_inv(lv_obj_t * obj); - -/** - * Notify an object about its style is modified - * @param obj pointer to an object - */ -void lv_obj_refr_style(lv_obj_t * obj); - -/** - * Notify all object if a style is modified - * @param style pinter to a style. Only objects with this style will be notified - * (NULL to notify all objects) - */ -void lv_style_refr_all(void * style); - /** * Create a basic object * @param parent pointer to a parent object. @@ -211,7 +184,7 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy); /** * Delete 'obj' and all of its children - * @param obj + * @param obj pointer to an object to delete */ void lv_obj_del(lv_obj_t * obj); @@ -225,12 +198,10 @@ void lv_obj_del(lv_obj_t * obj); bool lv_obj_signal(lv_obj_t * obj, lv_signal_t sign, void * param); /** - * Return with a pointer to built-in style and/or copy it to a variable - * @param style a style name from lv_objs_builtin_t enum - * @param copy_p copy the style to this variable. (NULL if unused) - * @return pointer to an lv_objs_t style + * Mark the object as invalid therefore its current position will be redrawn by 'lv_refr_task' + * @param obj pointer to an object */ -lv_objs_t * lv_objs_get(lv_objs_builtin_t style, lv_objs_t * copy_p); +void lv_obj_inv(lv_obj_t * obj); /** * Load a new screen @@ -255,7 +226,7 @@ void lv_obj_set_pos(lv_obj_t * obj, cord_t x, cord_t y); /** * Set relative the position of an object (relative to the parent). - * The coordinates will be upscaled to compensate LV_DOWNSCALE. + * The coordinates will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object * @param x new distance from the left side of the parent. (will be multiplied with LV_DOWNSCALE) * @param y new distance from the top of the parent. (will be multiplied with LV_DOWNSCALE) @@ -271,7 +242,7 @@ void lv_obj_set_x(lv_obj_t * obj, cord_t x); /** * Set the x coordinate of a object. - * The coordinate will be upscaled to compensate LV_DOWNSCALE. + * The coordinate will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object * @param x new distance from the left side from the parent. (will be multiplied with LV_DOWNSCALE) */ @@ -286,7 +257,7 @@ void lv_obj_set_y(lv_obj_t * obj, cord_t y); /** * Set the y coordinate of a object. - * The coordinate will be upscaled to compensate LV_DOWNSCALE. + * The coordinate will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object * @param y new distance from the top of the parent. (will be multiplied with LV_DOWNSCALE) */ @@ -301,7 +272,7 @@ void lv_obj_set_y_us(lv_obj_t * obj, cord_t y); void lv_obj_set_size(lv_obj_t * obj, cord_t w, cord_t h); /** - * Set the size of an object. The coordinates will be upscaled to compensate LV_DOWNSCALE. + * Set the size of an object. The coordinates will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object * @param w new width (will be multiplied with LV_DOWNSCALE) * @param h new height (will be multiplied with LV_DOWNSCALE) @@ -316,7 +287,7 @@ void lv_obj_set_size_us(lv_obj_t * obj, cord_t w, cord_t h); void lv_obj_set_width(lv_obj_t * obj, cord_t w); /** - * Set the width of an object. The width will be upscaled to compensate LV_DOWNSCALE + * Set the width of an object. The width will be upscaled with LV_DOWNSCALE * @param obj pointer to an object * @param w new width (will be multiplied with LV_DOWNSCALE) */ @@ -330,7 +301,7 @@ void lv_obj_set_width_us(lv_obj_t * obj, cord_t w); void lv_obj_set_height(lv_obj_t * obj, cord_t h); /** - * Set the height of an object. The height will be upscaled to compensate LV_DOWNSCALE + * Set the height of an object. The height will be upscaled with LV_DOWNSCALE * @param obj pointer to an object * @param h new height (will be multiplied with LV_DOWNSCALE) */ @@ -347,7 +318,7 @@ void lv_obj_set_height_us(lv_obj_t * obj, cord_t h); void lv_obj_align(lv_obj_t * obj,lv_obj_t * base, lv_align_t align, cord_t x_mod, cord_t y_mod); /** - * Align an object to an other object. The coordinates will be upscaled to compensate LV_DOWNSCALE. + * Align an object to an other object. The coordinates will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object to align * @param base pointer to an object (if NULL the parent is used). 'obj' will be aligned to it. * @param align type of alignment (see 'lv_align_t' enum) @@ -368,28 +339,20 @@ void lv_obj_set_ext_size(lv_obj_t * obj, cord_t ext_size); * @param obj pointer to an object * @param style_p pointer to the new style */ -void lv_obj_set_style(lv_obj_t * obj, void * style); +void lv_obj_set_style(lv_obj_t * obj, lv_style_t * style); /** - * Isolate the style of an object. In other words a unique style will be created - * for this object which can be freely modified independently from the style of the - * other objects. - */ -void * lv_obj_iso_style(lv_obj_t * obj, uint32_t style_size); - -/** - * Set the opacity of an object + * Notify an object about its style is modified * @param obj pointer to an object - * @param opa 0 (transparent) .. 255(fully cover) */ -void lv_obj_set_opa(lv_obj_t * obj, uint8_t opa); +void lv_obj_refr_style(lv_obj_t * obj); /** - * Set the opacity of an object and all of its children - * @param obj pointer to an object - * @param opa 0 (transparent) .. 255(fully cover) + * Notify all object if a style is modified + * @param style pointer to a style. Only the objects with this style will be notified + * (NULL to notify all objects) */ -void lv_obj_set_opar(lv_obj_t * obj, uint8_t opa); +void lv_style_refr_objs(void * style); /** * Hide an object. It won't be visible and clickable. @@ -478,6 +441,7 @@ void * lv_obj_alloc_ext(lv_obj_t * obj, uint16_t ext_size); */ void lv_obj_refr_ext_size(lv_obj_t * obj); +#if LV_OBJ_FREE_NUM != 0 /** * Set an application specific number for an object. * It can help to identify objects in the application. @@ -485,7 +449,9 @@ void lv_obj_refr_ext_size(lv_obj_t * obj); * @param free_num the new free number */ void lv_obj_set_free_num(lv_obj_t * obj, uint8_t free_num); +#endif +#if LV_OBJ_FREE_P != 0 /** * Set an application specific pointer for an object. * It can help to identify objects in the application. @@ -493,7 +459,7 @@ void lv_obj_set_free_num(lv_obj_t * obj, uint8_t free_num); * @param free_p the new free pinter */ void lv_obj_set_free_p(lv_obj_t * obj, void * free_p); - +#endif /** * Animate an object * @param obj pointer to an object to animate @@ -580,21 +546,14 @@ cord_t lv_obj_get_height(lv_obj_t * obj); * @param obj pointer to an object * @return the extended size attribute */ -cord_t lv_obj_getext_size(lv_obj_t * obj); +cord_t lv_obj_get_ext_size(lv_obj_t * obj); /** - * Get the style pointer of an object + * Get the style pointer of an object (if NULL get style of the parent) * @param obj pointer to an object * @return pointer to a style */ -void * lv_obj_get_style(lv_obj_t * obj); - -/** - * Get the opacity of an object - * @param obj pointer to an object - * @return 0 (transparent) .. 255 (fully cover) - */ -opa_t lv_obj_get_opa(lv_obj_t * obj); +lv_style_t * lv_obj_get_style(lv_obj_t * obj); /** * Get the hidden attribute of an object @@ -638,13 +597,6 @@ bool lv_obj_get_drag_throw(lv_obj_t * obj); */ bool lv_obj_get_drag_parent(lv_obj_t * obj); -/** - * Get the style isolation attribute of an object - * @param obj pointer to an object - * @return pointer to a style - */ -bool lv_obj_get_style_iso(lv_obj_t * obj); - /** * Get the protect field of an object * @param obj pointer to an object @@ -682,25 +634,26 @@ lv_design_f_t lv_obj_get_design_f(lv_obj_t * obj); */ void * lv_obj_get_ext(lv_obj_t * obj); +#if LV_OBJ_FREE_NUM != 0 /** * Get the free number * @param obj pointer to an object * @return the free number */ uint8_t lv_obj_get_free_num(lv_obj_t * obj); +#endif +#if LV_OBJ_FREE_P != 0 /** * Get the free pointer * @param obj pointer to an object * @return the free pointer */ void * lv_obj_get_free_p(lv_obj_t * obj); +#endif /********************** * MACROS **********************/ -#define LV_SA(obj, style_type) ((style_type *) obj->style_p) -#define LV_EA(obj, ext_type) ((ext_type *) obj->ext) - #endif diff --git a/lv_obj/lv_refr.c b/lv_obj/lv_refr.c index 2738df6b2..8eafb559f 100644 --- a/lv_obj/lv_refr.c +++ b/lv_obj/lv_refr.c @@ -45,8 +45,8 @@ static void lv_refr_obj(lv_obj_t * obj, const area_t * mask_ori_p); /********************** * STATIC VARIABLES **********************/ -lv_join_t inv_buf[LV_INV_FIFO_SIZE]; -uint16_t inv_buf_p; +static lv_join_t inv_buf[LV_INV_FIFO_SIZE]; +static uint16_t inv_buf_p; /********************** * MACROS @@ -76,6 +76,12 @@ void lv_refr_init(void) */ void lv_inv_area(const area_t * area_p) { + /*Clear the invalidate buffer if the parameter is NULL*/ + if(area_p == NULL) { + inv_buf_p = 0; + return; + } + area_t scr_area; scr_area.x1 = 0; scr_area.y1 = 0; @@ -224,12 +230,12 @@ static void lv_refr_area_with_vdb(const area_t * area_p) lv_vdb_t * vdb_p = lv_vdb_get(); /*Always use the full row*/ - vdb_p->vdb_area.x1 = area_p->x1; - vdb_p->vdb_area.y1 = area_p->y1; - vdb_p->vdb_area.x2 = area_p->x2; + vdb_p->area.x1 = area_p->x1; + vdb_p->area.y1 = area_p->y1; + vdb_p->area.x2 = area_p->x2; /*Calculate the max row num*/ - uint32_t max_row = (uint32_t) LV_VDB_SIZE / (vdb_p->vdb_area.x2 - vdb_p->vdb_area.x1 + 1); + uint32_t max_row = (uint32_t) LV_VDB_SIZE / (vdb_p->area.x2 - vdb_p->area.x1 + 1); if(max_row > area_get_height(area_p)) max_row = area_get_height(area_p); /*Round the row number with downscale*/ @@ -242,17 +248,17 @@ static void lv_refr_area_with_vdb(const area_t * area_p) for(row = area_p->y1; row + max_row - 1 <= area_p->y2; row += max_row) { /*Calc. the next y coordinates of VDB*/ - vdb_p->vdb_area.y1 = row; - vdb_p->vdb_area.y2 = row + max_row - 1; + vdb_p->area.y1 = row; + vdb_p->area.y2 = row + max_row - 1; lv_refr_area_part_vdb(area_p); } /*If the last y coordinates are not handled yet ...*/ - if(area_p->y2 != vdb_p->vdb_area.y2) { + if(area_p->y2 != vdb_p->area.y2) { /*Calc. the next y coordinates of VDB*/ - vdb_p->vdb_area.y1 = row; - vdb_p->vdb_area.y2 = area_p->y2; + vdb_p->area.y1 = row; + vdb_p->area.y2 = area_p->y2; /*Refresh this part too*/ lv_refr_area_part_vdb(area_p); @@ -271,7 +277,7 @@ static void lv_refr_area_part_vdb(const area_t * area_p) /*Get the new mask from the original area and the act. VDB It will be a part of 'area_p'*/ area_t start_mask; - area_union(&start_mask, area_p, &vdb_p->vdb_area); + area_union(&start_mask, area_p, &vdb_p->area); /*Get the most top object which is not covered by others*/ top_p = lv_refr_get_top_obj(&start_mask, lv_scr_act()); @@ -310,8 +316,8 @@ static lv_obj_t * lv_refr_get_top_obj(const area_t * area_p, lv_obj_t * obj) /*If no better children check this object*/ if(found_p == NULL) { - if(obj->opa == OPA_COVER && - LV_SA(obj, lv_objs_t)->transp == 0 && + lv_style_t * style = lv_obj_get_style(obj); + if(style->opa == OPA_COVER && obj->design_f(obj, area_p, LV_DESIGN_COVER_CHK) != false) { found_p = obj; } @@ -396,10 +402,11 @@ static void lv_refr_obj(lv_obj_t * obj, const area_t * mask_ori_p) /*Draw the parent and its children only if they ore on 'mask_parent'*/ if(union_ok != false) { - /* Redraw the object */ - if(obj->opa != OPA_TRANSP && LV_SA(obj, lv_objs_t)->transp == 0) { + /* Redraw the object */ + lv_style_t * style = lv_obj_get_style(obj); + if(style->opa != OPA_TRANSP) { obj->design_f(obj, &obj_ext_mask, LV_DESIGN_DRAW_MAIN); - /* tick_wait_ms(100); */ /*DEBUG: Wait after every object draw to see the order of drawing*/ + //tick_wait_ms(100); /*DEBUG: Wait after every object draw to see the order of drawing*/ } /*Create a new 'obj_mask' without 'ext_size' because the children can't be visible there*/ @@ -430,7 +437,7 @@ static void lv_refr_obj(lv_obj_t * obj, const area_t * mask_ori_p) } /* If all the children are redrawn make 'post draw' design */ - if(obj->opa != OPA_TRANSP && LV_SA(obj, lv_objs_t)->transp == 0) { + if(style->opa != OPA_TRANSP) { obj->design_f(obj, &obj_ext_mask, LV_DESIGN_DRAW_POST); } } diff --git a/lv_obj/lv_style.c b/lv_obj/lv_style.c new file mode 100644 index 000000000..e0ab30cbf --- /dev/null +++ b/lv_obj/lv_style.c @@ -0,0 +1,233 @@ +/** + * @file lv_style.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#include "lv_style.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +static lv_style_t lv_style_scr; +static lv_style_t lv_style_transp; +static lv_style_t lv_style_transp_tight; +static lv_style_t lv_style_plain; +static lv_style_t lv_style_plain_color; +static lv_style_t lv_style_pretty; +static lv_style_t lv_style_pretty_color; +static lv_style_t lv_style_btn_rel; +static lv_style_t lv_style_btn_pr; +static lv_style_t lv_style_btn_trel; +static lv_style_t lv_style_btn_tpr; +static lv_style_t lv_style_btn_ina; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Init the basic styles + */ +void lv_style_init (void) +{ + /* Not White/Black/Gray colors are created by HSV model with + * HUE = 210*/ + + /*Screen style*/ + lv_style_scr.ccolor = COLOR_MAKE(0x20, 0x20, 0x20); + lv_style_scr.opa = OPA_COVER; + + lv_style_scr.mcolor = COLOR_MAKE(0xc9, 0xdb, 0xee); + lv_style_scr.gcolor = COLOR_MAKE(0x4d, 0x91, 0xd5); + lv_style_scr.bcolor = COLOR_BLACK; + lv_style_scr.scolor = COLOR_GRAY; + lv_style_scr.radius = 0; + lv_style_scr.bwidth = 0; + lv_style_scr.swidth = 0; + lv_style_scr.stype = LV_STYPE_FULL; + lv_style_scr.vpad = LV_DPI / 12; + lv_style_scr.hpad = LV_DPI / 12; + lv_style_scr.opad = LV_DPI / 12; + lv_style_scr.bopa = OPA_COVER; + lv_style_scr.empty = 0; + lv_style_scr.glass = 0; + + lv_style_scr.font = font_get(FONT_DEFAULT); + lv_style_scr.letter_space = 1 * LV_DOWNSCALE; + lv_style_scr.line_space = 3 * LV_DOWNSCALE; + lv_style_scr.txt_align = LV_TXT_ALIGN_LEFT; + lv_style_scr.img_recolor = OPA_TRANSP; + lv_style_scr.line_width = 1 * LV_DOWNSCALE; + + /*Plain style (by default near the same as the screen style)*/ + memcpy(&lv_style_plain, &lv_style_scr, sizeof(lv_style_t)); + lv_style_plain.mcolor = COLOR_WHITE; + lv_style_plain.gcolor = COLOR_WHITE; + lv_style_plain.bcolor = COLOR_WHITE; + + /*Plain color style*/ + memcpy(&lv_style_plain_color, &lv_style_plain, sizeof(lv_style_t)); + lv_style_plain_color.ccolor = COLOR_MAKE(0xf0, 0xf0, 0xf0); + lv_style_plain_color.mcolor = COLOR_MAKE(0x55, 0x96, 0xd8); + lv_style_plain_color.gcolor = lv_style_plain_color.mcolor; + + /*Pretty style */ + memcpy(&lv_style_pretty, &lv_style_plain, sizeof(lv_style_t)); + lv_style_pretty.ccolor = COLOR_MAKE(0x20, 0x20, 0x20); + lv_style_pretty.mcolor = COLOR_WHITE; + lv_style_pretty.gcolor = COLOR_SILVER; + lv_style_pretty.bcolor = COLOR_MAKE(0x40, 0x40, 0x40); + lv_style_pretty.radius = LV_DPI / 15; + lv_style_pretty.bwidth = LV_DPI / 50 >= 1 ? LV_DPI / 50 : 1; + lv_style_pretty.bopa = OPA_50; + + /*Pretty color style*/ + memcpy(&lv_style_pretty_color, &lv_style_pretty, sizeof(lv_style_t)); + lv_style_pretty_color.ccolor = COLOR_MAKE(0xe0, 0xe0, 0xe0); + lv_style_pretty_color.mcolor = COLOR_MAKE(0x6b, 0x9a, 0xc7); + lv_style_pretty_color.gcolor = COLOR_MAKE(0x2b, 0x59, 0x8b); + lv_style_pretty_color.bcolor = COLOR_MAKE(0x15, 0x2c, 0x42); + + /*Transparent style*/ + memcpy(&lv_style_transp, &lv_style_plain, sizeof(lv_style_t)); + lv_style_transp.empty = 1; + lv_style_transp.bwidth = 0; + lv_style_transp.glass = 1; + + /*Transparent tight style*/ + memcpy(&lv_style_transp_tight, &lv_style_transp, sizeof(lv_style_t)); + lv_style_transp_tight.hpad = 0; + lv_style_transp_tight.vpad = 0; + + /*Button released style*/ + memcpy(&lv_style_btn_rel, &lv_style_plain, sizeof(lv_style_t)); + lv_style_btn_rel.mcolor = COLOR_MAKE(0x76, 0xa2, 0xd0); + lv_style_btn_rel.gcolor = COLOR_MAKE(0x19, 0x3a, 0x5d); + lv_style_btn_rel.bcolor = COLOR_MAKE(0x0b, 0x19, 0x28); + lv_style_btn_rel.ccolor = COLOR_MAKE(0xff, 0xff, 0xff); + lv_style_btn_rel.bwidth = LV_DPI / 50 >= 1 ? LV_DPI / 50 : 1; + lv_style_btn_rel.radius = LV_DPI / 15; + lv_style_btn_rel.bopa = OPA_70; + lv_style_btn_rel.scolor = COLOR_GRAY; + lv_style_btn_rel.swidth = 0; + lv_style_btn_rel.hpad = LV_DPI / 4; + lv_style_btn_rel.vpad = LV_DPI / 6; + lv_style_btn_rel.opad = LV_DPI / 10; + + /*Button pressed style*/ + memcpy(&lv_style_btn_pr, &lv_style_btn_rel, sizeof(lv_style_t)); + lv_style_btn_pr.mcolor = COLOR_MAKE(0x33, 0x62, 0x94); + lv_style_btn_pr.gcolor = COLOR_MAKE(0x10, 0x26, 0x3c); + lv_style_btn_pr.ccolor = COLOR_MAKE(0xa4, 0xb5, 0xc6); + + /*Button toggle released style*/ + memcpy(&lv_style_btn_trel, &lv_style_btn_rel, sizeof(lv_style_t)); + lv_style_btn_trel.mcolor = COLOR_MAKE(0x0a, 0x11, 0x22); + lv_style_btn_trel.gcolor = COLOR_MAKE(0x37, 0x62, 0x90); + lv_style_btn_trel.bcolor = COLOR_MAKE(0x01, 0x07, 0x0d); + lv_style_btn_trel.ccolor = COLOR_MAKE(0xc8, 0xdd, 0xf4); + + /*Button toggle pressed style*/ + memcpy(&lv_style_btn_tpr, &lv_style_btn_rel, sizeof(lv_style_t)); + lv_style_btn_tpr.mcolor = COLOR_MAKE(0x02, 0x14, 0x27); + lv_style_btn_tpr.gcolor = COLOR_MAKE(0x2b, 0x4c, 0x70); + lv_style_btn_tpr.ccolor = COLOR_MAKE(0xa4, 0xb5, 0xc6); + + /*Button inactive style*/ + memcpy(&lv_style_btn_ina, &lv_style_btn_rel, sizeof(lv_style_t)); + lv_style_btn_ina.mcolor = COLOR_MAKE(0xd8, 0xd8, 0xd8); + lv_style_btn_ina.gcolor = COLOR_MAKE(0xd8, 0xd8, 0xd8); + lv_style_btn_ina.bcolor = COLOR_MAKE(0x90, 0x90, 0x90); + lv_style_btn_ina.ccolor = COLOR_MAKE(0x70, 0x70, 0x70); +} + + +/** + * Get style from its name + * @param style_name an element of the 'lv_style_name_t' enum + * @return pointer to the requested style (lv_style_def by default) + */ +lv_style_t * lv_style_get(lv_style_name_t style_name, lv_style_t * copy) +{ + lv_style_t * style = &lv_style_plain; + + switch(style_name) { + case LV_STYLE_SCR: + style = &lv_style_scr; + break; + case LV_STYLE_PLAIN: + style = &lv_style_plain; + break; + case LV_STYLE_PLAIN_COLOR: + style = &lv_style_plain_color; + break; + case LV_STYLE_PRETTY: + style = &lv_style_pretty; + break; + case LV_STYLE_PRETTY_COLOR: + style = &lv_style_pretty_color; + break; + case LV_STYLE_TRANSP: + style = &lv_style_transp; + break; + case LV_STYLE_TRANSP_TIGHT: + style = &lv_style_transp_tight; + break; + case LV_STYLE_BTN_REL: + style = &lv_style_btn_rel; + break; + case LV_STYLE_BTN_PR: + style = &lv_style_btn_pr; + break; + case LV_STYLE_BTN_TREL: + style = &lv_style_btn_trel; + break; + case LV_STYLE_BTN_TPR: + style = &lv_style_btn_tpr; + break; + case LV_STYLE_BTN_INA: + style = &lv_style_btn_ina; + break; + default: + style = &lv_style_plain; + } + + if(copy != NULL) memcpy(copy, style, sizeof(lv_style_t)); + + return style; +} + +/** + * Copy a style to an other + * @param dest pointer to the destination style + * @param src pointer to the source style + */ +void lv_style_cpy(lv_style_t * dest, const lv_style_t * src) +{ + memcpy(dest, src, sizeof(lv_style_t)); +} + +/********************** + * STATIC FUNCTIONS + **********************/ diff --git a/lv_obj/lv_style.h b/lv_obj/lv_style.h new file mode 100644 index 000000000..e5aeb40f7 --- /dev/null +++ b/lv_obj/lv_style.h @@ -0,0 +1,105 @@ +/** + * @file lv_style.h + * + */ + +#ifndef LV_STYLE_H +#define LV_STYLE_H + +/********************* + * INCLUDES + *********************/ +#include +#include "misc/gfx/color.h" +#include "misc/gfx/area.h" +#include "misc/gfx/font.h" + +/********************* + * DEFINES + *********************/ +#define LV_RADIUS_CIRCLE (CORD_MAX) /*A very big radius to always draw as circle*/ + +/********************** + * TYPEDEFS + **********************/ + +typedef enum { + LV_TXT_ALIGN_LEFT = 0, + LV_TXT_ALIGN_MID, +}lv_txt_align_t; + + +/*Shadow types*/ +typedef enum +{ + LV_STYPE_BOTTOM = 0, + LV_STYPE_FULL, +}lv_stype_t; + +typedef struct +{ + /*Object level styles*/ + color_t ccolor; /*Content color (e.g. text or image re-color )*/ + opa_t opa; /*Opacity of the object*/ + uint8_t glass :1; /*1: Do not inherit this style*/ + uint8_t empty :1; /*Transparent background (border drawn)*/ + uint8_t stype :2; /*Shadow type from 'lv_shadow_type_t'*/ + uint8_t txt_align:2; + color_t mcolor; /*Main color of background*/ + color_t gcolor; /*Gradient color of background*/ + color_t bcolor; /*Border color of background*/ + color_t scolor; /*Shadow color of background*/ + cord_t radius; /*Corner radius of background*/ + cord_t bwidth; /*Width of the background border*/ + cord_t swidth; /*Width of the background shadow effect*/ + cord_t vpad; /*Vertical padding*/ + cord_t hpad; /*Horizontal padding*/ + cord_t opad; /*Object padding on the background*/ + opa_t bopa; /*Opacity of background border*/ + const font_t * font; + cord_t letter_space; + cord_t line_space; + opa_t img_recolor; + cord_t line_width; +}lv_style_t; + +typedef enum { + LV_STYLE_SCR, + LV_STYLE_TRANSP, + LV_STYLE_TRANSP_TIGHT, + LV_STYLE_PLAIN, + LV_STYLE_PLAIN_COLOR, + LV_STYLE_PRETTY, + LV_STYLE_PRETTY_COLOR, + LV_STYLE_BTN_REL, + LV_STYLE_BTN_PR, + LV_STYLE_BTN_TREL, + LV_STYLE_BTN_TPR, + LV_STYLE_BTN_INA, +}lv_style_name_t; + + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Init the basic styles + */ +void lv_style_init (void); + +/** + * Get style from its name + * @param style_name an element of the 'lv_style_name_t' enum + * @return pointer to the requested style (lv_style_def by default) + */ +lv_style_t * lv_style_get(lv_style_name_t style_name, lv_style_t * copy); + +void lv_style_cpy(lv_style_t * dest, const lv_style_t * src); + + +/********************** + * MACROS + **********************/ + +#endif diff --git a/lv_obj/lv_vdb.c b/lv_obj/lv_vdb.c index 4cba900a6..e2679b0c4 100644 --- a/lv_obj/lv_vdb.c +++ b/lv_obj/lv_vdb.c @@ -53,8 +53,7 @@ lv_vdb_t * lv_vdb_get(void) void lv_vdb_flush(void) { #if LV_ANTIALIAS == 0 - disp_area(DISP_ID_ALL, vdb.vdb_area.x1 , vdb.vdb_area.y1, vdb.vdb_area.x2, vdb.vdb_area.y2); - disp_map(DISP_ID_ALL, vdb.buf); + disp_map(vdb.area.x1, vdb.area.y1, vdb.area.x2, vdb.area.y2, vdb.buf); #else /* Get the average of 2x2 pixels and put the result back to the VDB * The reading goes much faster then the write back @@ -69,25 +68,33 @@ void lv_vdb_flush(void) * */ cord_t x; cord_t y; - cord_t w = area_get_width(&vdb.vdb_area); + cord_t w = area_get_width(&vdb.area); color_t * in1_buf = vdb.buf; /*Pointer to the first row*/ color_t * in2_buf = vdb.buf + w; /*Pointer to the second row*/ color_t * out_buf = vdb.buf; /*Store the result here*/ - for(y = vdb.vdb_area.y1; y < vdb.vdb_area.y2; y += 2) { - for(x = vdb.vdb_area.x1; x < vdb.vdb_area.x2; x += 2) { - /*Get the average of 2x2 red*/ - out_buf->red = (in1_buf->red + (in1_buf + 1)->red + - in2_buf->red + (in2_buf+ 1)->red) >> 2; - /*Get the average of 2x2 green*/ - out_buf->green = (in1_buf->green + (in1_buf + 1)->green + - in2_buf->green + (in2_buf + 1)->green) >> 2; - /*Get the average of 2x2 blue*/ - out_buf->blue = (in1_buf->blue + (in1_buf + 1)->blue + - in2_buf->blue + (in2_buf + 1)->blue) >> 2; - - in1_buf+=2; /*Skip the next pixel because it is already used above*/ - in2_buf+=2; - out_buf++; + for(y = vdb.area.y1; y < vdb.area.y2; y += 2) { + for(x = vdb.area.x1; x < vdb.area.x2; x += 2) { + + /*If the pixels are the same do not calculate the average */ + if(in1_buf->full == (in1_buf + 1)->full && + in1_buf->full == in2_buf->full && + in1_buf->full == (in2_buf + 1)->full) { + out_buf->full = in1_buf->full; + } else { + /*Get the average of 2x2 red*/ + out_buf->red = (in1_buf->red + (in1_buf + 1)->red + + in2_buf->red + (in2_buf+ 1)->red) >> 2; + /*Get the average of 2x2 green*/ + out_buf->green = (in1_buf->green + (in1_buf + 1)->green + + in2_buf->green + (in2_buf + 1)->green) >> 2; + /*Get the average of 2x2 blue*/ + out_buf->blue = (in1_buf->blue + (in1_buf + 1)->blue + + in2_buf->blue + (in2_buf + 1)->blue) >> 2; + } + + in1_buf += 2; /*Skip the next pixel because it is already used above*/ + in2_buf += 2; + out_buf ++; } /*2 row is ready so go the next 2*/ in1_buf += w; /*Skip the next row because it is processed from in2_buf*/ @@ -96,8 +103,7 @@ void lv_vdb_flush(void) /* Now the full the VDB is filtered and the result is stored in the first quarter of it * Write out the filtered map to the display*/ - disp_area(DISP_ID_ALL, vdb.vdb_area.x1 >> 1, vdb.vdb_area.y1 >> 1, vdb.vdb_area.x2 >> 1, vdb.vdb_area.y2 >> 1); - disp_map(DISP_ID_ALL, vdb.buf); + disp_map(vdb.area.x1 >> 1, vdb.area.y1 >> 1, vdb.area.x2 >> 1, vdb.area.y2 >> 1, vdb.buf); #endif } @@ -105,6 +111,4 @@ void lv_vdb_flush(void) * STATIC FUNCTIONS **********************/ - - #endif diff --git a/lv_obj/lv_vdb.h b/lv_obj/lv_vdb.h index ea74e98d8..60155c79c 100644 --- a/lv_obj/lv_vdb.h +++ b/lv_obj/lv_vdb.h @@ -13,9 +13,8 @@ #if LV_VDB_SIZE != 0 -#include "misc/others/color.h" -#include -#include "../lv_misc/font.h" +#include "misc/gfx/color.h" +#include "misc/gfx/area.h" /********************* * DEFINES @@ -27,7 +26,7 @@ typedef struct { - area_t vdb_area; + area_t area; color_t buf[LV_VDB_SIZE]; }lv_vdb_t; diff --git a/lv_objx/lv_bar.c b/lv_objx/lv_bar.c new file mode 100644 index 000000000..1cbcfb2e5 --- /dev/null +++ b/lv_objx/lv_bar.c @@ -0,0 +1,306 @@ + + +/** + * @file lv_bar.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#if USE_LV_BAR != 0 + +#include +#include "../lv_draw/lv_draw.h" +#include "misc/gfx/anim.h" +#include + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static bool lv_bar_design(lv_obj_t * bar, const area_t * mask, lv_design_mode_t mode); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_design_f_t ancestor_design_f; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/*----------------- + * Create function + *-----------------*/ + +/** + * Create a bar objects + * @param par pointer to an object, it will be the parent of the new bar + * @param copy pointer to a bar object, if not NULL then the new object will be copied from it + * @return pointer to the created bar + */ +lv_obj_t * lv_bar_create(lv_obj_t * par, lv_obj_t * copy) +{ + /*Create the ancestor basic object*/ + lv_obj_t * new_bar = lv_obj_create(par, copy); + dm_assert(new_bar); + + /*Allocate the object type specific extended data*/ + lv_bar_ext_t * ext = lv_obj_alloc_ext(new_bar, sizeof(lv_bar_ext_t)); + dm_assert(ext); + ext->min_value = 0; + ext->max_value = 100; + ext->act_value = 0; + ext->style_indic = lv_style_get(LV_STYLE_PRETTY_COLOR, NULL); + + /* Save the ancient design function. + * It will be used in the bar design function*/ + if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_bar); + + lv_obj_set_signal_f(new_bar, lv_bar_signal); + lv_obj_set_design_f(new_bar, lv_bar_design); + + /*Init the new bar object*/ + if(copy == NULL) { + lv_obj_set_click(new_bar, false); + lv_obj_set_size(new_bar, LV_DPI * 2, LV_DPI / 3); + lv_obj_set_style(new_bar, lv_style_get(LV_STYLE_PRETTY, NULL)); + lv_bar_set_value(new_bar, ext->act_value); + } else { + lv_bar_ext_t * ext_copy = lv_obj_get_ext(copy); + ext->min_value = ext_copy->min_value; + ext->max_value = ext_copy->max_value; + ext->act_value = ext_copy->act_value; + ext->style_indic = ext_copy->style_indic; + /*Refresh the style with new signal function*/ + lv_obj_refr_style(new_bar); + + lv_bar_set_value(new_bar, ext->act_value); + } + return new_bar; +} + +/** + * Signal function of the bar + * @param bar pointer to a bar object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + */ +bool lv_bar_signal(lv_obj_t * bar, lv_signal_t sign, void * param) +{ + bool valid; + + /* Include the ancient signal function */ + valid = lv_obj_signal(bar, sign, param); + + /* The object can be deleted so check its validity and then + * make the object specific signal handling */ + if(valid != false) { + if(sign == LV_SIGNAL_REFR_EXT_SIZE) { + lv_style_t * style_indic = lv_bar_get_style_indic(bar); + if(style_indic->swidth > bar->ext_size) bar->ext_size = style_indic->swidth; + } + + } + + return valid; +} + +/*===================== + * Setter functions + *====================*/ + +/** + * Set a new value on the bar + * @param bar pointer to a bar object + * @param value new value + */ +void lv_bar_set_value(lv_obj_t * bar, int16_t value) +{ + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + ext->act_value = value > ext->max_value ? ext->max_value : value; + ext->act_value = ext->act_value < ext->min_value ? ext->min_value : ext->act_value; + lv_obj_inv(bar); +} + +/** + * Set a new value with animation on the bar + * @param bar pointer to a bar object + * @param value new value + * @param anim_time animation time in milliseconds + */ +void lv_bar_set_value_anim(lv_obj_t * bar, int16_t value, uint16_t anim_time) +{ + + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + int16_t new_value; + new_value = value > ext->max_value ? ext->max_value : value; + new_value = new_value < ext->min_value ? ext->min_value : new_value; + + anim_t a; + a.var = bar; + a.start = ext->act_value; + a.end = new_value; + a.fp = (anim_fp_t)lv_bar_set_value; + a.path = anim_get_path(ANIM_PATH_LIN); + a.end_cb = NULL; + a.act_time = 0; + a.time = anim_time; + a.playback = 0; + a.playback_pause = 0; + a.repeat = 0; + a.repeat_pause = 0; + + anim_create(&a); + +} + + +/** + * Set minimum and the maximum values of a bar + * @param bar pointer to he bar object + * @param min minimum value + * @param max maximum value + */ +void lv_bar_set_range(lv_obj_t * bar, int16_t min, int16_t max) +{ + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + ext->max_value = max; + ext->max_value = max; + if(ext->act_value > max) { + ext->act_value = max; + lv_bar_set_value(bar, ext->act_value); + } + lv_obj_inv(bar); +} + +/** + * Set the style of bar indicator + * @param bar pointer to a bar object + * @param style pointer to a style + */ +void lv_bar_set_style_indic(lv_obj_t * bar, lv_style_t * style) +{ + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + + ext->style_indic = style; + + bar->signal_f(bar, LV_SIGNAL_REFR_EXT_SIZE, NULL); + + lv_obj_inv(bar); +} + +/*===================== + * Getter functions + *====================*/ + +/** + * Get the value of a bar + * @param bar pointer to a bar object + * @return the value of the bar + */ +int16_t lv_bar_get_value(lv_obj_t * bar) +{ + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + return ext->act_value; +} + +/** + * Get the minimum value of a bar + * @param bar pointer to a bar object + * @return the minimum value of the bar + */ +int16_t lv_bar_get_min_value(lv_obj_t * bar) +{ + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + return ext->min_value; +} + +/** + * Get the maximum value of a bar + * @param bar pointer to a bar object + * @return the maximum value of the bar + */ +int16_t lv_bar_get_max_value(lv_obj_t * bar) +{ + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + return ext->max_value; +} + +/** + * Get the style of bar indicator + * @param bar pointer to a bar object + * @return pointer to the bar indicator style + */ +lv_style_t * lv_bar_get_style_indic(lv_obj_t * bar) +{ + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + + if(ext->style_indic == NULL) return lv_obj_get_style(bar); + + return ext->style_indic; +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +/** + * Handle the drawing related tasks of the bars + * @param bar pointer to an object + * @param mask the object will be drawn only in this area + * @param mode LV_DESIGN_COVER_CHK: only check if the object fully covers the 'mask_p' area + * (return 'true' if yes) + * LV_DESIGN_DRAW: draw the object (always return 'true') + * LV_DESIGN_DRAW_POST: drawing after every children are drawn + * @param return true/false, depends on 'mode' + */ +static bool lv_bar_design(lv_obj_t * bar, const area_t * mask, lv_design_mode_t mode) +{ + if(mode == LV_DESIGN_COVER_CHK) { + /*Return false if the object is not covers the mask area*/ + return ancestor_design_f(bar, mask, mode);; + } else if(mode == LV_DESIGN_DRAW_MAIN) { + ancestor_design_f(bar, mask, mode); + + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + + lv_style_t * style_indic = lv_bar_get_style_indic(bar); + area_t indic_area; + area_cpy(&indic_area, &bar->cords); + indic_area.x1 += style_indic->hpad; + indic_area.x2 -= style_indic->hpad; + indic_area.y1 += style_indic->vpad; + indic_area.y2 -= style_indic->vpad; + + cord_t w = area_get_width(&indic_area); + cord_t h = area_get_height(&indic_area); + + if(w >= h) { + indic_area.x2 = (int32_t) ((int32_t)w * ext->act_value) / (ext->max_value - ext->min_value); + indic_area.x2 += indic_area.x1; + } else { + indic_area.y1 = (int32_t) ((int32_t)h * ext->act_value) / (ext->max_value - ext->min_value); + indic_area.y1 = indic_area.y2 - indic_area.y1; + } + + /*Draw the indicator*/ + lv_draw_rect(&indic_area, mask, style_indic); + } + return true; +} + +#endif diff --git a/lv_objx/lv_bar.h b/lv_objx/lv_bar.h new file mode 100644 index 000000000..cdb8b60df --- /dev/null +++ b/lv_objx/lv_bar.h @@ -0,0 +1,123 @@ +/** + * @file lv_bar.h + * + */ + +#ifndef LV_BAR_H +#define LV_BAR_H + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#if USE_LV_BAR != 0 + +#include "../lv_obj/lv_obj.h" +#include +#include "lv_btn.h" +#include "lv_label.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/*Data of bar*/ +typedef struct +{ + /*No inherited ext*/ /*Ext. of ancestor*/ + /*New data for this type */ + int16_t act_value; /*Current value of the bar*/ + int16_t min_value; /*Minimum value of the bar*/ + int16_t max_value; /*Maximum value of the bar*/ + lv_style_t * style_indic; /*Style of the indicator*/ +}lv_bar_ext_t; + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create a bar objects + * @param par pointer to an object, it will be the parent of the new bar + * @param copy pointer to a bar object, if not NULL then the new object will be copied from it + * @return pointer to the created bar + */ +lv_obj_t * lv_bar_create(lv_obj_t * par, lv_obj_t * copy); + +/** + * Signal function of the bar + * @param bar pointer to a bar object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + */ +bool lv_bar_signal(lv_obj_t * bar, lv_signal_t sign, void * param); + +/** + * Set a new value on the bar + * @param bar pointer to a bar object + * @param value new value + */ +void lv_bar_set_value(lv_obj_t * bar, int16_t value); + +/** + * Set a new value with animation on the bar + * @param bar pointer to a bar object + * @param value new value + * @param anim_time animation time in milliseconds + */ +void lv_bar_set_value_anim(lv_obj_t * bar, int16_t value, uint16_t anim_time); + +/** + * Set minimum and the maximum values of a bar + * @param bar pointer to he bar object + * @param min minimum value + * @param max maximum value + */ +void lv_bar_set_range(lv_obj_t * bar, int16_t min, int16_t max); + +/** + * Set the style of bar indicator + * @param bar pointer to a bar object + * @param style pointer to a style + */ +void lv_bar_set_style_indic(lv_obj_t * bar, lv_style_t * style); + +/** + * Get the value of a bar + * @param bar pointer to a bar object + * @return the value of the bar + */ +int16_t lv_bar_get_value(lv_obj_t * bar); + +/** + * Get the minimum value of a bar + * @param bar pointer to a bar object + * @return the minimum value of the bar + */ +int16_t lv_bar_get_min_value(lv_obj_t * bar); + +/** + * Get the maximum value of a bar + * @param bar pointer to a bar object + * @return the maximum value of the bar + */ +int16_t lv_bar_get_max_value(lv_obj_t * bar); + +/** + * Get the style of bar indicator + * @param bar pointer to a bar object + * @return pointer to the bar indicator style + */ +lv_style_t * lv_bar_get_style_indic(lv_obj_t * bar); + +/********************** + * MACROS + **********************/ + +#endif + +#endif diff --git a/lv_objx/lv_btn.c b/lv_objx/lv_btn.c index ffadb9157..26afc39e5 100644 --- a/lv_objx/lv_btn.c +++ b/lv_objx/lv_btn.c @@ -7,16 +7,16 @@ * INCLUDES *********************/ -#include -#include -#include -#include - +#include "lv_conf.h" #if USE_LV_BTN != 0 -#include -#include "lv_btn.h" +#include "lvgl/lv_obj/lv_obj.h" +#include "misc/gfx/area.h" +#include "misc/gfx/color.h" #include "../lv_draw/lv_draw.h" +#include "lv_btn.h" +#include +#include /********************* * DEFINES @@ -29,18 +29,13 @@ /********************** * STATIC PROTOTYPES **********************/ +#if 0 static bool lv_btn_design(lv_obj_t * btn, const area_t * mask, lv_design_mode_t mode); -static void lv_btn_style_load(lv_obj_t * btn, lv_rects_t * new_rects); -static void lv_btns_init(void); +#endif /********************** * STATIC VARIABLES **********************/ -static lv_btns_t lv_btns_def; -static lv_btns_t lv_btns_transp; -static lv_btns_t lv_btns_border; - -static lv_design_f_t ancestor_design_f; /********************** * MACROS @@ -60,7 +55,7 @@ lv_obj_t * lv_btn_create(lv_obj_t * par, lv_obj_t * copy) { lv_obj_t * new_btn; - new_btn = lv_rect_create(par, copy); + new_btn = lv_cont_create(par, copy); dm_assert(new_btn); /*Allocate the extended data*/ lv_btn_ext_t * ext = lv_obj_alloc_ext(new_btn, sizeof(lv_btn_ext_t)); @@ -70,18 +65,20 @@ lv_obj_t * lv_btn_create(lv_obj_t * par, lv_obj_t * copy) ext->rel_action = NULL; ext->lpr_action = NULL; ext->lpr_rep_action = NULL; + ext->styles[LV_BTN_STATE_REL] = lv_style_get(LV_STYLE_BTN_REL, NULL); + ext->styles[LV_BTN_STATE_PR] = lv_style_get(LV_STYLE_BTN_PR, NULL); + ext->styles[LV_BTN_STATE_TREL] = lv_style_get(LV_STYLE_BTN_TREL, NULL); + ext->styles[LV_BTN_STATE_TPR] = lv_style_get(LV_STYLE_BTN_TPR, NULL); + ext->styles[LV_BTN_STATE_INA] = lv_style_get(LV_STYLE_BTN_INA, NULL); ext->lpr_exec = 0; ext->tgl = 0; - if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_btn); - lv_obj_set_signal_f(new_btn, lv_btn_signal); - lv_obj_set_design_f(new_btn, lv_btn_design); /*If no copy do the basic initialization*/ if(copy == NULL) { - lv_rect_set_layout(new_btn, LV_RECT_LAYOUT_CENTER); - lv_obj_set_style(new_btn, lv_btns_get(LV_BTNS_DEF, NULL)); + lv_cont_set_layout(new_btn, LV_CONT_LAYOUT_CENTER); + lv_obj_set_style(new_btn, ext->styles[LV_BTN_STATE_REL]); } /*Copy 'copy'*/ else { @@ -91,6 +88,11 @@ lv_obj_t * lv_btn_create(lv_obj_t * par, lv_obj_t * copy) ext->rel_action = copy_ext->rel_action; ext->lpr_action = copy_ext->lpr_action; ext->lpr_rep_action = copy_ext->lpr_action; + ext->styles[LV_BTN_STATE_REL] = copy_ext->styles[LV_BTN_STATE_REL]; + ext->styles[LV_BTN_STATE_PR] = copy_ext->styles[LV_BTN_STATE_PR]; + ext->styles[LV_BTN_STATE_TREL] = copy_ext->styles[LV_BTN_STATE_TREL]; + ext->styles[LV_BTN_STATE_TPR] = copy_ext->styles[LV_BTN_STATE_TPR]; + ext->styles[LV_BTN_STATE_INA] = copy_ext->styles[LV_BTN_STATE_INA]; ext->tgl = copy_ext->tgl; /*Refresh the style with new signal function*/ @@ -111,90 +113,78 @@ bool lv_btn_signal(lv_obj_t * btn, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_rect_signal(btn, sign, param); + valid = lv_cont_signal(btn, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { + lv_btn_ext_t * ext = lv_obj_get_ext(btn); lv_btn_state_t state = lv_btn_get_state(btn); - lv_btn_ext_t * ext = lv_obj_get_ext(btn); bool tgl = lv_btn_get_tgl(btn); - switch (sign) { - case LV_SIGNAL_PRESSED: - /*Refresh the state*/ - if(ext->state == LV_BTN_STATE_REL) { - lv_btn_set_state(btn, LV_BTN_STATE_PR); - } else if(ext->state == LV_BTN_STATE_TGL_REL) { - lv_btn_set_state(btn, LV_BTN_STATE_TGL_PR); - } + if(sign == LV_SIGNAL_PRESSED) { + /*Refresh the state*/ + if(ext->state == LV_BTN_STATE_REL) { + lv_btn_set_state(btn, LV_BTN_STATE_PR); + } else if(ext->state == LV_BTN_STATE_TREL) { + lv_btn_set_state(btn, LV_BTN_STATE_TPR); + } - ext->lpr_exec = 0; - /*Call the press action, here 'param' is the caller dispi*/ - if(ext->pr_action != NULL && state != LV_BTN_STATE_INA) { - valid = ext->pr_action(btn, param); - } - break; - - case LV_SIGNAL_PRESS_LOST: - /*Refresh the state*/ + ext->lpr_exec = 0; + /*Call the press action, 'param' is the caller dispi*/ + if(ext->pr_action != NULL && state != LV_BTN_STATE_INA) { + valid = ext->pr_action(btn, param); + } + } + else if(sign == LV_SIGNAL_PRESS_LOST) { + /*Refresh the state*/ + if(ext->state == LV_BTN_STATE_PR) lv_btn_set_state(btn, LV_BTN_STATE_REL); + else if(ext->state == LV_BTN_STATE_TPR) lv_btn_set_state(btn, LV_BTN_STATE_TREL); + } + else if(sign == LV_SIGNAL_PRESSING) { + /*When the button begins to drag revert pressed states to released*/ + if(lv_dispi_is_dragging(param) != false) { if(ext->state == LV_BTN_STATE_PR) lv_btn_set_state(btn, LV_BTN_STATE_REL); - else if(ext->state == LV_BTN_STATE_TGL_PR) lv_btn_set_state(btn, LV_BTN_STATE_TGL_REL); - - lv_obj_inv(btn); - break; - case LV_SIGNAL_PRESSING: - /*When the button begins to drag revert pressed states to released*/ - if(lv_dispi_is_dragging(param) != false) { - if(ext->state == LV_BTN_STATE_PR) lv_btn_set_state(btn, LV_BTN_STATE_REL); - else if(ext->state == LV_BTN_STATE_TGL_PR) lv_btn_set_state(btn, LV_BTN_STATE_TGL_REL); - } - lv_obj_inv(btn); - break; - - case LV_SIGNAL_RELEASED: - /*If not dragged and it was not long press action then - *change state and run the action*/ - if(lv_dispi_is_dragging(param) == false && ext->lpr_exec == 0) { - if(ext->state == LV_BTN_STATE_PR && tgl == false) { - lv_btn_set_state(btn, LV_BTN_STATE_REL); - } else if(ext->state == LV_BTN_STATE_TGL_PR && tgl == false) { - lv_btn_set_state(btn, LV_BTN_STATE_TGL_REL); - } else if(ext->state == LV_BTN_STATE_PR && tgl == true) { - lv_btn_set_state(btn, LV_BTN_STATE_TGL_REL); - } else if(ext->state == LV_BTN_STATE_TGL_PR && tgl == true) { - lv_btn_set_state(btn, LV_BTN_STATE_REL); - } - - if(ext->rel_action != NULL && state != LV_BTN_STATE_INA) { - valid = ext->rel_action(btn, param); - } - } else { /*If dragged change back the state*/ - if(ext->state == LV_BTN_STATE_PR) { - lv_btn_set_state(btn, LV_BTN_STATE_REL); - } else if(ext->state == LV_BTN_STATE_TGL_PR) { - lv_btn_set_state(btn, LV_BTN_STATE_TGL_REL); - } - lv_obj_inv(btn); + else if(ext->state == LV_BTN_STATE_TPR) lv_btn_set_state(btn, LV_BTN_STATE_TREL); + } + } + else if(sign == LV_SIGNAL_RELEASED) { + /*If not dragged and it was not long press action then + *change state and run the action*/ + if(lv_dispi_is_dragging(param) == false && ext->lpr_exec == 0) { + if(ext->state == LV_BTN_STATE_PR && tgl == false) { + lv_btn_set_state(btn, LV_BTN_STATE_REL); + } else if(ext->state == LV_BTN_STATE_TPR && tgl == false) { + lv_btn_set_state(btn, LV_BTN_STATE_TREL); + } else if(ext->state == LV_BTN_STATE_PR && tgl == true) { + lv_btn_set_state(btn, LV_BTN_STATE_TREL); + } else if(ext->state == LV_BTN_STATE_TPR && tgl == true) { + lv_btn_set_state(btn, LV_BTN_STATE_REL); } - break; - case LV_SIGNAL_LONG_PRESS: - /*Call the long press action, here 'param' is the caller dispi*/ + if(ext->rel_action != NULL && state != LV_BTN_STATE_INA) { + valid = ext->rel_action(btn, param); + } + } else { /*If dragged change back the state*/ + if(ext->state == LV_BTN_STATE_PR) { + lv_btn_set_state(btn, LV_BTN_STATE_REL); + } else if(ext->state == LV_BTN_STATE_TPR) { + lv_btn_set_state(btn, LV_BTN_STATE_TREL); + } + } + } + else if(sign == LV_SIGNAL_LONG_PRESS) { + /*Call the long press action, 'param' is the caller dispi*/ if(ext->lpr_action != NULL && state != LV_BTN_STATE_INA) { - ext->lpr_exec = 1; + ext->lpr_exec = 1; valid = ext->lpr_action(btn, param); } - break; - case LV_SIGNAL_LONG_PRESS_REP: - /*Call the release action, here 'param' is the caller dispi*/ - if(ext->lpr_rep_action != NULL && state != LV_BTN_STATE_INA) { - valid = ext->lpr_rep_action(btn, param); - } - break; - default: - /*Do nothing*/ - break; + } + else if(sign == LV_SIGNAL_LONG_PRESS_REP) { + /*Call the release action, 'param' is the caller dispi*/ + if(ext->lpr_rep_action != NULL && state != LV_BTN_STATE_INA) { + valid = ext->lpr_rep_action(btn, param); + } } } @@ -227,7 +217,7 @@ void lv_btn_set_state(lv_obj_t * btn, lv_btn_state_t state) lv_btn_ext_t * ext = lv_obj_get_ext(btn); if(ext->state != state) { ext->state = state; - lv_obj_inv(btn); + lv_obj_set_style(btn, ext->styles[state]); } } @@ -278,6 +268,31 @@ void lv_btn_set_lpr_rep_action(lv_obj_t * btn, lv_action_t lpr_rep_action) ext->lpr_rep_action = lpr_rep_action; } + +/** + * Set styles of a button is each state + * @param btn pointer to button object + * @param rel pointer to a style for releases state + * @param pr pointer to a style for pressed state + * @param trel pointer to a style for toggled releases state + * @param tpr pointer to a style for toggled pressed state + * @param ina pointer to a style for inactive state + */ +void lv_btn_set_styles(lv_obj_t * btn, lv_style_t * rel, lv_style_t * pr, + lv_style_t * trel, lv_style_t * tpr, + lv_style_t * ina) +{ + lv_btn_ext_t * ext = lv_obj_get_ext(btn); + ext->styles[LV_BTN_STATE_REL] = rel; + ext->styles[LV_BTN_STATE_PR] = pr; + ext->styles[LV_BTN_STATE_TREL] = trel; + ext->styles[LV_BTN_STATE_TPR] = tpr; + ext->styles[LV_BTN_STATE_INA] = ina; + + lv_obj_set_style(btn, ext->styles[ext->state]); + +} + /*===================== * Getter functions *====================*/ @@ -307,49 +322,26 @@ bool lv_btn_get_tgl(lv_obj_t * btn) } /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_btns_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_btns_t style + * Get the style of a button in a given state + * @param btn pointer to a button object + * @param state a state from 'lv_btn_state_t' in which style should be get + * @return pointer to the style in the given state */ -lv_btns_t * lv_btns_get(lv_btns_builtin_t style, lv_btns_t * copy) +lv_style_t * lv_btn_get_style(lv_obj_t * btn, lv_btn_state_t state) { - static bool style_inited = false; + lv_btn_ext_t * ext = lv_obj_get_ext(btn); - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_btns_init(); - style_inited = true; - } + if(ext->styles[state] == NULL) return lv_obj_get_style(btn->par); - lv_btns_t * style_p; - - switch(style) { - case LV_BTNS_DEF: - style_p = &lv_btns_def; - break; - case LV_BTNS_TRANSP: - style_p = &lv_btns_transp; - break; - case LV_BTNS_BORDER: - style_p = &lv_btns_border; - break; - default: - style_p = &lv_btns_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_btns_t)); - else memcpy(copy, &lv_btns_def, sizeof(lv_btns_t)); - } - - return style_p; + return ext->styles[state]; } + /********************** * STATIC FUNCTIONS **********************/ +#if 0 /** * Handle the drawing related tasks of the buttons * @param btn pointer to a button object @@ -365,161 +357,12 @@ static bool lv_btn_design(lv_obj_t * btn, const area_t * mask, lv_design_mode_t /* Because of the radius it is not sure the area is covered*/ if(mode == LV_DESIGN_COVER_CHK) { - /*Temporally set a rectangle style for the button to look like as rectangle*/ - lv_rects_t rects_tmp; - lv_btns_t * btns_tmp = lv_obj_get_style(btn); - bool ret = false; - lv_btn_style_load(btn, &rects_tmp); - if(rects_tmp.objs.transp == 0) { - btn->style_p = &rects_tmp; - ret = ancestor_design_f(btn, mask, mode); /*Draw the rectangle*/ - btn->style_p = btns_tmp; /*Reload the original button style*/ - } - return ret; - } else if(mode == LV_DESIGN_DRAW_MAIN || mode == LV_DESIGN_DRAW_POST) { - area_t area; - lv_obj_get_cords(btn, &area); + return false; + + } else if(mode == LV_DESIGN_DRAW_MAIN || mode == LV_DESIGN_DRAW_POST) { - /*Temporally set a rectangle style for the button to draw it as rectangle*/ - lv_rects_t rects_tmp; - lv_btns_t * btns_tmp = lv_obj_get_style(btn); - lv_btn_style_load(btn, &rects_tmp); - if(rects_tmp.objs.transp == 0) { - btn->style_p = &rects_tmp; - ancestor_design_f(btn, mask, mode); /*Draw the rectangle*/ - btn->style_p = btns_tmp; /*Reload the original button style*/ - } } return true; } - -/** - * Crate a rectangle style according to the state of the button - * @param btn pointer to a button object - * @param new_rects load the style here (pointer to a rectangle style) - */ -static void lv_btn_style_load(lv_obj_t * btn, lv_rects_t * new_rects) -{ - lv_btn_state_t state = lv_btn_get_state(btn); - lv_btns_t * style = lv_obj_get_style(btn); - - /*Load the style*/ - memcpy(new_rects, &style->rects, sizeof(lv_rects_t)); - new_rects->objs.color = style->mcolor[state]; - new_rects->gcolor = style->gcolor[state]; - new_rects->bcolor = style->bcolor[state]; - new_rects->lcolor = style->lcolor[state]; - new_rects->empty = style->flags[state].empty; - new_rects->objs.transp = style->flags[state].transp; - - if(style->flags[state].light_en != 0) new_rects->light = style->rects.light; - else new_rects->light = 0; - -} - -/** - * Initialize the button styles - */ -static void lv_btns_init(void) -{ - /*Default style*/ - lv_btns_def.mcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x60, 0x88, 0xb0); - lv_btns_def.gcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_btns_def.bcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0xff, 0xff, 0xff); - lv_btns_def.lcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_btns_def.flags[LV_BTN_STATE_REL].light_en = 0; - lv_btns_def.flags[LV_BTN_STATE_REL].transp = 0; - lv_btns_def.flags[LV_BTN_STATE_REL].empty = 0; - - lv_btns_def.mcolor[LV_BTN_STATE_PR] =COLOR_MAKE(0x50, 0x68, 0x80); - lv_btns_def.gcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x18, 0x20, 0x28); - lv_btns_def.bcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x60, 0x80, 0xa0); - lv_btns_def.lcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_btns_def.flags[LV_BTN_STATE_PR].light_en = 0; - lv_btns_def.flags[LV_BTN_STATE_PR].transp = 0; - lv_btns_def.flags[LV_BTN_STATE_PR].empty = 0; - - lv_btns_def.mcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x40, 0x60, 0x80); - lv_btns_def.gcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x10, 0x18, 0x20); - lv_btns_def.bcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_btns_def.lcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_btns_def.flags[LV_BTN_STATE_TGL_REL].light_en = 1; - lv_btns_def.flags[LV_BTN_STATE_TGL_REL].transp = 0; - lv_btns_def.flags[LV_BTN_STATE_TGL_REL].empty = 0; - - lv_btns_def.mcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x60, 0x80, 0xa0); - lv_btns_def.gcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_btns_def.bcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_btns_def.lcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_btns_def.flags[LV_BTN_STATE_TGL_PR].light_en = 1; - lv_btns_def.flags[LV_BTN_STATE_TGL_PR].transp = 0; - lv_btns_def.flags[LV_BTN_STATE_TGL_PR].empty = 0; - - lv_btns_def.mcolor[LV_BTN_STATE_INA] = COLOR_SILVER; - lv_btns_def.gcolor[LV_BTN_STATE_INA] = COLOR_GRAY; - lv_btns_def.bcolor[LV_BTN_STATE_INA] = COLOR_WHITE; - lv_btns_def.lcolor[LV_BTN_STATE_INA] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_btns_def.flags[LV_BTN_STATE_INA].light_en = 0; - lv_btns_def.flags[LV_BTN_STATE_INA].transp= 0; - lv_btns_def.flags[LV_BTN_STATE_INA].empty = 0; - - lv_btns_def.rects.objs.color = lv_btns_def.mcolor[LV_BTN_STATE_REL]; - lv_btns_def.rects.gcolor = lv_btns_def.gcolor[LV_BTN_STATE_REL]; - lv_btns_def.rects.bcolor = lv_btns_def.bcolor[LV_BTN_STATE_REL]; - lv_btns_def.rects.objs.transp = 0; - lv_btns_def.rects.empty = 0; - lv_btns_def.rects.light = 6 * LV_DOWNSCALE; - lv_btns_def.rects.bwidth = 2 * LV_DOWNSCALE; - lv_btns_def.rects.bopa = 70; - lv_btns_def.rects.empty = 0; - lv_btns_def.rects.round = 4 * LV_DOWNSCALE; - lv_btns_def.rects.hpad = 10 * LV_DOWNSCALE; - lv_btns_def.rects.vpad = 15 * LV_DOWNSCALE; - lv_btns_def.rects.opad = 10 * LV_DOWNSCALE; - - /*Transparent style*/ - memcpy(&lv_btns_transp, &lv_btns_def, sizeof(lv_btns_t)); - lv_btns_transp.rects.bwidth = 0; - lv_btns_transp.flags[LV_BTN_STATE_REL].transp = 1; - lv_btns_transp.flags[LV_BTN_STATE_REL].empty = 1; - lv_btns_transp.flags[LV_BTN_STATE_REL].light_en = 0; - - lv_btns_transp.flags[LV_BTN_STATE_PR].transp = 1; - lv_btns_transp.flags[LV_BTN_STATE_PR].empty = 1; - lv_btns_transp.flags[LV_BTN_STATE_PR].light_en = 0; - lv_btns_transp.flags[LV_BTN_STATE_TGL_REL].transp = 1; - lv_btns_transp.flags[LV_BTN_STATE_TGL_REL].empty = 1; - lv_btns_transp.flags[LV_BTN_STATE_TGL_REL].light_en = 0; - lv_btns_transp.flags[LV_BTN_STATE_TGL_PR].transp = 1; - lv_btns_transp.flags[LV_BTN_STATE_TGL_PR].empty = 1; - lv_btns_transp.flags[LV_BTN_STATE_TGL_PR].light_en = 0; - lv_btns_transp.flags[LV_BTN_STATE_INA].transp = 1; - lv_btns_transp.flags[LV_BTN_STATE_INA].empty = 1; - lv_btns_transp.flags[LV_BTN_STATE_INA].light_en = 0; - - - /*Border style*/ - memcpy(&lv_btns_border, &lv_btns_def, sizeof(lv_btns_t)); - lv_btns_border.bcolor[LV_BTN_STATE_REL] = COLOR_BLACK; - lv_btns_border.bcolor[LV_BTN_STATE_PR] = COLOR_BLACK; - lv_btns_border.bcolor[LV_BTN_STATE_TGL_REL] = COLOR_BLACK; - lv_btns_border.bcolor[LV_BTN_STATE_TGL_PR] = COLOR_BLACK; - lv_btns_border.bcolor[LV_BTN_STATE_INA] = COLOR_GRAY; - lv_btns_border.flags[LV_BTN_STATE_REL].empty = 1; - lv_btns_border.flags[LV_BTN_STATE_PR].empty = 0; - lv_btns_border.flags[LV_BTN_STATE_TGL_REL].empty = 0; - lv_btns_border.flags[LV_BTN_STATE_TGL_PR].empty = 0; - lv_btns_border.flags[LV_BTN_STATE_INA].empty = 1; - lv_btns_border.flags[LV_BTN_STATE_REL].light_en = 0; - lv_btns_border.flags[LV_BTN_STATE_PR].light_en = 0; - lv_btns_border.flags[LV_BTN_STATE_TGL_REL].light_en = 0; - lv_btns_border.flags[LV_BTN_STATE_TGL_PR].light_en = 0; - lv_btns_border.flags[LV_BTN_STATE_INA].light_en = 0; - lv_btns_border.rects.bwidth = 1 * LV_DOWNSCALE; - lv_btns_border.rects.bopa = 50; - lv_btns_border.rects.round = 4 * LV_DOWNSCALE; - lv_btns_border.rects.hpad = 10 * LV_DOWNSCALE; - lv_btns_border.rects.vpad = 10 * LV_DOWNSCALE; -} - +#endif #endif diff --git a/lv_objx/lv_btn.h b/lv_objx/lv_btn.h index 5d5b99060..81bac4895 100644 --- a/lv_objx/lv_btn.h +++ b/lv_objx/lv_btn.h @@ -13,11 +13,11 @@ #if USE_LV_BTN != 0 /*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_btn: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " +#if USE_LV_CONT == 0 +#error "lv_btn: lv_cont is required. Enable it in lv_conf.h (USE_LV_CONT 1) " #endif -#include "lv_rect.h" +#include #include "../lv_obj/lv_dispi.h" /********************* @@ -28,12 +28,13 @@ * TYPEDEFS **********************/ +/*Button states*/ typedef enum { - LV_BTN_STATE_PR, LV_BTN_STATE_REL, - LV_BTN_STATE_TGL_PR, - LV_BTN_STATE_TGL_REL, + LV_BTN_STATE_PR, + LV_BTN_STATE_TREL, + LV_BTN_STATE_TPR, LV_BTN_STATE_INA, LV_BTN_STATE_NUM, }lv_btn_state_t; @@ -41,46 +42,20 @@ typedef enum /*Data of button*/ typedef struct { - lv_rect_ext_t rect_ext; /*Ext. of ancestor*/ + lv_cont_ext_t cont; /*Ext. of ancestor*/ /*New data for this type */ - lv_action_t pr_action; - lv_action_t rel_action; - lv_action_t lpr_action; - lv_action_t lpr_rep_action; + lv_action_t pr_action; /*A function to call when the button is pressed (NULL if unused)*/ + lv_action_t rel_action; /*A function to call when the button is released (NULL if unused)*/ + lv_action_t lpr_action; /*A function to call when the button is long pressed (NULL if unused)*/ + lv_action_t lpr_rep_action; /*A function to call periodically after long press (NULL if unused)*/ - lv_btn_state_t state; - uint8_t tgl :1; /*1: Toggle enabled*/ - uint8_t lpr_exec :1; /*1: long press action executed (Not for user)*/ + lv_style_t * styles[LV_BTN_STATE_NUM]; /*Styles in each state*/ + + lv_btn_state_t state; /*Current state of the button from 'lv_btn_state_t' enum*/ + uint8_t tgl :1; /*1: Toggle enabled*/ + uint8_t lpr_exec :1; /*1: Long press action executed (Handled by the library)*/ }lv_btn_ext_t; -/*Bits of 'flag' in 'lv_btns_t'*/ -typedef struct -{ - uint8_t light_en :1; - uint8_t transp :1; - uint8_t empty :1; -}lv_btns_bits_t; - -/*Style of button*/ -typedef struct -{ - lv_rects_t rects; /*Style of ancestor*/ - /*New style element for this type */ - color_t mcolor[LV_BTN_STATE_NUM]; - color_t gcolor[LV_BTN_STATE_NUM]; - color_t bcolor[LV_BTN_STATE_NUM]; - color_t lcolor[LV_BTN_STATE_NUM]; - lv_btns_bits_t flags[LV_BTN_STATE_NUM]; -}lv_btns_t; - -/*Built-in styles of button*/ -typedef enum -{ - LV_BTNS_DEF, - LV_BTNS_TRANSP, - LV_BTNS_BORDER, -}lv_btns_builtin_t; - /********************** * GLOBAL PROTOTYPES @@ -144,6 +119,17 @@ void lv_btn_set_lpr_action(lv_obj_t * btn, lv_action_t lpr_action); */ void lv_btn_set_lpr_rep_action(lv_obj_t * btn, lv_action_t lpr_rep_action); +/** + * Set styles of a button is each state + * @param btn pointer to button object + * @param rel pointer to a style for releases state + * @param pr pointer to a style for pressed state + * @param trel pointer to a style for toggled releases state + * @param tpr pointer to a style for toggled pressed state + * @param ina pointer to a style for inactive state + */ +void lv_btn_set_styles(lv_obj_t * btn, lv_style_t * rel, lv_style_t * pr, lv_style_t * trel, lv_style_t * tpr, lv_style_t * ina); + /** * Get the current state of the button * @param btn pointer to a button object @@ -159,12 +145,12 @@ lv_btn_state_t lv_btn_get_state(lv_obj_t * btn); bool lv_btn_get_tgl(lv_obj_t * btn); /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_btns_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_btns_t style + * Get the style of a button in a given state + * @param btn pointer to a button object + * @param state a state from 'lv_btn_state_t' in which style should be get + * @return pointer to the style in the given state */ -lv_btns_t * lv_btns_get(lv_btns_builtin_t style, lv_btns_t * copy); +lv_style_t * lv_btn_get_style(lv_obj_t * btn, lv_btn_state_t state); /********************** * MACROS diff --git a/lv_objx/lv_btnm.c b/lv_objx/lv_btnm.c index ea8893563..d51bd7510 100644 --- a/lv_objx/lv_btnm.c +++ b/lv_objx/lv_btnm.c @@ -10,14 +10,14 @@ #if USE_LV_BTNM != 0 #include "lv_btnm.h" +#include "misc/gfx/text.h" #include "../lv_draw/lv_draw.h" -#include "../lv_misc/text.h" #include "../lv_obj/lv_refr.h" /********************* * DEFINES *********************/ -#define LV_BTNM_BTN_PR_INVALID 0xFFFF +#define LV_BTNM_PR_NONE 0xFFFF /********************** * TYPEDEFS @@ -26,18 +26,14 @@ /********************** * STATIC PROTOTYPES **********************/ - static bool lv_btnm_design(lv_obj_t * btnm, const area_t * mask, lv_design_mode_t mode); static uint8_t lv_btnm_get_width_unit(const char * btn_str); static uint16_t lv_btnm_get_btn_from_point(lv_obj_t * btnm, point_t * p); static void lv_btnm_create_btns(lv_obj_t * btnm, const char ** map); -static void lv_btnms_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_btnms_t lv_btnms_def; - static const char * lv_btnm_def_map[] = {"Btn1","Btn2", "Btn3","\n", "\002Btn4","Btn5", ""}; @@ -64,33 +60,38 @@ static lv_design_f_t ancestor_design_f; lv_obj_t * lv_btnm_create(lv_obj_t * par, lv_obj_t * copy) { /*Create the ancestor object*/ - lv_obj_t * new_btnm = lv_rect_create(par, copy); + lv_obj_t * new_btnm = lv_cont_create(par, copy); dm_assert(new_btnm); /*Allocate the object type specific extended data*/ lv_btnm_ext_t * ext = lv_obj_alloc_ext(new_btnm, sizeof(lv_btnm_ext_t)); dm_assert(ext); ext->btn_cnt = 0; - ext->btn_pr = LV_BTNM_BTN_PR_INVALID; + ext->btn_pr = LV_BTNM_PR_NONE; ext->btn_areas = NULL; ext->cb = NULL; ext->map_p = NULL; + ext->style_btn_rel = lv_style_get(LV_STYLE_BTN_REL, NULL); + ext->style_btn_pr = lv_style_get(LV_STYLE_BTN_PR, NULL); if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_btnm); lv_obj_set_signal_f(new_btnm, lv_btnm_signal); lv_obj_set_design_f(new_btnm, lv_btnm_design); - /*Init the new button matrix object*/ if(copy == NULL) { - lv_obj_set_size(new_btnm, LV_HOR_RES / 2, LV_VER_RES / 2); - lv_obj_set_style(new_btnm, lv_btnms_get(LV_BTNMS_DEF, NULL)); + lv_obj_set_size(new_btnm, LV_HOR_RES, LV_VER_RES / 2); + lv_obj_set_style(new_btnm, lv_style_get(LV_STYLE_PLAIN, NULL)); lv_btnm_set_map(new_btnm, lv_btnm_def_map); } /*Copy an existing object*/ else { + lv_btnm_ext_t * copy_ext = lv_obj_get_ext(copy); + ext->style_btn_rel = copy_ext->style_btn_rel; + ext->style_btn_pr = copy_ext->style_btn_pr; lv_btnm_set_map(new_btnm, lv_btnm_get_map(copy)); + ext->cb = copy_ext->cb; } return new_btnm; @@ -108,83 +109,84 @@ bool lv_btnm_signal(lv_obj_t * btnm, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_rect_signal(btnm, sign, param); + valid = lv_cont_signal(btnm, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); - uint16_t new_btn; area_t btnm_area; area_t btn_area; point_t p; - switch(sign) { - case LV_SIGNAL_CLEANUP: - dm_free(ext->btn_areas); - break; - case LV_SIGNAL_STYLE_CHG: - case LV_SIGNAL_CORD_CHG: - lv_btnm_set_map(btnm, LV_EA(btnm, lv_btnm_ext_t)->map_p); - break; - case LV_SIGNAL_PRESSING: - /*Search the pressed area*/ - lv_dispi_get_point(param, &p); - new_btn = lv_btnm_get_btn_from_point(btnm, &p); - /*Invalidate to old and the new areas*/; - lv_obj_get_cords(btnm, &btnm_area); - if(new_btn != ext->btn_pr) { - lv_dispi_reset_lpr(param); - if(ext->btn_pr != LV_BTNM_BTN_PR_INVALID) { - area_cpy(&btn_area, &ext->btn_areas[ext->btn_pr]); - btn_area.x1 += btnm_area.x1; - btn_area.y1 += btnm_area.y1; - btn_area.x2 += btnm_area.x1; - btn_area.y2 += btnm_area.y1; - lv_inv_area(&btn_area); - } - if(new_btn != LV_BTNM_BTN_PR_INVALID) { - area_cpy(&btn_area, &ext->btn_areas[new_btn]); - btn_area.x1 += btnm_area.x1; - btn_area.y1 += btnm_area.y1; - btn_area.x2 += btnm_area.x1; - btn_area.y2 += btnm_area.y1; - lv_inv_area(&btn_area); - } - } - - ext->btn_pr = new_btn; - break; - case LV_SIGNAL_RELEASED: - case LV_SIGNAL_LONG_PRESS_REP: - if(ext->cb != NULL && - ext->btn_pr != LV_BTNM_BTN_PR_INVALID) { - uint16_t txt_i = 0; - uint16_t btn_i = 0; - /*Search the next valid text in the map*/ - while(btn_i != ext->btn_pr) { - btn_i ++; - txt_i ++; - if(strcmp(ext->map_p[txt_i], "\n") == 0) txt_i ++; - } - - ext->cb(btnm, txt_i); - } - if(sign == LV_SIGNAL_RELEASED && ext->btn_pr != LV_BTNM_BTN_PR_INVALID) { - /*Invalidate to old area*/; - lv_obj_get_cords(btnm, &btnm_area); + if(sign == LV_SIGNAL_CLEANUP) { + dm_free(ext->btn_areas); + } + else if(sign == LV_SIGNAL_STYLE_CHG || sign == LV_SIGNAL_CORD_CHG) { + lv_btnm_set_map(btnm, ext->map_p); + } + else if(sign == LV_SIGNAL_PRESSING) { + uint16_t btn_pr; + /*Search the pressed area*/ + lv_dispi_get_point(param, &p); + btn_pr = lv_btnm_get_btn_from_point(btnm, &p); + /*Invalidate to old and the new areas*/; + lv_obj_get_cords(btnm, &btnm_area); + if(btn_pr != ext->btn_pr) { + lv_dispi_reset_lpr(param); + if(ext->btn_pr != LV_BTNM_PR_NONE) { area_cpy(&btn_area, &ext->btn_areas[ext->btn_pr]); btn_area.x1 += btnm_area.x1; btn_area.y1 += btnm_area.y1; btn_area.x2 += btnm_area.x1; btn_area.y2 += btnm_area.y1; lv_inv_area(&btn_area); + } + if(btn_pr != LV_BTNM_PR_NONE) { + area_cpy(&btn_area, &ext->btn_areas[btn_pr]); + btn_area.x1 += btnm_area.x1; + btn_area.y1 += btnm_area.y1; + btn_area.x2 += btnm_area.x1; + btn_area.y2 += btnm_area.y1; + lv_inv_area(&btn_area); + } + } - ext->btn_pr = LV_BTNM_BTN_PR_INVALID; - } - break; - default: - break; + ext->btn_pr = btn_pr; } + else if(sign == LV_SIGNAL_RELEASED || sign == LV_SIGNAL_LONG_PRESS_REP) { + if(ext->cb != NULL && ext->btn_pr != LV_BTNM_PR_NONE) { + uint16_t txt_i = 0; + uint16_t btn_i = 0; + + /* Search the text of ext->btn_pr the buttons text in the map + * Skip "\n"-s*/ + while(btn_i != ext->btn_pr) { + btn_i ++; + txt_i ++; + if(strcmp(ext->map_p[txt_i], "\n") == 0) txt_i ++; + } + + ext->cb(btnm, txt_i); + } + + if(sign == LV_SIGNAL_RELEASED && ext->btn_pr != LV_BTNM_PR_NONE) { + /*Invalidate to old area*/; + lv_obj_get_cords(btnm, &btnm_area); + area_cpy(&btn_area, &ext->btn_areas[ext->btn_pr]); + btn_area.x1 += btnm_area.x1; + btn_area.y1 += btnm_area.y1; + btn_area.x2 += btnm_area.x1; + btn_area.y2 += btnm_area.y1; + lv_inv_area(&btn_area); + + ext->btn_pr = LV_BTNM_PR_NONE; + } + } + else if(sign == LV_SIGNAL_PRESS_LOST) { + ext->btn_pr = LV_BTNM_PR_NONE; + lv_obj_inv(btnm); + + } } return valid; @@ -208,16 +210,17 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) { if(map == NULL) return; - LV_EA(btnm, lv_btnm_ext_t)->map_p = map; + lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); + ext->map_p = map; /*Analyze the map and create the required number of buttons*/ lv_btnm_create_btns(btnm, map); /*Set size and positions of the buttons*/ - lv_btnms_t * btnms = lv_obj_get_style(btnm); - cord_t max_w = lv_obj_get_width(btnm) - 2 * btnms->rects.hpad; - cord_t max_h = lv_obj_get_height(btnm) - 2 * btnms->rects.vpad; - cord_t act_y = btnms->rects.vpad; + lv_style_t * btnms = lv_obj_get_style(btnm); + cord_t max_w = lv_obj_get_width(btnm) - 2 * btnms->hpad; + cord_t max_h = lv_obj_get_height(btnm) - 2 * btnms->vpad; + cord_t act_y = btnms->vpad; /*Count the lines to calculate button height*/ uint8_t line_cnt = 1; @@ -226,7 +229,7 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) if(strcmp(map[li], "\n") == 0) line_cnt ++; } - cord_t btn_h = max_h - ((line_cnt - 1) * btnms->rects.opad); + cord_t btn_h = max_h - ((line_cnt - 1) * btnms->opad); btn_h = btn_h / line_cnt; /* Count the units and the buttons in a line @@ -237,7 +240,6 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) uint16_t i_tot = 0; /*Act. index in the str map*/ uint16_t btn_i = 0; /*Act. index of button areas*/ const char ** map_p_tmp = map; - lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); /*Count the units and the buttons in a line*/ while(1) { @@ -253,11 +255,11 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) /*Only deal with the non empty lines*/ if(btn_cnt != 0) { /*Calculate the width of all units*/ - cord_t all_unit_w = max_w - ((btn_cnt-1) * btnms->rects.opad); + cord_t all_unit_w = max_w - ((btn_cnt-1) * btnms->opad); /*Set the button size and positions and set the texts*/ uint16_t i; - cord_t act_x = btnms->rects.hpad; + cord_t act_x = btnms->hpad; cord_t act_unit_w; unit_act_cnt = 0; for(i = 0; i < btn_cnt; i++) { @@ -267,7 +269,7 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) act_unit_w = (all_unit_w * lv_btnm_get_width_unit(map_p_tmp[i])) / unit_cnt; /*Always recalculate act_x because of rounding errors */ - act_x = (unit_act_cnt * all_unit_w) / unit_cnt + i * btnms->rects.opad + btnms->rects.hpad; + act_x = (unit_act_cnt * all_unit_w) / unit_cnt + i * btnms->opad + btnms->hpad; area_set(&ext->btn_areas[btn_i], act_x, act_y, @@ -280,7 +282,7 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) btn_i ++; } } - act_y += btn_h + btnms->rects.opad; + act_y += btn_h + btnms->opad; if(strlen(map_p_tmp[btn_cnt]) == 0) break; /*Break on end of map*/ map_p_tmp = &map_p_tmp[btn_cnt + 1]; /*Set the map to the next line*/ i_tot ++; /*Skip the '\n'*/ @@ -294,9 +296,26 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) * @param btnm: pointer to button matrix object * @param cb pointer to a callback function */ -void lv_btnm_set_cb(lv_obj_t * btnm, lv_btnm_callback_t cb) +void lv_btnm_set_action(lv_obj_t * btnm, lv_btnm_callback_t cb) { - LV_EA(btnm, lv_btnm_ext_t)->cb = cb; + lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); + ext->cb = cb; +} + +/** + * Set the styles of the buttons of the button matrox + * @param btnm pointer to a button matrix object + * @param state style in this state (LV_BTN_STATE_PR or LV_BTN_STATE_REL) + * @param style pointer to style + */ +void lv_btnm_set_styles_btn(lv_obj_t * btnm, lv_style_t * rel, lv_style_t * pr) +{ + lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); + ext->style_btn_rel = rel; + ext->style_btn_pr = pr; + + lv_obj_inv(btnm); + } /*===================== @@ -310,7 +329,8 @@ void lv_btnm_set_cb(lv_obj_t * btnm, lv_btnm_callback_t cb) */ const char ** lv_btnm_get_map(lv_obj_t * btnm) { - return LV_EA(btnm, lv_btnm_ext_t)->map_p; + lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); + return ext->map_p; } /** @@ -318,44 +338,37 @@ const char ** lv_btnm_get_map(lv_obj_t * btnm) * @param btnm: pointer to button matrix object * @return pointer to the callback function */ -lv_btnm_callback_t lv_btnm_get_cb(lv_obj_t * btnm) +lv_btnm_callback_t lv_btnm_get_action(lv_obj_t * btnm) { - return LV_EA(btnm, lv_btnm_ext_t)->cb; + lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); + return ext->cb; } - /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_btnms_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_btnms_t style + * Get the style of buttons in button matrix + * @param btnm pointer to a button matrix object + * @param state style in this state (LV_BTN_STATE_PR or LV_BTN_STATE_REL) + * @return pointer the button style in the given state */ -lv_btnms_t * lv_btnms_get(lv_btnms_builtin_t style, lv_btnms_t * copy) +lv_style_t * lv_btnm_get_style_btn(lv_obj_t * btnm, lv_btn_state_t state) { - static bool style_inited = false; + lv_style_t * style; + lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_btnms_init(); - style_inited = true; - } + switch(state) { + case LV_BTN_STATE_PR: + style = ext->style_btn_pr; + break; + case LV_BTN_STATE_REL: + style = ext->style_btn_rel; + break; + default: + style = NULL; + } - lv_btnms_t *style_p; + if(style == NULL) style = lv_obj_get_style(btnm); - switch(style) { - case LV_BTNMS_DEF: - style_p = &lv_btnms_def; - break; - default: - style_p = &lv_btnms_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_btnms_t)); - else memcpy(copy, &lv_btnms_def, sizeof(lv_btnms_t)); - } - - return style_p; + return style; } /********************** @@ -383,7 +396,7 @@ static bool lv_btnm_design(lv_obj_t * btnm, const area_t * mask, lv_design_mode_ ancestor_design_f(btnm, mask, mode); lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); - lv_btnms_t * style = lv_obj_get_style(btnm); + lv_style_t * btn_style; area_t area_btnm; area_t area_tmp; @@ -405,30 +418,18 @@ static bool lv_btnm_design(lv_obj_t * btnm, const area_t * mask, lv_design_mode_ btn_h = area_get_height(&area_tmp); /*Load the style*/ - lv_rects_t new_rects; - lv_btn_state_t state; - state = ext->btn_pr == btn_i ? LV_BTN_STATE_PR : LV_BTN_STATE_REL; - memcpy(&new_rects, &style->btns, sizeof(lv_rects_t)); - new_rects.objs.color = style->btns.mcolor[state]; - new_rects.gcolor = style->btns.gcolor[state]; - new_rects.bcolor = style->btns.bcolor[state]; - new_rects.lcolor = style->btns.lcolor[state]; - new_rects.empty = style->btns.flags[state].empty; - new_rects.objs.transp = style->btns.flags[state].transp; + btn_style = lv_btnm_get_style_btn(btnm, ext->btn_pr == btn_i ? LV_BTN_STATE_PR : LV_BTN_STATE_REL); - if(style->btns.flags[state].light_en != 0) new_rects.light = style->rects.light; - else new_rects.light = 0; - - lv_draw_rect(&area_tmp, mask, &new_rects, OPA_COVER); + lv_draw_rect(&area_tmp, mask, btn_style); /*Search the next valid text in the map*/ while(strcmp(ext->map_p[txt_i], "\n") == 0) txt_i ++; /*Calculate the size of the text*/ - const font_t * font = font_get(style->labels.font); + const font_t * font = btn_style->font; point_t txt_size; txt_get_size(&txt_size, ext->map_p[txt_i], font, - style->labels.letter_space, style->labels.line_space, + btn_style->letter_space, btn_style->line_space, area_get_width(&area_btnm), TXT_FLAG_NONE); area_tmp.x1 += (btn_w - txt_size.x) / 2; @@ -436,7 +437,7 @@ static bool lv_btnm_design(lv_obj_t * btnm, const area_t * mask, lv_design_mode_ area_tmp.x2 = area_tmp.x1 + txt_size.x; area_tmp.y2 = area_tmp.y1 + txt_size.y; - lv_draw_label(&area_tmp, mask, &style->labels, OPA_COVER, ext->map_p[txt_i], TXT_FLAG_NONE); + lv_draw_label(&area_tmp, mask, btn_style, ext->map_p[txt_i], TXT_FLAG_NONE); txt_i ++; } } @@ -445,18 +446,6 @@ static bool lv_btnm_design(lv_obj_t * btnm, const area_t * mask, lv_design_mode_ return true; } - -/** - * Initialize the button matrix styles - */ -static void lv_btnms_init(void) -{ - /*Default style*/ - lv_rects_get(LV_RECTS_DEF, &lv_btnms_def.rects); /*Background rectangle style*/ - lv_btns_get(LV_BTNS_DEF, &lv_btnms_def.btns); /*Button style*/ - lv_labels_get(LV_LABELS_BTN, &lv_btnms_def.labels); /*BUtton label style*/ -} - /** * Create the required number of buttons according to a map * @param btnm pointer to button matrix object @@ -478,6 +467,7 @@ static void lv_btnm_create_btns(lv_obj_t * btnm, const char ** map) if(ext->btn_areas != NULL) { dm_free(ext->btn_areas); + ext->btn_areas = NULL; } ext->btn_areas = dm_alloc(sizeof(area_t) * btn_cnt); @@ -494,7 +484,6 @@ static uint8_t lv_btnm_get_width_unit(const char * btn_str) if(btn_str[0] <= '\011') return btn_str[0]; return 1; - } static uint16_t lv_btnm_get_btn_from_point(lv_obj_t * btnm, point_t * p) @@ -516,7 +505,7 @@ static uint16_t lv_btnm_get_btn_from_point(lv_obj_t * btnm, point_t * p) } } - if(i == ext->btn_cnt) i = LV_BTNM_BTN_PR_INVALID; + if(i == ext->btn_cnt) i = LV_BTNM_PR_NONE; return i; } diff --git a/lv_objx/lv_btnm.h b/lv_objx/lv_btnm.h index b07e74d9c..f5e8de100 100644 --- a/lv_objx/lv_btnm.h +++ b/lv_objx/lv_btnm.h @@ -13,17 +13,7 @@ #include "lv_conf.h" #if USE_LV_BTNM != 0 -/*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_btnm: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " -#endif - -#if USE_LV_BTN == 0 -#error "lv_btnm: lv_btn is required. Enable it in lv_conf.h (USE_LV_BTN 1) " -#endif - #include "../lv_obj/lv_obj.h" -#include "lv_rect.h" #include "lv_label.h" #include "lv_btn.h" @@ -35,7 +25,7 @@ * TYPEDEFS **********************/ -/* Type of callback function which is called when a button is released +/* Type of callback function which is called when a button is released on the button matrix * Parameters: button matrix, released button index in the map string * return LV_ACTION_RES_INV: the button matrix is deleted else LV_ACTION_RES_OK*/ typedef lv_action_res_t (*lv_btnm_callback_t) (lv_obj_t *, uint16_t); @@ -43,31 +33,17 @@ typedef lv_action_res_t (*lv_btnm_callback_t) (lv_obj_t *, uint16_t); /*Data of button matrix*/ typedef struct { - lv_rect_ext_t rect; /*Ext. of ancestor*/ + lv_cont_ext_t bg; /*Ext. of ancestor*/ /*New data for this type */ const char ** map_p; /*Pointer to the current map*/ - area_t * btn_areas; - uint16_t btn_cnt; - uint16_t btn_pr; - lv_btnm_callback_t cb; + area_t * btn_areas; /*Array of areas for the buttons (Handled by the library)*/ + uint16_t btn_cnt; /*Number of button in 'map_p'(Handled by the library)*/ + uint16_t btn_pr; /*Index of the currently pressed button or LV_BTNM_PR_NONE (Handled by the library)*/ + lv_btnm_callback_t cb; /*A function to call when a button is releases*/ + lv_style_t * style_btn_rel; /*Style of the released buttons*/ + lv_style_t * style_btn_pr; /*Style of the pressed buttons*/ }lv_btnm_ext_t; -/*Style of button matrix*/ -typedef struct -{ - lv_rects_t rects; /*Style of ancestor*/ - /*New style element for this type */ - lv_btns_t btns; /*Style of the buttons*/ - lv_labels_t labels; /*Style of the labels on the buttons*/ -}lv_btnms_t; - -/*Built-in styles of button matrix*/ -typedef enum -{ - LV_BTNMS_DEF, -}lv_btnms_builtin_t; - - /********************** * GLOBAL PROTOTYPES **********************/ @@ -106,7 +82,15 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map); * @param btnm: pointer to button matrix object * @param cb pointer to a callback function */ -void lv_btnm_set_cb(lv_obj_t * btnm, lv_btnm_callback_t cb); +void lv_btnm_set_action(lv_obj_t * btnm, lv_btnm_callback_t cb); + +/** + * Set the styles of the buttons of the button matrox + * @param btnm pointer to a button matrix object + * @param state style in this state (LV_BTN_STATE_PR or LV_BTN_STATE_REL) + * @param style pointer to style + */ +void lv_btnm_set_styles_btn(lv_obj_t * btnm, lv_style_t * rel, lv_style_t * pr); /** * Get the current map of a button matrix @@ -120,15 +104,15 @@ const char ** lv_btnm_get_map(lv_obj_t * btnm); * @param btnm: pointer to button matrix object * @return pointer to the callback function */ -lv_btnm_callback_t lv_btnm_get_cb(lv_obj_t * btnm); +lv_btnm_callback_t lv_btnm_get_action(lv_obj_t * btnm); /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_btnms_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_btnms_t style + * Get the style of buttons in button matrix + * @param btnm pointer to a button matrix object + * @param state style in this state (LV_BTN_STATE_PR or LV_BTN_STATE_REL) + * @return pointer the button style in the given state */ -lv_btnms_t * lv_btnms_get(lv_btnms_builtin_t style, lv_btnms_t * copy); +lv_style_t * lv_btnm_get_style_btn(lv_obj_t * btnm, lv_btn_state_t state); /********************** * MACROS diff --git a/lv_objx/lv_cb.c b/lv_objx/lv_cb.c index af30f5017..9a46a6fac 100644 --- a/lv_objx/lv_cb.c +++ b/lv_objx/lv_cb.c @@ -23,12 +23,10 @@ * STATIC PROTOTYPES **********************/ static bool lv_cb_design(lv_obj_t * cb, const area_t * mask, lv_design_mode_t mode); -static void lv_cbs_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_cbs_t lv_cbs_def; static lv_design_f_t ancestor_design_f; /********************** * MACROS @@ -66,17 +64,22 @@ lv_obj_t * lv_cb_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new checkbox object*/ if(copy == NULL) { - lv_rect_set_layout(new_cb, LV_RECT_LAYOUT_ROW_M); - lv_rect_set_fit(new_cb, true, true); + ext->bullet = lv_btn_create(new_cb, NULL); + lv_btn_set_styles(new_cb, lv_style_get(LV_STYLE_TRANSP, NULL), lv_style_get(LV_STYLE_TRANSP, NULL), + lv_style_get(LV_STYLE_TRANSP, NULL), lv_style_get(LV_STYLE_TRANSP, NULL), + lv_style_get(LV_STYLE_TRANSP, NULL)); + lv_cont_set_layout(new_cb, LV_CONT_LAYOUT_ROW_M); + lv_cont_set_fit(new_cb, true, true); lv_btn_set_tgl(new_cb, true); - ext->bullet = lv_btn_create(new_cb, NULL); lv_obj_set_click(ext->bullet, false); + lv_btn_set_styles(ext->bullet, lv_style_get(LV_STYLE_PRETTY, NULL), lv_style_get(LV_STYLE_PRETTY_COLOR, NULL), + lv_style_get(LV_STYLE_BTN_TREL, NULL), lv_style_get(LV_STYLE_BTN_TPR, NULL), + lv_style_get(LV_STYLE_BTN_INA, NULL)); ext->label = lv_label_create(new_cb, NULL); + lv_obj_set_style(ext->label, NULL); /*Inherit the style of the parent*/ lv_label_set_text(ext->label, "Check box"); - - lv_obj_set_style(new_cb, lv_cbs_get(LV_CBS_DEF, NULL)); } else { lv_cb_ext_t * copy_ext = lv_obj_get_ext(copy); ext->bullet = lv_btn_create(new_cb, copy_ext->bullet); @@ -85,8 +88,6 @@ lv_obj_t * lv_cb_create(lv_obj_t * par, lv_obj_t * copy) /*Refresh the style with new signal function*/ lv_obj_refr_style(new_cb); } - - lv_obj_align_us(new_cb, NULL, LV_ALIGN_CENTER, 0, 0); return new_cb; } @@ -106,29 +107,19 @@ bool lv_cb_signal(lv_obj_t * cb, lv_signal_t sign, void * param) valid = lv_btn_signal(cb, sign, param); lv_cb_ext_t * ext = lv_obj_get_ext(cb); - lv_cbs_t * cbs = lv_obj_get_style(cb); + lv_style_t * style = lv_obj_get_style(cb); /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { - switch(sign) { - case LV_SIGNAL_PRESSED: - case LV_SIGNAL_RELEASED: - case LV_SIGNAL_LONG_PRESS: - case LV_SIGNAL_PRESS_LOST: - lv_btn_set_state(ext->bullet, lv_btn_get_state(cb)); - break; - case LV_SIGNAL_STYLE_CHG: - lv_obj_set_size(ext->bullet, cbs->bullet_size, cbs->bullet_size); - lv_obj_set_style(ext->bullet, &cbs->bullet); - lv_obj_set_style(ext->label, &cbs->label); - break; - case LV_SIGNAL_CLEANUP: - /*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/ - break; - default: - break; + if(sign == LV_SIGNAL_STYLE_CHG) { + lv_obj_set_size(ext->bullet, font_get_height(style->font), font_get_height(style->font)); } + if(sign == LV_SIGNAL_PRESSED || + sign == LV_SIGNAL_RELEASED || + sign == LV_SIGNAL_PRESS_LOST) { + lv_btn_set_state(lv_cb_get_bullet(cb), lv_btn_get_state(cb)); + } } return valid; @@ -167,38 +158,16 @@ const char * lv_cb_get_text(lv_obj_t * cb) } /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_cbs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_cbs_t style + * Get the bullet (lv_btn) of a check box + * @param cb pointer to check box object + * @return pointer to the bullet of the check box (lv_btn) */ -lv_cbs_t * lv_cbs_get(lv_cbs_builtin_t style, lv_cbs_t * copy) +lv_obj_t * lv_cb_get_bullet(lv_obj_t * cb) { - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_cbs_init(); - style_inited = true; - } - - lv_cbs_t *style_p; - - switch(style) { - case LV_CBS_DEF: - style_p = &lv_cbs_def; - break; - default: - style_p = &lv_cbs_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_cbs_t)); - else memcpy(copy, &lv_cbs_def, sizeof(lv_cbs_t)); - } - - return style_p; + lv_cb_ext_t * ext = lv_obj_get_ext(cb); + return ext->bullet; } + /********************** * STATIC FUNCTIONS **********************/ @@ -234,61 +203,4 @@ static bool lv_cb_design(lv_obj_t * cb, const area_t * mask, lv_design_mode_t mo return true; } -/** - * Initialize the rectangle styles - */ -static void lv_cbs_init(void) -{ - /*Default style*/ - - /*Bg style*/ - lv_btns_get(LV_RECTS_TRANSP, &lv_cbs_def.bg); - lv_cbs_def.bg.rects.hpad = 6 * LV_DOWNSCALE; - lv_cbs_def.bg.rects.vpad = 6 * LV_DOWNSCALE; - lv_cbs_def.bg.rects.opad = 5 * LV_DOWNSCALE; - - /*Bullet style*/ - lv_btns_get(LV_BTNS_DEF, &lv_cbs_def.bullet); - - lv_cbs_def.bullet.mcolor[LV_BTN_STATE_REL] = COLOR_WHITE; - lv_cbs_def.bullet.gcolor[LV_BTN_STATE_REL] = COLOR_SILVER; - lv_cbs_def.bullet.bcolor[LV_BTN_STATE_REL] = COLOR_BLACK; - lv_cbs_def.bullet.flags[LV_BTN_STATE_REL].light_en = 0; - - lv_cbs_def.bullet.mcolor[LV_BTN_STATE_PR] = COLOR_SILVER; - lv_cbs_def.bullet.gcolor[LV_BTN_STATE_PR] = COLOR_GRAY; - lv_cbs_def.bullet.bcolor[LV_BTN_STATE_PR] = COLOR_BLACK; - lv_cbs_def.bullet.flags[LV_BTN_STATE_PR].light_en = 0; - - lv_cbs_def.bullet.mcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_cbs_def.bullet.gcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x10, 0x20, 0x30); - lv_cbs_def.bullet.bcolor[LV_BTN_STATE_TGL_REL] = COLOR_WHITE; - lv_cbs_def.bullet.flags[LV_BTN_STATE_TGL_REL].light_en = 1; - - lv_cbs_def.bullet.mcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x50, 0x70, 0x90); - lv_cbs_def.bullet.gcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_cbs_def.bullet.bcolor[LV_BTN_STATE_TGL_PR] = COLOR_WHITE; - lv_cbs_def.bullet.flags[LV_BTN_STATE_TGL_PR].light_en = 1; - - lv_cbs_def.bullet.mcolor[LV_BTN_STATE_INA] = COLOR_SILVER; - lv_cbs_def.bullet.gcolor[LV_BTN_STATE_INA] = COLOR_GRAY; - lv_cbs_def.bullet.bcolor[LV_BTN_STATE_INA] = COLOR_WHITE; - lv_cbs_def.bullet.flags[LV_BTN_STATE_INA].light_en = 0; - - lv_cbs_def.bullet.rects.bwidth = 2 * LV_DOWNSCALE; - lv_cbs_def.bullet.rects.bopa = 70; - lv_cbs_def.bullet.rects.light = 6 * LV_DOWNSCALE; - lv_cbs_def.bullet.rects.empty = 0; - lv_cbs_def.bullet.rects.round = LV_OBJ_DEF_WIDTH / 3 / 4; - lv_cbs_def.bullet.rects.hpad = 0 * LV_DOWNSCALE; - lv_cbs_def.bullet.rects.vpad = 0 * LV_DOWNSCALE; - lv_cbs_def.bullet.rects.opad = 0 * LV_DOWNSCALE; - - /*Label*/ - lv_labels_get(LV_LABELS_TXT, &lv_cbs_def.label); - lv_cbs_def.label.objs.color = COLOR_MAKE(0x10, 0x18, 0x20); - - /*Others*/ - lv_cbs_def.bullet_size = LV_OBJ_DEF_WIDTH / 3; -} #endif diff --git a/lv_objx/lv_cb.h b/lv_objx/lv_cb.h index 524a9216b..e1d169b3a 100644 --- a/lv_objx/lv_cb.h +++ b/lv_objx/lv_cb.h @@ -11,9 +11,10 @@ *********************/ #include "lv_conf.h" #if USE_LV_CB != 0 + /*Testing of dependencies*/ #if USE_LV_BTN == 0 -#error "lv_cb: lv_rect is required. Enable it in lv_conf.h (USE_LV_BTN 1) " +#error "lv_cb: lv_btn is required. Enable it in lv_conf.h (USE_LV_BTN 1) " #endif #if USE_LV_LABEL == 0 @@ -37,26 +38,10 @@ typedef struct { lv_btn_ext_t bg_btn; /*Ext. of ancestor*/ /*New data for this type */ - lv_obj_t * bullet; - lv_obj_t * label; + lv_obj_t * bullet; /*Pointer to button*/ + lv_obj_t * label; /*Pointer to label*/ }lv_cb_ext_t; -/*Style of check box*/ -typedef struct -{ - lv_btns_t bg; /*Style of ancestor*/ - /*New style element for this type */ - lv_btns_t bullet; - lv_labels_t label; - cord_t bullet_size; -}lv_cbs_t; - -/*Built-in styles of check box*/ -typedef enum -{ - LV_CBS_DEF, -}lv_cbs_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -92,12 +77,11 @@ void lv_cb_set_text(lv_obj_t * cb, const char * txt); const char * lv_cb_get_text(lv_obj_t * cb); /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_cbs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_cbs_t style + * Get the bullet (lv_btn) of a check box + * @param cb pointer to check box object + * @return pointer to the bullet of the check box (lv_btn) */ -lv_cbs_t * lv_cbs_get(lv_cbs_builtin_t style, lv_cbs_t * copy); +lv_obj_t * lv_cb_get_bullet(lv_obj_t * cb); /********************** * MACROS diff --git a/lv_objx/lv_chart.c b/lv_objx/lv_chart.c index c42d109cc..e3d18f2df 100644 --- a/lv_objx/lv_chart.c +++ b/lv_objx/lv_chart.c @@ -29,7 +29,6 @@ * STATIC PROTOTYPES **********************/ static bool lv_chart_design(lv_obj_t * chart, const area_t * mask, lv_design_mode_t mode); -static void lv_charts_init(void); static void lv_chart_draw_div(lv_obj_t * chart, const area_t * mask); static void lv_chart_draw_lines(lv_obj_t * chart, const area_t * mask); static void lv_chart_draw_points(lv_obj_t * chart, const area_t * mask); @@ -39,8 +38,6 @@ static void lv_chart_draw_cols(lv_obj_t * chart, const area_t * mask); /********************** * STATIC VARIABLES **********************/ -static lv_charts_t lv_charts_def; -static lv_charts_t lv_charts_transp; static lv_design_f_t ancestor_design_f; /********************** @@ -64,13 +61,13 @@ static lv_design_f_t ancestor_design_f; lv_obj_t * lv_chart_create(lv_obj_t * par, lv_obj_t * copy) { /*Create the ancestor basic object*/ - lv_obj_t * new_chart = lv_rect_create(par, copy); + lv_obj_t * new_chart = lv_obj_create(par, copy); dm_assert(new_chart); /*Allocate the object type specific extended data*/ lv_chart_ext_t * ext = lv_obj_alloc_ext(new_chart, sizeof(lv_chart_ext_t)); dm_assert(ext); - ll_init(&ext->dl_ll, sizeof(cord_t *)); + ll_init(&ext->dl_ll, sizeof(lv_chart_dl_t)); ext->dl_num = 0; ext->ymin = LV_CHART_YMIN_DEF; ext->ymax = LV_CHART_YMAX_DEF; @@ -78,6 +75,9 @@ lv_obj_t * lv_chart_create(lv_obj_t * par, lv_obj_t * copy) ext->vdiv_num = LV_CHART_VDIV_DEF; ext->pnum = LV_CHART_PNUM_DEF; ext->type = LV_CHART_LINE; + ext->dl_opa = OPA_COVER; + ext->dl_dark = OPA_50; + ext->dl_width = 2 * LV_DOWNSCALE; if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_chart); @@ -86,7 +86,7 @@ lv_obj_t * lv_chart_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new chart background object*/ if(copy == NULL) { - lv_obj_set_style(new_chart, lv_charts_get(LV_CHARTS_DEF, NULL)); + lv_obj_set_style(new_chart, lv_style_get(LV_STYLE_PRETTY, NULL)); } else { lv_chart_ext_t * ext_copy = lv_obj_get_ext(copy); ext->type = ext_copy->type; @@ -95,6 +95,7 @@ lv_obj_t * lv_chart_create(lv_obj_t * par, lv_obj_t * copy) ext->hdiv_num = ext_copy->hdiv_num; ext->vdiv_num = ext_copy->vdiv_num; ext->pnum = ext_copy->pnum; + ext->dl_opa = ext_copy->dl_opa; /*Refresh the style with new signal function*/ lv_obj_refr_style(new_chart); @@ -114,24 +115,18 @@ bool lv_chart_signal(lv_obj_t * chart, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_rect_signal(chart, sign, param); + valid = lv_obj_signal(chart, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { cord_t ** datal; lv_chart_ext_t * ext = lv_obj_get_ext(chart); - switch(sign) { - case LV_SIGNAL_CLEANUP: - LL_READ(ext->dl_ll, datal) { - dm_free(*datal); - } - - ll_clear(&ext->dl_ll); - - break; - default: - break; + if(sign == LV_SIGNAL_CLEANUP) { + LL_READ(ext->dl_ll, datal) { + dm_free(*datal); + } + ll_clear(&ext->dl_ll); } } @@ -141,20 +136,23 @@ bool lv_chart_signal(lv_obj_t * chart, lv_signal_t sign, void * param) /** * Allocate and add a data line to the chart * @param chart pointer to a chart object - * @return pointer to the allocated data lie (an array for the data points) + * @param color color of the data line + * @return pointer to the allocated data line ( */ -cord_t * lv_chart_add_dataline(lv_obj_t * chart) +lv_chart_dl_t * lv_chart_add_data_line(lv_obj_t * chart, color_t color) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - cord_t ** dl = ll_ins_head(&ext->dl_ll); - cord_t def = (ext->ymax - ext->ymin) >> 2; /*1/4 range as default value*/ + lv_chart_dl_t * dl = ll_ins_head(&ext->dl_ll); + cord_t def = (ext->ymin + ext->ymax) >> 1; /*half range as default value*/ if(dl == NULL) return NULL; - *dl = dm_alloc(sizeof(cord_t) * ext->pnum); + dl->color = color; + + dl->points = dm_alloc(sizeof(cord_t) * ext->pnum); uint16_t i; - cord_t * p_tmp = *dl; + cord_t * p_tmp = dl->points; for(i = 0; i < ext->pnum; i++) { *p_tmp = def; p_tmp++; @@ -162,7 +160,7 @@ cord_t * lv_chart_add_dataline(lv_obj_t * chart) ext->dl_num++; - return *dl; + return dl; } /** @@ -232,38 +230,72 @@ void lv_chart_set_type(lv_obj_t * chart, lv_chart_type_t type) void lv_chart_set_pnum(lv_obj_t * chart, uint16_t pnum) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - cord_t ** y_data; + lv_chart_dl_t * dl; if(pnum < 1) pnum = 1; - LL_READ_BACK(ext->dl_ll, y_data) { - *y_data = dm_realloc(*y_data, sizeof(cord_t) * pnum); + LL_READ_BACK(ext->dl_ll, dl) { + dl->points = dm_realloc(dl->points, sizeof(cord_t) * pnum); } ext->pnum = pnum; lv_chart_refr(chart); } +/** + * Set the opacity of the data lines + * @param chart pointer to chart object + * @param opa opacity of the data lines + */ +void lv_chart_set_dl_opa(lv_obj_t * chart, opa_t opa) +{ + lv_chart_ext_t * ext = lv_obj_get_ext(chart); + ext->dl_opa = opa; + lv_obj_inv(chart); +} + +/** + * Set the line width or point radius of the data lines + * @param chart pointer to chart object + * @param width the new width + */ +void lv_chart_set_dl_width(lv_obj_t * chart, cord_t width) +{ + lv_chart_ext_t * ext = lv_obj_get_ext(chart); + ext->dl_width = width; + lv_obj_inv(chart); +} +/** + * Set the dark effect on the bottom of the points or columns + * @param chart pointer to chart object + * @param dark_eff dark effect level (OPA_TRANSP to turn off) + */ +void lv_chart_set_dl_dark(lv_obj_t * chart, opa_t dark_eff) +{ + lv_chart_ext_t * ext = lv_obj_get_ext(chart); + ext->dl_dark = dark_eff; +} /** * Shift all data right and set the most right data on a data line * @param chart pointer to chart object * @param dl pointer to a data line on 'chart' * @param y the new value of the most right data */ -void lv_chart_set_next(lv_obj_t * chart, cord_t * dl, cord_t y) +void lv_chart_set_next(lv_obj_t * chart, lv_chart_dl_t * dl, cord_t y) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); uint16_t i; for(i = 0; i < ext->pnum - 1; i++) { - dl[i] = dl[i + 1]; + dl->points[i] = dl->points[i + 1]; } - dl[ext->pnum - 1] = y; + dl->points[ext->pnum - 1] = y; lv_chart_refr(chart); } + /*===================== * Getter functions *====================*/ @@ -293,42 +325,37 @@ uint16_t lv_chart_get_pnum(lv_obj_t * chart) } /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_charts_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_charts_t style + * Get the opacity of the data lines + * @param chart pointer to chart object + * @return the opacity of the data lines */ -lv_charts_t * lv_charts_get(lv_charts_builtin_t style, lv_charts_t * copy) +opa_t lv_chart_get_dl_opa(lv_obj_t * chart) { - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_charts_init(); - style_inited = true; - } - - lv_charts_t * style_p; - - switch(style) { - case LV_CHARTS_DEF: - style_p = &lv_charts_def; - break; - case LV_CHARTS_TRANSP: - style_p = &lv_charts_transp; - break; - default: - style_p = &lv_charts_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_charts_t)); - else memcpy(copy, &lv_charts_def, sizeof(lv_charts_t)); - } - - return style_p; + lv_chart_ext_t * ext = lv_obj_get_ext(chart); + return ext->dl_opa; } +/** + * Get the data line width + * @param chart pointer to chart object + * @return the width the data lines (lines or points) + */ +cord_t lv_chart_get_dl_width(lv_obj_t * chart) +{ + lv_chart_ext_t * ext = lv_obj_get_ext(chart); + return ext->dl_width; +} + +/** + * Get the dark effect level on the bottom of the points or columns + * @param chart pointer to chart object + * @return dark effect level (OPA_TRANSP to turn off) + */ +opa_t lv_chart_get_dl_dark(lv_obj_t * chart, opa_t dark_eff) +{ + lv_chart_ext_t * ext = lv_obj_get_ext(chart); + return ext->dl_dark; +} /********************** * STATIC FUNCTIONS **********************/ @@ -350,28 +377,16 @@ static bool lv_chart_design(lv_obj_t * chart, const area_t * mask, lv_design_mod /*Return false if the object is not covers the mask_p area*/ return ancestor_design_f(chart, mask, mode); } else if(mode == LV_DESIGN_DRAW_MAIN) { - /*Draw the rectangle ancient*/ - ancestor_design_f(chart, mask, mode); - - /*Draw the object*/ + /*Draw the background*/ + lv_draw_rect(&chart->cords, mask, lv_obj_get_style(chart)); lv_chart_ext_t * ext = lv_obj_get_ext(chart); lv_chart_draw_div(chart, mask); - switch(ext->type) { - case LV_CHART_LINE: - lv_chart_draw_lines(chart, mask); - break; - case LV_CHART_COL: - lv_chart_draw_cols(chart, mask); - break; - case LV_CHART_POINT: - lv_chart_draw_points(chart, mask); - break; - default: - break; - } + if(ext->type & LV_CHART_LINE) lv_chart_draw_lines(chart, mask); + if(ext->type & LV_CHART_COL) lv_chart_draw_cols(chart, mask); + if(ext->type & LV_CHART_POINT) lv_chart_draw_points(chart, mask); } return true; } @@ -384,34 +399,61 @@ static bool lv_chart_design(lv_obj_t * chart, const area_t * mask, lv_design_mod static void lv_chart_draw_div(lv_obj_t * chart, const area_t * mask) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - lv_charts_t * style = lv_obj_get_style(chart); - - if(style->div_lines.objs.transp != 0) return; + lv_style_t * style = lv_obj_get_style(chart); uint8_t div_i; + uint8_t div_i_end; + uint8_t div_i_start; point_t p1; point_t p2; cord_t w = lv_obj_get_width(chart); cord_t h = lv_obj_get_height(chart); - opa_t div_opa = (uint16_t)lv_obj_get_opa(chart) * style->div_line_opa / 100; cord_t x_ofs = chart->cords.x1; cord_t y_ofs = chart->cords.y1; - p1.x = 0 + x_ofs; - p2.x = w + x_ofs; - for(div_i = 1; div_i <= ext->hdiv_num; div_i ++) { - p1.y = (int32_t)((int32_t)h * div_i) / (ext->hdiv_num + 1); - p1.y += y_ofs; - p2.y = p1.y; - lv_draw_line(&p1, &p2, mask, &style->div_lines, div_opa); + + if(ext->hdiv_num != 0) { + /*Draw slide lines if no border*/ + if(style->bwidth != 0) { + div_i_start = 1; + div_i_end = ext->hdiv_num; + } else { + div_i_start = 0; + div_i_end = ext->hdiv_num + 1; + } + + p1.x = 0 + x_ofs; + p2.x = w + x_ofs; + for(div_i = div_i_start; div_i <= div_i_end; div_i++) { + p1.y = (int32_t)((int32_t)h * div_i) / (ext->hdiv_num + 1); + p1.y += y_ofs; + if(div_i == div_i_start) p1.y += (style->line_width >> 1) + 1; /*The first line might not be visible*/ + if(div_i == div_i_end) p1.y -= (style->line_width >> 1) + 1; /*The last line might not be visible*/ + + p2.y = p1.y; + lv_draw_line(&p1, &p2, mask, style); + } } - p1.y = 0 + y_ofs; - p2.y = h + y_ofs; - for(div_i = 1; div_i <= ext->vdiv_num; div_i ++) { - p1.x = (int32_t)((int32_t)w * div_i) / (ext->vdiv_num + 1); - p1.x += x_ofs; - p2.x = p1.x; - lv_draw_line(&p1, &p2, mask, &style->div_lines, div_opa); + if(ext->vdiv_num != 0) { + /*Draw slide lines if no border*/ + if(style->bwidth != 0) { + div_i_start = 1; + div_i_end = ext->vdiv_num; + } else { + div_i_start = 0; + div_i_end = ext->vdiv_num + 1; + } + + p1.y = 0 + y_ofs; + p2.y = h + y_ofs; + for(div_i = div_i_start; div_i <= div_i_end; div_i ++) { + p1.x = (int32_t)((int32_t)w * div_i) / (ext->vdiv_num + 1); + p1.x += x_ofs; + if(div_i == div_i_start) p1.x += (style->line_width >> 1) + 1; /*The first line might not be visible*/ + if(div_i == div_i_end) p1.x -= (style->line_width >> 1) + 1; /*The last line might not be visible*/ + p2.x = p1.x; + lv_draw_line(&p1, &p2, mask, style); + } } } @@ -422,30 +464,29 @@ static void lv_chart_draw_div(lv_obj_t * chart, const area_t * mask) static void lv_chart_draw_lines(lv_obj_t * chart, const area_t * mask) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - lv_charts_t * style_p = lv_obj_get_style(chart); + lv_style_t * style = lv_obj_get_style(chart); uint8_t i; point_t p1; point_t p2; cord_t w = lv_obj_get_width(chart); cord_t h = lv_obj_get_height(chart); - opa_t opa = (uint16_t)lv_obj_get_opa(chart) * style_p->data_opa / 100; cord_t x_ofs = chart->cords.x1; cord_t y_ofs = chart->cords.y1; int32_t y_tmp; - cord_t ** y_data; - uint8_t dl_cnt = 0; - lv_lines_t lines; - lv_lines_get(LV_LINES_CHART, &lines); + lv_chart_dl_t * dl; + lv_style_t lines; + lv_style_get(LV_STYLE_PLAIN, &lines); + lines.opa = (uint16_t)((uint16_t)style->opa * ext->dl_opa) >> 8; + lines.line_width = ext->dl_width; /*Go through all data lines*/ - LL_READ_BACK(ext->dl_ll, y_data) { - lines.objs.color = style_p->color[dl_cnt]; - lines.width = style_p->width; + LL_READ_BACK(ext->dl_ll, dl) { + lines.ccolor = dl->color; p1.x = 0 + x_ofs; p2.x = 0 + x_ofs; - y_tmp = (int32_t)((int32_t) (*y_data)[0] - ext->ymin) * h; + y_tmp = (int32_t)((int32_t) dl->points[0] - ext->ymin) * h; y_tmp = y_tmp / (ext->ymax - ext->ymin); p2.y = h - y_tmp + y_ofs; @@ -455,13 +496,12 @@ static void lv_chart_draw_lines(lv_obj_t * chart, const area_t * mask) p2.x = ((w * i) / (ext->pnum - 1)) + x_ofs; - y_tmp = (int32_t)((int32_t) (*y_data)[i] - ext->ymin) * h; + y_tmp = (int32_t)((int32_t) dl->points[i] - ext->ymin) * h; y_tmp = y_tmp / (ext->ymax - ext->ymin); p2.y = h - y_tmp + y_ofs; - lv_draw_line(&p1, &p2, mask, &lines, opa); + lv_draw_line(&p1, &p2, mask, &lines); } - dl_cnt++; } } @@ -473,43 +513,43 @@ static void lv_chart_draw_lines(lv_obj_t * chart, const area_t * mask) static void lv_chart_draw_points(lv_obj_t * chart, const area_t * mask) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - lv_charts_t * style_p = lv_obj_get_style(chart); + lv_style_t * style = lv_obj_get_style(chart); uint8_t i; area_t cir_a; cord_t w = lv_obj_get_width(chart); cord_t h = lv_obj_get_height(chart); - opa_t opa = (uint16_t)lv_obj_get_opa(chart) * style_p->data_opa / 100; cord_t x_ofs = chart->cords.x1; cord_t y_ofs = chart->cords.y1; int32_t y_tmp; - cord_t ** y_data; - uint8_t dl_cnt = 0; - lv_rects_t rects; - cord_t rad = style_p->width; + lv_chart_dl_t * dl; + uint8_t dl_cnt = 0; + lv_style_t style_point; + lv_style_get(LV_STYLE_PLAIN, &style_point); - lv_rects_get(LV_RECTS_DEF, &rects); - rects.bwidth = 0; - rects.empty = 0; - rects.round = LV_RECT_CIRCLE; + style_point.bwidth = 0; + style_point.empty = 0; + style_point.radius = LV_RADIUS_CIRCLE; + style_point.opa = (uint16_t)((uint16_t)style->opa * ext->dl_opa) >> 8; + style_point.radius = ext->dl_width; /*Go through all data lines*/ - LL_READ_BACK(ext->dl_ll, y_data) { - rects.objs.color = style_p->color[dl_cnt]; - rects.gcolor = color_mix(COLOR_BLACK, style_p->color[dl_cnt], style_p->dark_eff); + LL_READ_BACK(ext->dl_ll, dl) { + style_point.mcolor = dl->color; + style_point.gcolor = color_mix(COLOR_BLACK, dl->color, ext->dl_dark); for(i = 0; i < ext->pnum; i ++) { cir_a.x1 = ((w * i) / (ext->pnum - 1)) + x_ofs; - cir_a.x2 = cir_a.x1 + rad; - cir_a.x1 -= rad; + cir_a.x2 = cir_a.x1 + style_point.radius; + cir_a.x1 -= style_point.radius; - y_tmp = (int32_t)((int32_t) (*y_data)[i] - ext->ymin) * h; + y_tmp = (int32_t)((int32_t) dl->points[i] - ext->ymin) * h; y_tmp = y_tmp / (ext->ymax - ext->ymin); cir_a.y1 = h - y_tmp + y_ofs; - cir_a.y2 = cir_a.y1 + rad; - cir_a.y1 -= rad; + cir_a.y2 = cir_a.y1 + style_point.radius; + cir_a.y1 -= style_point.radius; - lv_draw_rect(&cir_a, mask, &rects, opa); + lv_draw_rect(&cir_a, mask, &style_point); } dl_cnt++; } @@ -523,7 +563,7 @@ static void lv_chart_draw_points(lv_obj_t * chart, const area_t * mask) static void lv_chart_draw_cols(lv_obj_t * chart, const area_t * mask) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - lv_charts_t * style_p = lv_obj_get_style(chart); + lv_style_t * style = lv_obj_get_style(chart); uint8_t i; area_t col_a; @@ -531,89 +571,44 @@ static void lv_chart_draw_cols(lv_obj_t * chart, const area_t * mask) bool mask_ret; cord_t w = lv_obj_get_width(chart); cord_t h = lv_obj_get_height(chart); - opa_t opa = (uint16_t)lv_obj_get_opa(chart) * style_p->data_opa / 100; int32_t y_tmp; - cord_t ** y_data; - uint8_t dl_cnt = 0; - lv_rects_t rects; - cord_t col_w = w / (2 * ext->dl_num * ext->pnum); /* Suppose (2 * dl_num) * pnum columns*/ + lv_chart_dl_t * dl; + lv_style_t rects; + cord_t col_w = w / ((ext->dl_num + 1) * ext->pnum); /* Suppose + 1 dl as separator*/ cord_t x_ofs = col_w / 2; /*Shift with a half col.*/ - lv_rects_get(LV_RECTS_DEF, &rects); + + lv_style_get(LV_STYLE_PLAIN, &rects); rects.bwidth = 0; rects.empty = 0; - rects.round = 0; + rects.radius = 0; + rects.opa = (uint16_t)((uint16_t)style->opa * ext->dl_opa) >> 8; col_a.y2 = chart->cords.y2; - /*Go through all data lines*/ - LL_READ_BACK(ext->dl_ll, y_data) { - rects.objs.color = style_p->color[dl_cnt]; - rects.gcolor = color_mix(COLOR_BLACK, style_p->color[dl_cnt], style_p->dark_eff); + cord_t x_act; - for(i = 0; i < ext->pnum; i ++) { - /* Calculate the x coordinates. Suppose (2 * dl_num) * pnum columns and draw to every second - * the other columns will be spaces. - * col_w = w / (2 * ext->dl_num * ext->pnum) - * act_col_x = col_w * i * ext->dl_num * 2 + 2 * dl_cnt - * Reorder the operation to multiply first*/ + /*Go through all points*/ + for(i = 0; i < ext->pnum; i ++) { + x_act = (int32_t)((int32_t) w * i) / ext->pnum; + x_act += chart->cords.x1 + x_ofs; - col_a.x1 = (int32_t)((int32_t) w * ((i * ext->dl_num * 2) + (2 * dl_cnt))) / - (ext->pnum * 2 * ext->dl_num); - col_a.x1 += chart->cords.x1; - col_a.x2 = col_a.x1 + col_w; - col_a.x1 += x_ofs; - col_a.x2 += x_ofs; + /*Draw the current point of all data line*/ + LL_READ_BACK(ext->dl_ll, dl) { + rects.mcolor = dl->color; + rects.gcolor = color_mix(COLOR_BLACK, dl->color, ext->dl_dark); + col_a.x1 = x_act; + col_a.x2 = col_a.x1 + col_w; + x_act += col_w; + y_tmp = (int32_t)((int32_t) dl->points[i] - ext->ymin) * h; + y_tmp = y_tmp / (ext->ymax - ext->ymin); + col_a.y1 = h - y_tmp + chart->cords.y1; - y_tmp = (int32_t)((int32_t) (*y_data)[i] - ext->ymin) * h; - y_tmp = y_tmp / (ext->ymax - ext->ymin); - col_a.y1 = h - y_tmp + chart->cords.y1; - - mask_ret = area_union(&col_mask, mask, &col_a); - if(mask_ret != false) { - lv_draw_rect(&chart->cords, &col_mask, &rects, opa); - } - } - dl_cnt++; + mask_ret = area_union(&col_mask, mask, &col_a); + if(mask_ret != false) { + lv_draw_rect(&chart->cords, &col_mask, &rects); + } + } } } - -/** - * Initialize the chart styles - */ -static void lv_charts_init(void) -{ - /*Default style*/ - /* Background */ - lv_rects_get(LV_RECTS_DEF, &lv_charts_def.bg_rects); - lv_charts_def.bg_rects.objs.color = COLOR_MAKE(0x60, 0x80, 0xA0); - lv_charts_def.bg_rects.gcolor = COLOR_WHITE; - lv_charts_def.bg_rects.bcolor = COLOR_BLACK; - - /* Div. line */ - lv_lines_get(LV_LINES_DECOR, &lv_charts_def.div_lines); - lv_charts_def.div_lines.width = 1 * LV_DOWNSCALE; - lv_charts_def.div_lines.objs.color = COLOR_BLACK; - lv_charts_def.div_line_opa = OPA_COVER; - - /*Data lines*/ - lv_charts_def.width = 2 * LV_DOWNSCALE; - lv_charts_def.data_opa = 100; - lv_charts_def.dark_eff = 150; - lv_charts_def.color[0] = COLOR_RED; - lv_charts_def.color[1] = COLOR_GREEN; - lv_charts_def.color[2] = COLOR_BLUE; - lv_charts_def.color[3] = COLOR_MAGENTA; - lv_charts_def.color[4] = COLOR_CYAN; - lv_charts_def.color[5] = COLOR_YELLOW; - lv_charts_def.color[6] = COLOR_WHITE; - lv_charts_def.color[7] = COLOR_GRAY; - - - memcpy(&lv_charts_transp, &lv_charts_def, sizeof(lv_charts_t)); - lv_charts_transp.bg_rects.empty = 1; - lv_charts_transp.bg_rects.bwidth = 0; - lv_charts_transp.div_lines.objs.transp = 1; -} - #endif diff --git a/lv_objx/lv_chart.h b/lv_objx/lv_chart.h index d782dc81a..ab2f54762 100644 --- a/lv_objx/lv_chart.h +++ b/lv_objx/lv_chart.h @@ -3,8 +3,8 @@ * */ -#ifndef LV_CHARTBG_H -#define LV_CHARTBG_H +#ifndef LV_CHART_H +#define LV_CHART_H /********************* * INCLUDES @@ -12,69 +12,49 @@ #include "lv_conf.h" #if USE_LV_CHART != 0 -/*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_chart: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " -#endif - -#if USE_LV_LINE == 0 -#error "lv_chart: lv_line is required. Enable it in lv_conf.h (USE_LV_LINE 1) " -#endif - #include "../lv_obj/lv_obj.h" -#include "lv_rect.h" #include "lv_line.h" /********************* * DEFINES *********************/ -#define LV_CHART_DL_NUM 8 /*Max data line number. Used in the style.*/ /********************** * TYPEDEFS **********************/ -/*Data of chart background*/ typedef struct { - lv_rect_ext_t bg_rects; /*Ext. of ancestor*/ + cord_t * points; + color_t color; +}lv_chart_dl_t; + +/*Data of chart */ +typedef struct +{ + /*No inherited ext*/ /*Ext. of ancestor*/ /*New data for this type */ - cord_t ymin; - cord_t ymax; + ll_dsc_t dl_ll; /*Linked list for the data line pointers (stores lv_chart_dl_t)*/ + cord_t ymin; /*y min value (used to scale the data)*/ + cord_t ymax; /*y max value (used to scale the data)*/ uint8_t hdiv_num; /*Number of horizontal division lines*/ uint8_t vdiv_num; /*Number of vertical division lines*/ - ll_dsc_t dl_ll; /*Linked list for the data line pointers (stores cord_t * )*/ uint16_t pnum; /*Point number in a data line*/ - uint8_t type :2; /*Line, column or point chart (from 'lv_chart_type_t')*/ - uint8_t dl_num; /*Data line number in dl_ll*/ + cord_t dl_width; /*Line width or point radius*/ + uint8_t dl_num; /*Number of data lines in dl_ll*/ + opa_t dl_opa; /*Opacity of data lines*/ + opa_t dl_dark; /*Dark level of the point/column bottoms*/ + uint8_t type :3; /*Line, column or point chart (from 'lv_chart_type_t')*/ }lv_chart_ext_t; /*Chart types*/ typedef enum { - LV_CHART_LINE, - LV_CHART_COL, - LV_CHART_POINT, + LV_CHART_NONE = 0, + LV_CHART_LINE = 0x01, + LV_CHART_COL = 0x02, + LV_CHART_POINT = 0x04, }lv_chart_type_t; -/*Style of chart background*/ -typedef struct -{ - lv_rects_t bg_rects; /*Style of ancestor*/ - /*New style element for this type */ - lv_lines_t div_lines; - uint8_t div_line_opa; /*Percentage of obj. opacity*/ - color_t color[LV_CHART_DL_NUM]; /*Line/Point/Col color */ - uint16_t width; /*Line width or point radius*/ - opa_t data_opa; /*Line/Point/Col opacity in the percentage of obj. opacity*/ - uint8_t dark_eff; /*Dark effect on the bottom of ó points and columns*/ -}lv_charts_t; - -/*Built-in styles of chart background*/ -typedef enum -{ - LV_CHARTS_DEF, - LV_CHARTS_TRANSP, -}lv_charts_builtin_t; /********************** * GLOBAL PROTOTYPES @@ -99,9 +79,10 @@ bool lv_chart_signal(lv_obj_t * chart, lv_signal_t sign, void * param); /** * Allocate and add a data line to the chart * @param chart pointer to a chart object - * @return pointer to the allocated data lie (an array for the data points) + * @param color color of the data line + * @return pointer to the allocated data line ( */ -cord_t * lv_chart_add_dataline(lv_obj_t * chart); +lv_chart_dl_t * lv_chart_add_data_line(lv_obj_t * chart, color_t color); /** * Refresh a chart if its data line has changed @@ -141,13 +122,34 @@ void lv_chart_set_type(lv_obj_t * chart, lv_chart_type_t type); */ void lv_chart_set_pnum(lv_obj_t * chart, uint16_t pnum); +/** + * Set the opacity of the data lines + * @param chart pointer to chart object + * @param opa opacity of the data lines + */ +void lv_chart_set_dl_opa(lv_obj_t * chart, opa_t opa); + +/** + * Set the line width or point radius of the data lines + * @param chart pointer to chart object + * @param width the new width + */ +void lv_chart_set_dl_width(lv_obj_t * chart, cord_t width); + +/** + * Set the dark effect on the bottom of the points or columns + * @param chart pointer to chart object + * @param dark_eff dark effect level (OPA_TRANSP to turn off) + */ +void lv_chart_set_dl_dark(lv_obj_t * chart, opa_t dark_eff); + /** * Shift all data right and set the most right data on a data line * @param chart pointer to chart object * @param dl pointer to a data line on 'chart' * @param y the new value of the most right data */ -void lv_chart_set_next(lv_obj_t * chart, cord_t * dl, cord_t y); +void lv_chart_set_next(lv_obj_t * chart, lv_chart_dl_t * dl, cord_t y); /** * Get the type of a chart @@ -164,12 +166,25 @@ lv_chart_type_t lv_chart_get_type(lv_obj_t * chart); uint16_t lv_chart_get_pnum(lv_obj_t * chart); /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_charts_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_charts_t style + * Get the opacity of the data lines + * @param chart pointer to chart object + * @return the opacity of the data lines */ -lv_charts_t * lv_charts_get(lv_charts_builtin_t style, lv_charts_t * copy); +opa_t lv_chart_get_dl_opa(lv_obj_t * chart); + +/** + * Get the data line width + * @param chart pointer to chart object + * @return the width the data lines (lines or points) + */ +cord_t lv_chart_get_dl_width(lv_obj_t * chart); + +/** + * Get the dark effect level on the bottom of the points or columns + * @param chart pointer to chart object + * @return dark effect level (OPA_TRANSP to turn off) + */ +opa_t lv_chart_get_dl_dark(lv_obj_t * chart, opa_t dark_eff); /********************** * MACROS diff --git a/lv_objx/lv_cont.c b/lv_objx/lv_cont.c new file mode 100644 index 000000000..94fb6993e --- /dev/null +++ b/lv_objx/lv_cont.c @@ -0,0 +1,613 @@ +/** + * @file lv_rect.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" + +#if USE_LV_CONT != 0 + +#include +#include +#include + +#include "lv_cont.h" +#include "../lv_draw/lv_draw.h" +#include "../lv_draw/lv_draw_vbasic.h" +#include "misc/gfx/area.h" + +#include "misc/gfx/color.h" +#include "misc/math/math_base.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +#if 0 +static bool lv_cont_design(lv_obj_t * cont, const area_t * mask, lv_design_mode_t mode); +#endif + +static void lv_cont_refr_layout(lv_obj_t * cont); +static void lv_cont_layout_col(lv_obj_t * cont); +static void lv_cont_layout_row(lv_obj_t * cont); +static void lv_cont_layout_center(lv_obj_t * cont); +static void lv_cont_layout_pretty(lv_obj_t * cont); +static void lv_cont_layout_grid(lv_obj_t * cont); +static void lv_cont_refr_autofit(lv_obj_t * cont); + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/*----------------- + * Create function + *-----------------*/ + +/** + * Create a container objects + * @param par pointer to an object, it will be the parent of the new container + * @param copy pointer to a container object, if not NULL then the new object will be copied from it + * @return pointer to the created container + */ +lv_obj_t * lv_cont_create(lv_obj_t * par, lv_obj_t * copy) +{ + /*Create a basic object*/ + lv_obj_t * new_rect = lv_obj_create(par, copy); + dm_assert(new_rect); + lv_obj_alloc_ext(new_rect, sizeof(lv_cont_ext_t)); + lv_cont_ext_t * ext = lv_obj_get_ext(new_rect); + dm_assert(ext); + ext->hfit_en = 0; + ext->vfit_en = 0; + ext->layout = LV_CONT_LAYOUT_OFF; + + lv_obj_set_signal_f(new_rect, lv_cont_signal); + + /*Init the new container*/ + if(copy == NULL) { + lv_obj_set_style(new_rect, lv_style_get(LV_STYLE_PLAIN, NULL)); + } + /*Copy an existing object*/ + else { + lv_cont_ext_t * copy_ext = lv_obj_get_ext(copy); + ext->hfit_en = copy_ext->hfit_en; + ext->vfit_en = copy_ext->vfit_en; + ext->layout = copy_ext->layout; + + /*Refresh the style with new signal function*/ + lv_obj_refr_style(new_rect); + + } + + return new_rect; +} + +/** + * Signal function of the container + * @param cont pointer to a container object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + */ +bool lv_cont_signal(lv_obj_t * cont, lv_signal_t sign, void * param) +{ + bool valid; + + /* Include the ancient signal function */ + valid = lv_obj_signal(cont, sign, param); + + /* The object can be deleted so check its validity and then + * make the object specific signal handling */ + if(valid != false) { + switch(sign) { + case LV_SIGNAL_STYLE_CHG: /*Recalculate the padding if the style changed*/ + lv_cont_refr_layout(cont); + lv_cont_refr_autofit(cont); + break; + case LV_SIGNAL_CHILD_CHG: + lv_cont_refr_layout(cont); + lv_cont_refr_autofit(cont); + break; + case LV_SIGNAL_CORD_CHG: + if(lv_obj_get_width(cont) != area_get_width(param) || + lv_obj_get_height(cont) != area_get_height(param)) { + lv_cont_refr_layout(cont); + lv_cont_refr_autofit(cont); + } + break; + default: + break; + } + } + + return valid; +} + +/*===================== + * Setter functions + *====================*/ + +/** + * Set the layout on a container + * @param cont pointer to a container object + * @param layout a layout from 'lv_cont_layout_t' + */ +void lv_cont_set_layout(lv_obj_t * cont, lv_cont_layout_t layout) +{ + lv_cont_ext_t * ext = lv_obj_get_ext(cont); + ext->layout = layout; + + /*Send a signal to refresh the layout*/ + cont->signal_f(cont, LV_SIGNAL_CHILD_CHG, NULL); +} + + +/** + * Enable the horizontal or vertical fit. + * The container size will be set to involve the children horizontally or vertically. + * @param cont pointer to a container object + * @param hor_en true: enable the horizontal padding + * @param ver_en true: enable the vertical padding + */ +void lv_cont_set_fit(lv_obj_t * cont, bool hor_en, bool ver_en) +{ + lv_obj_inv(cont); + lv_cont_ext_t * ext = lv_obj_get_ext(cont); + ext->hfit_en = hor_en == false ? 0 : 1; + ext->vfit_en = ver_en == false ? 0 : 1; + + /*Send a signal to set a new size*/ + cont->signal_f(cont, LV_SIGNAL_CORD_CHG, cont); +} + +/*===================== + * Getter functions + *====================*/ + +/** + * Get the layout of a container + * @param cont pointer to container object + * @return the layout from 'lv_cont_layout_t' + */ +lv_cont_layout_t lv_cont_get_layout(lv_obj_t * cont) +{ + lv_cont_ext_t * ext = lv_obj_get_ext(cont); + return ext->layout; +} + +/** + * Get horizontal fit enable attribute of a container + * @param cont pointer to a container object + * @return true: horizontal padding is enabled + */ +bool lv_cont_get_hfit(lv_obj_t * cont) +{ + lv_cont_ext_t * ext = lv_obj_get_ext(cont); + return ext->hfit_en == 0 ? false : true; +} + +/** + * Get vertical fit enable attribute of a container + * @param cont pointer to a container object + * @return true: vertical padding is enabled + */ +bool lv_cont_get_vfit(lv_obj_t * cont) +{ + lv_cont_ext_t * ext = lv_obj_get_ext(cont); + return ext->vfit_en == 0 ? false : true; +} + + +/********************** + * STATIC FUNCTIONS + **********************/ +#if 0 +/** + * Handle the drawing related tasks of the containers + * @param cont pointer to an object + * @param mask the object will be drawn only in this area + * @param mode LV_DESIGN_COVER_CHK: only check if the object fully covers the 'mask_p' area + * (return 'true' if yes) + * LV_DESIGN_DRAW: draw the object (always return 'true') + * LV_DESIGN_DRAW_POST: drawing after every children are drawn + * @param return true/false, depends on 'mode' + */ +static bool lv_cont_design(lv_obj_t * cont, const area_t * mask, lv_design_mode_t mode) +{ + if(mode == LV_DESIGN_COVER_CHK) { + + return false; + } else if(mode == LV_DESIGN_DRAW_MAIN) { + + + } else if(mode == LV_DESIGN_DRAW_POST) { + + } + return true; +} +#endif + + +/** + * Refresh the layout of a container + * @param cont pointer to an object which layout should be refreshed + */ +static void lv_cont_refr_layout(lv_obj_t * cont) +{ + lv_cont_layout_t type = lv_cont_get_layout(cont); + + /*'rect' has to be at least 1 child*/ + if(lv_obj_get_child(cont, NULL) == NULL) return; + + if(type == LV_CONT_LAYOUT_OFF) return; + + if(type == LV_CONT_LAYOUT_CENTER) { + lv_cont_layout_center(cont); + } else if(type == LV_CONT_LAYOUT_COL_L || type == LV_CONT_LAYOUT_COL_M || type == LV_CONT_LAYOUT_COL_R) { + lv_cont_layout_col(cont); + } else if(type == LV_CONT_LAYOUT_ROW_T || type == LV_CONT_LAYOUT_ROW_M || type == LV_CONT_LAYOUT_ROW_B) { + lv_cont_layout_row(cont); + } else if(type == LV_CONT_LAYOUT_PRETTY) { + lv_cont_layout_pretty(cont); + } else if(type == LV_CONT_LAYOUT_GRID) { + lv_cont_layout_grid(cont); + } +} + +/** + * Handle column type layouts + * @param cont pointer to an object which layout should be handled + */ +static void lv_cont_layout_col(lv_obj_t * cont) +{ + lv_cont_layout_t type = lv_cont_get_layout(cont); + lv_obj_t * child; + + /*Adjust margin and get the alignment type*/ + lv_align_t align; + lv_style_t * style = lv_obj_get_style(cont); + cord_t hpad_corr; + + switch(type) { + case LV_CONT_LAYOUT_COL_L: + hpad_corr = style->hpad; + align = LV_ALIGN_IN_TOP_LEFT; + break; + case LV_CONT_LAYOUT_COL_M: + hpad_corr = 0; + align = LV_ALIGN_IN_TOP_MID; + break; + case LV_CONT_LAYOUT_COL_R: + hpad_corr = -style->hpad; + align = LV_ALIGN_IN_TOP_RIGHT; + break; + default: + hpad_corr = 0; + align = LV_ALIGN_IN_TOP_LEFT; + break; + } + + /* Disable child change action because the children will be moved a lot + * an unnecessary child change signals could be sent*/ + lv_obj_set_protect(cont, LV_PROTECT_CHILD_CHG); + /* Align the children */ + cord_t last_cord = style->vpad; + LL_READ_BACK(cont->child_ll, child) { + if(lv_obj_get_hidden(child) != false || + lv_obj_is_protected(child, LV_PROTECT_POS) != false) continue; + + lv_obj_align(child, cont, align, hpad_corr , last_cord); + last_cord += lv_obj_get_height(child) + style->opad; + } + + lv_obj_clr_protect(cont, LV_PROTECT_CHILD_CHG); +} + +/** + * Handle row type layouts + * @param cont pointer to an object which layout should be handled + */ +static void lv_cont_layout_row(lv_obj_t * cont) +{ + lv_cont_layout_t type = lv_cont_get_layout(cont); + lv_obj_t * child; + + /*Adjust margin and get the alignment type*/ + lv_align_t align; + lv_style_t * style = lv_obj_get_style(cont); + cord_t vpad_corr = style->vpad; + + switch(type) { + case LV_CONT_LAYOUT_ROW_T: + vpad_corr = style->vpad; + align = LV_ALIGN_IN_TOP_LEFT; + break; + case LV_CONT_LAYOUT_ROW_M: + vpad_corr = 0; + align = LV_ALIGN_IN_LEFT_MID; + break; + case LV_CONT_LAYOUT_ROW_B: + vpad_corr = -style->vpad; + align = LV_ALIGN_IN_BOTTOM_LEFT; + break; + default: + vpad_corr = 0; + align = LV_ALIGN_IN_TOP_LEFT; + break; + } + + /* Disable child change action because the children will be moved a lot + * an unnecessary child change signals could be sent*/ + lv_obj_set_protect(cont, LV_PROTECT_CHILD_CHG); + + /* Align the children */ + cord_t last_cord = style->hpad; + LL_READ_BACK(cont->child_ll, child) { + if(lv_obj_get_hidden(child) != false || + lv_obj_is_protected(child, LV_PROTECT_POS) != false) continue; + + lv_obj_align(child, cont, align, last_cord, vpad_corr); + last_cord += lv_obj_get_width(child) + style->opad; + } + + lv_obj_clr_protect(cont, LV_PROTECT_CHILD_CHG); +} + +/** + * Handle the center layout + * @param cont pointer to an object which layout should be handled + */ +static void lv_cont_layout_center(lv_obj_t * cont) +{ + lv_obj_t * child; + lv_style_t * style = lv_obj_get_style(cont); + uint32_t obj_num = 0; + cord_t h_tot = 0; + + LL_READ(cont->child_ll, child) { + h_tot += lv_obj_get_height(child) + style->opad; + obj_num ++; + } + + if(obj_num == 0) return; + + h_tot -= style->opad; + + /* Disable child change action because the children will be moved a lot + * an unnecessary child change signals could be sent*/ + lv_obj_set_protect(cont, LV_PROTECT_CHILD_CHG); + + /* Align the children */ + cord_t last_cord = - (h_tot / 2); + LL_READ_BACK(cont->child_ll, child) { + if(lv_obj_get_hidden(child) != false || + lv_obj_is_protected(child, LV_PROTECT_POS) != false) continue; + + lv_obj_align(child, cont, LV_ALIGN_CENTER, 0, last_cord + lv_obj_get_height(child) / 2); + last_cord += lv_obj_get_height(child) + style->opad; + } + + lv_obj_clr_protect(cont, LV_PROTECT_CHILD_CHG); +} + +/** + * Handle the pretty layout. Put as many object as possible in row + * then begin a new row + * @param cont pointer to an object which layout should be handled + */ +static void lv_cont_layout_pretty(lv_obj_t * cont) +{ + lv_obj_t * child_rs; /* Row starter child */ + lv_obj_t * child_rc; /* Row closer child */ + lv_obj_t * child_tmp; /* Temporary child */ + lv_style_t * style = lv_obj_get_style(cont); + cord_t w_obj = lv_obj_get_width(cont); + cord_t act_y = style->vpad; + /* Disable child change action because the children will be moved a lot + * an unnecessary child change signals could be sent*/ + + child_rs = ll_get_tail(&cont->child_ll); /*Set the row starter child*/ + if(child_rs == NULL) return; /*Return if no child*/ + + lv_obj_set_protect(cont, LV_PROTECT_CHILD_CHG); + + child_rc = child_rs; /*Initially the the row starter and closer is the same*/ + while(child_rs != NULL) { + cord_t h_row = 0; + cord_t w_row = style->hpad * 2; /*The width is at least the left+right hpad*/ + uint32_t obj_num = 0; + + /*Find the row closer object and collect some data*/ + do { + if(lv_obj_get_hidden(child_rc) == false && + lv_obj_is_protected(child_rc, LV_PROTECT_POS) == false) { + if(w_row + lv_obj_get_width(child_rc) > w_obj) break; /*If the next object is already not fit then break*/ + w_row += lv_obj_get_width(child_rc) + style->opad; /*Add the object width + opad*/ + h_row = MATH_MAX(h_row, lv_obj_get_height(child_rc)); /*Search the highest object*/ + obj_num ++; + } + child_rc = ll_get_prev(&cont->child_ll, child_rc); /*Load the next object*/ + if(obj_num == 0) child_rs = child_rc; /*If the first object was hidden (or too long) then set the next as first */ + }while(child_rc != NULL); + + /*Step back one child because the last already not fit*/ + if(child_rc != NULL && obj_num != 0) child_rc = ll_get_next(&cont->child_ll, child_rc); + + /*If the object is too long then align it to the middle*/ + if(obj_num == 0) { + if(child_rc != NULL) { + lv_obj_align(child_rc, cont, LV_ALIGN_IN_TOP_MID, 0, act_y); + } + } + /*If here is only one object in the row then align it to the left*/ + else if (obj_num == 1) { + lv_obj_align(child_rs, cont, LV_ALIGN_IN_TOP_MID, 0, act_y); + } + /* Align the children (from child_rs to child_rc)*/ + else { + w_row -= style->opad * obj_num; + cord_t new_opad = (w_obj - w_row) / (obj_num - 1); + cord_t act_x = style->hpad; /*x init*/ + child_tmp = child_rs; + while(child_tmp != NULL) { + if(lv_obj_get_hidden(child_tmp) == false && + lv_obj_is_protected(child_tmp, LV_PROTECT_POS) == false) { + lv_obj_align(child_tmp, cont, LV_ALIGN_IN_TOP_LEFT, act_x, act_y); + act_x += lv_obj_get_width(child_tmp) + new_opad; + } + if(child_tmp == child_rc) break; + child_tmp = ll_get_prev(&cont->child_ll, child_tmp); + } + + } + + if(child_rc == NULL) break; + act_y += style->opad + h_row; /*y increment*/ + child_rs = ll_get_prev(&cont->child_ll, child_rc); /*Go to the next object*/ + child_rc = child_rs; + } + lv_obj_clr_protect(cont, LV_PROTECT_CHILD_CHG); +} + +/** + * Handle the grid layout. Align same-sized objects in a grid + * @param cont pointer to an object which layout should be handled + */ +static void lv_cont_layout_grid(lv_obj_t * cont) +{ + lv_obj_t * child; + lv_style_t * style = lv_obj_get_style(cont); + cord_t w_tot = lv_obj_get_width(cont); + cord_t w_obj = lv_obj_get_width(lv_obj_get_child(cont, NULL)); + cord_t h_obj = lv_obj_get_height(lv_obj_get_child(cont, NULL)); + uint16_t obj_row = (w_tot - (2 * style->hpad)) / (w_obj + style->opad); /*Obj. num. in a row*/ + cord_t x_ofs; + if(obj_row > 1) { + x_ofs = w_obj + (w_tot - (2 * style->hpad) - (obj_row * w_obj)) / (obj_row - 1); + } else { + x_ofs = w_tot / 2 - w_obj / 2; + } + cord_t y_ofs = h_obj + style->opad; + + /* Disable child change action because the children will be moved a lot + * an unnecessary child change signals could be sent*/ + lv_obj_set_protect(cont, LV_PROTECT_CHILD_CHG); + + /* Align the children */ + cord_t act_x = style->hpad; + cord_t act_y = style->vpad; + uint16_t obj_cnt = 0; + LL_READ_BACK(cont->child_ll, child) { + if(lv_obj_get_hidden(child) != false || + lv_obj_is_protected(child, LV_PROTECT_POS) != false) continue; + + if(obj_row > 1) { + lv_obj_set_pos(child, act_x, act_y); + act_x += x_ofs; + } else { + lv_obj_set_pos(child, x_ofs, act_y); + } + obj_cnt ++; + + if(obj_cnt >= obj_row) { + obj_cnt = 0; + act_x = style->hpad; + act_y += y_ofs; + } + } + + lv_obj_clr_protect(cont, LV_PROTECT_CHILD_CHG); +} + +/** + * Handle auto fit. Set the size of the object to involve all children. + * @param cont pointer to an object which size will be modified + */ +static void lv_cont_refr_autofit(lv_obj_t * cont) +{ + lv_cont_ext_t * ext = lv_obj_get_ext(cont); + + if(ext->hfit_en == 0 && + ext->vfit_en == 0) { + return; + } + + area_t new_cords; + area_t ori; + lv_style_t * style = lv_obj_get_style(cont); + lv_obj_t * i; + cord_t hpad = style->hpad; + cord_t vpad = style->vpad; + + /*Search the side coordinates of the children*/ + lv_obj_get_cords(cont, &ori); + lv_obj_get_cords(cont, &new_cords); + + new_cords.x1 = CORD_MAX; + new_cords.y1 = CORD_MAX; + new_cords.x2 = CORD_MIN; + new_cords.y2 = CORD_MIN; + + LL_READ(cont->child_ll, i) { + if(lv_obj_get_hidden(i) != false) continue; + new_cords.x1 = MATH_MIN(new_cords.x1, i->cords.x1); + new_cords.y1 = MATH_MIN(new_cords.y1, i->cords.y1); + new_cords.x2 = MATH_MAX(new_cords.x2, i->cords.x2); + new_cords.y2 = MATH_MAX(new_cords.y2, i->cords.y2); + } + + /*If the value is not the init value then the page has >=1 child.*/ + if(new_cords.x1 != CORD_MAX) { + if(ext->hfit_en != 0) { + new_cords.x1 -= hpad; + new_cords.x2 += hpad; + } else { + new_cords.x1 = cont->cords.x1; + new_cords.x2 = cont->cords.x2; + } + if(ext->vfit_en != 0) { + new_cords.y1 -= vpad; + new_cords.y2 += vpad; + } else { + new_cords.y1 = cont->cords.y1; + new_cords.y2 = cont->cords.y2; + } + + /*Do nothing if the coordinates are not changed*/ + if(cont->cords.x1 != new_cords.x1 || + cont->cords.y1 != new_cords.y1 || + cont->cords.x2 != new_cords.x2 || + cont->cords.y2 != new_cords.y2) { + + lv_obj_inv(cont); + area_cpy(&cont->cords, &new_cords); + lv_obj_inv(cont); + + /*Notify the object about its new coordinates*/ + cont->signal_f(cont, LV_SIGNAL_CORD_CHG, &ori); + + /*Inform the parent about the new coordinates*/ + lv_obj_t * par = lv_obj_get_parent(cont); + par->signal_f(par, LV_SIGNAL_CHILD_CHG, cont); + } + } +} + +#endif diff --git a/lv_objx/lv_cont.h b/lv_objx/lv_cont.h new file mode 100644 index 000000000..57f205592 --- /dev/null +++ b/lv_objx/lv_cont.h @@ -0,0 +1,112 @@ +/** + * @file lv_cont.h + * + */ + +#ifndef LV_CONT_H +#define LV_CONT_H + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#if USE_LV_CONT != 0 + +#include "../lv_obj/lv_obj.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/*Layout options*/ +typedef enum +{ + LV_CONT_LAYOUT_OFF = 0, + LV_CONT_LAYOUT_CENTER, + LV_CONT_LAYOUT_COL_L, /*Column left align*/ + LV_CONT_LAYOUT_COL_M, /*Column middle align*/ + LV_CONT_LAYOUT_COL_R, /*Column right align*/ + LV_CONT_LAYOUT_ROW_T, /*Row top align*/ + LV_CONT_LAYOUT_ROW_M, /*Row middle align*/ + LV_CONT_LAYOUT_ROW_B, /*Row bottom align*/ + LV_CONT_LAYOUT_PRETTY, /*Put as many object as possible in row and begin a new row*/ + LV_CONT_LAYOUT_GRID, /*Align same-sized object into a grid*/ +}lv_cont_layout_t; + +typedef struct +{ + /*Inherited from 'base_obj' so no inherited ext. */ /*Ext. of ancestor*/ + /*New data for this type */ + uint8_t layout :5; /*A layout from 'lv_cont_layout_t' enum*/ + uint8_t hfit_en :1; /*Enable horizontal padding to involve all children*/ + uint8_t vfit_en :1; /*Enable horizontal padding to involve all children*/ +}lv_cont_ext_t; + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create a container objects + * @param par pointer to an object, it will be the parent of the new container + * @param copy pointer to a container object, if not NULL then the new object will be copied from it + * @return pointer to the created container + */ +lv_obj_t * lv_cont_create(lv_obj_t * par, lv_obj_t * copy); + +/** + * Signal function of the container + * @param cont pointer to a container object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + */ +bool lv_cont_signal(lv_obj_t * cont, lv_signal_t sign, void * param); + +/** + * Set the layout on a container + * @param cont pointer to a container object + * @param layout a layout from 'lv_cont_layout_t' + */ +void lv_cont_set_layout(lv_obj_t * cont, lv_cont_layout_t layout); + +/** + * Enable the horizontal or vertical fit. + * The container size will be set to involve the children horizontally or vertically. + * @param cont pointer to a container object + * @param hor_en true: enable the horizontal padding + * @param ver_en true: enable the vertical padding + */ +void lv_cont_set_fit(lv_obj_t * cont, bool hor_en, bool ver_en); + +/** + * Get the layout of a container + * @param cont pointer to container object + * @return the layout from 'lv_cont_layout_t' + */ +lv_cont_layout_t lv_cont_get_layout(lv_obj_t * cont); + +/** + * Get horizontal fit enable attribute of a container + * @param cont pointer to a container object + * @return true: horizontal padding is enabled + */ +bool lv_cont_get_hfit(lv_obj_t * cont); + +/** + * Get vertical fit enable attribute of a container + * @param cont pointer to a container object + * @return true: vertical padding is enabled + */ +bool lv_cont_get_vfit(lv_obj_t * cont); + +/********************** + * MACROS + **********************/ + +#endif + +#endif diff --git a/lv_objx/lv_ddlist.c b/lv_objx/lv_ddlist.c new file mode 100644 index 000000000..54ecb5507 --- /dev/null +++ b/lv_objx/lv_ddlist.c @@ -0,0 +1,445 @@ +/** + * @file lv_ddlist.c + * + */ + + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#if USE_LV_DDLIST != 0 + +#include "lv_ddlist.h" +#include "../lv_draw/lv_draw.h" +#include "misc/gfx/anim.h" + +/********************* + * DEFINES + *********************/ +#define LV_DDLIST_DEF_ANIM_TIME 200 /*ms*/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static bool lv_ddlist_design(lv_obj_t * ddlist, const area_t * mask, lv_design_mode_t mode); +static lv_action_res_t lv_ddlist_rel_action(lv_obj_t * ddlist, lv_dispi_t * dispi); +static void lv_ddlist_refr_size(lv_obj_t * ddlist, uint16_t anim_time); +static void lv_ddlist_pos_act_option(lv_obj_t * ddlist); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_design_f_t ancestor_design_f; +static const char * def_options[] = {"Option 1", "Option 2", "Option 3", ""}; +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/*----------------- + * Create function + *-----------------*/ + +/** + * Create a drop down list objects + * @param par pointer to an object, it will be the parent of the new drop down list + * @param copy pointer to a drop down list object, if not NULL then the new object will be copied from it + * @return pointer to the created drop down list + */ +lv_obj_t * lv_ddlist_create(lv_obj_t * par, lv_obj_t * copy) +{ + /*Create the ancestor drop down list*/ + lv_obj_t * new_ddlist = lv_page_create(par, copy); + dm_assert(new_ddlist); + + /*Allocate the drop down list type specific extended data*/ + lv_ddlist_ext_t * ext = lv_obj_alloc_ext(new_ddlist, sizeof(lv_ddlist_ext_t)); + dm_assert(ext); + + /*Initialize the allocated 'ext' */ + ext->opt_label = NULL; + ext->cb = NULL; + ext->opened = 0; + ext->auto_size = 0; + ext->sel_opt = 0; + ext->anim_time = LV_DDLIST_DEF_ANIM_TIME; + ext->style_sel = lv_style_get(LV_STYLE_PLAIN_COLOR, NULL); + + /*The signal and design functions are not copied so set them here*/ + if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_ddlist); + + lv_obj_set_signal_f(new_ddlist, lv_ddlist_signal); + lv_obj_set_design_f(new_ddlist, lv_ddlist_design); + + /*Init the new drop down list drop down list*/ + if(copy == NULL) { + lv_obj_t * scrl = lv_page_get_scrl(new_ddlist); + lv_obj_set_drag(scrl, false); + lv_obj_set_style(scrl, lv_style_get(LV_STYLE_TRANSP, NULL)); + + ext->opt_label = lv_label_create(new_ddlist, NULL); + lv_cont_set_fit(new_ddlist, true, false); + lv_page_set_rel_action(new_ddlist, lv_ddlist_rel_action); + lv_page_set_sb_mode(new_ddlist, LV_PAGE_SB_MODE_DRAG); + lv_obj_set_style(new_ddlist, lv_style_get(LV_STYLE_PRETTY, NULL)); + lv_ddlist_set_options(new_ddlist, def_options); + } + /*Copy an existing drop down list*/ + else { + lv_ddlist_ext_t * copy_ext = lv_obj_get_ext(copy); + ext->opt_label = lv_label_create(new_ddlist, copy_ext->opt_label); + lv_label_set_text(ext->opt_label, lv_label_get_text(copy_ext->opt_label)); + ext->sel_opt = copy_ext->sel_opt; + ext->auto_size = copy_ext->auto_size; + ext->cb = copy_ext->cb; + + /*Refresh the style with new signal function*/ + lv_obj_refr_style(new_ddlist); + } + + return new_ddlist; +} + +/** + * Signal function of the drop down list + * @param ddlist pointer to a drop down list object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + * @return true: the object is still valid (not deleted), false: the object become invalid + */ +bool lv_ddlist_signal(lv_obj_t * ddlist, lv_signal_t sign, void * param) +{ + bool valid; + + /* Include the ancient signal function */ + valid = lv_page_signal(ddlist, sign, param); + + /* The object can be deleted so check its validity and then + * make the object specific signal handling */ + if(valid != false) { + if(sign == LV_SIGNAL_STYLE_CHG) { + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + lv_obj_set_style(ext->opt_label, lv_obj_get_style(ddlist)); + lv_ddlist_refr_size(ddlist, 0); + } + } + + return valid; +} + +/*===================== + * Setter functions + *====================*/ + +/** + * Set the options in a drop down list + * @param ddlist pointer to drop down list object + * @param options an array of strings wit the text of the options. + * The lest element has to be "" (empty string) + * E.g. const char * opts[] = {"apple", "banana", "orange", ""}; + */ +void lv_ddlist_set_options(lv_obj_t * ddlist, const char ** options) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + + lv_label_set_text(ext->opt_label, ""); + uint16_t i = 0; + while(options[i][0] != '\0') { + lv_label_append_text(ext->opt_label, options[i]); + if(options[i + 1][0] != '\0') lv_label_append_text(ext->opt_label, "\n"); + i++; + } + + lv_ddlist_refr_size(ddlist, 0); +} + +/** + * Set the selected option + * @param ddlist pointer to drop down list object + * @param sel_opt id of the selected option (0 ... number of option - 1); + */ +void lv_ddlist_set_selected(lv_obj_t * ddlist, uint16_t sel_opt) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + + ext->sel_opt = sel_opt; + + /*Move the list to show the current option*/ + if(ext->opened == 0) { + lv_ddlist_pos_act_option(ddlist); + } +} + +/** + * Set a function to call when a new option is chosen + * @param ddlist pointer to a drop down list + * @param cb pointer to a call back function + */ +void lv_ddlist_set_action(lv_obj_t * ddlist, lv_action_t cb) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + ext->cb = cb; +} + +/** + * Set the auto size attribute. If enabled the height will reduced to be visible on the parent. + * In this case the drop down list can be scrolled. + * @param ddlist pointer to a drop down list + * @param auto_size true: enable auto size, false: disable + */ +void lv_ddlist_set_auto_size(lv_obj_t * ddlist, bool auto_size) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + ext->auto_size = auto_size == false ? 0 : 1; +} + +/** + * Set the open/close animation time. + * @param ddlist pointer to a drop down list + * @param anim_time: open/close animation time [ms] + */ +void lv_ddlist_set_anim_time(lv_obj_t * ddlist, uint16_t anim_time) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + ext->anim_time = anim_time; +} + +/** + * Set the style of the rectangle on the selected option + * @param ddlist pointer to a drop down list object + * @param style pointer the new style of the select rectangle + */ +void lv_dlist_set_style_select(lv_obj_t * ddlist, lv_style_t * style) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + ext->style_sel = style; + +} +/*===================== + * Getter functions + *====================*/ + +/** + * Get the options of a drop down list + * @param ddlist pointer to drop down list object + * @return the options separated by '\n'-s (E.g. "Option1\nOption2\nOption3") + */ +const char * lv_ddlist_get_options(lv_obj_t * ddlist) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + return lv_label_get_text(ext->opt_label); +} + +/** + * Get the selected option + * @param ddlist pointer to drop down list object + * @return id of the selected option (0 ... number of option - 1); + */ +uint16_t lv_ddlist_get_selected(lv_obj_t * ddlist) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + + return ext->sel_opt; +} + +/** + * Get the auto size attribute. + * @param ddlist pointer to a drop down list object + * @return true: the auto_size is enabled, false: disabled + */ +bool lv_ddlist_get_auto_size(lv_obj_t * ddlist, bool auto_size) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + return ext->auto_size == 0 ? false : true; +} + +/** + * Get the style of the rectangle on the selected option + * @param ddlist pointer to a drop down list object + * @return pointer the style of the select rectangle + */ +lv_style_t * lv_ddlist_get_style_select(lv_obj_t * ddlist) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + if(ext->style_sel == NULL) return lv_obj_get_style(ddlist); + + return ext->style_sel; +} +/** + * Get the open/close animation time. + * @param ddlist pointer to a drop down list + * @return open/close animation time [ms] + */ +uint16_t lv_ddlist_get_anim_time(lv_obj_t * ddlist) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + return ext->anim_time; +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +/** + * Handle the drawing related tasks of the drop down lists + * @param ddlist pointer to an object + * @param mask the object will be drawn only in this area + * @param mode LV_DESIGN_COVER_CHK: only check if the object fully covers the 'mask_p' area + * (return 'true' if yes) + * LV_DESIGN_DRAW: draw the object (always return 'true') + * LV_DESIGN_DRAW_POST: drawing after every children are drawn + * @param return true/false, depends on 'mode' + */ +static bool lv_ddlist_design(lv_obj_t * ddlist, const area_t * mask, lv_design_mode_t mode) +{ + /*Return false if the object is not covers the mask_p area*/ + if(mode == LV_DESIGN_COVER_CHK) { + return ancestor_design_f(ddlist, mask, mode); + } + /*Draw the object*/ + else if(mode == LV_DESIGN_DRAW_MAIN) { + ancestor_design_f(ddlist, mask, mode); + + /*If the list is opened draw a rectangle below the selected item*/ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + if(ext->opened != 0) { + lv_style_t * style = lv_obj_get_style(ddlist); + const font_t * font = style->font; + cord_t font_h = font_get_height(font) >> FONT_ANTIALIAS; + area_t rect_area; + lv_style_t * style_page_scrl = lv_obj_get_style(lv_page_get_scrl(ddlist)); + rect_area.y1 = ext->opt_label->cords.y1; + rect_area.y1 += ext->sel_opt * (font_h + style->line_space); + rect_area.y1 -= style->line_space / 2; + + rect_area.y2 = rect_area.y1 + font_h + style->line_space; + rect_area.x1 = ext->opt_label->cords.x1 - style_page_scrl->hpad; + rect_area.x2 = rect_area.x1 + lv_obj_get_width(lv_page_get_scrl(ddlist)); + + lv_draw_rect(&rect_area, mask, ext->style_sel); + } + } + /*Post draw when the children are drawn*/ + else if(mode == LV_DESIGN_DRAW_POST) { + ancestor_design_f(ddlist, mask, mode); + } + + return true; +} + +/** + * Called when a drop down list is released to open it or set new option + * @param ddlist pointer to a drop down list object + * @param dispi pointer to the called display input + * @return LV_ACTION_RES_INV if the ddlist it deleted in the user callback else LV_ACTION_RES_OK + */ +static lv_action_res_t lv_ddlist_rel_action(lv_obj_t * ddlist, lv_dispi_t * dispi) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + + if(ext->opened == 0) { /*Open the list*/ + ext->opened = 1; + lv_obj_set_drag(lv_page_get_scrl(ddlist), true); + } else { + ext->opened = 0; + lv_obj_set_drag(lv_page_get_scrl(ddlist), false); + + /*Search the clicked option*/ + point_t p; + lv_dispi_get_point(dispi, &p); + p.x -= ext->opt_label->cords.x1; + p.y -= ext->opt_label->cords.y1; + uint16_t letter_i; + letter_i = lv_label_get_letter_on(ext->opt_label, &p); + + uint16_t new_opt = 0; + const char * txt = lv_label_get_text(ext->opt_label); + uint16_t i; + for(i = 0; i < letter_i; i++) { + if(txt[i] == '\n') new_opt ++; + } + + ext->sel_opt = new_opt; + + if(ext->cb != NULL) { + ext->cb(ddlist, dispi); + } + } + lv_ddlist_refr_size(ddlist, ext->anim_time); + + return LV_ACTION_RES_OK; + +} + +/** + * Refresh the size of drop down list according its start (open or closed) + * @param ddlist pointer to a drop down list object + * @param anim_time animations time for open/close [ms] + */ +static void lv_ddlist_refr_size(lv_obj_t * ddlist, uint16_t anim_time) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + lv_style_t * style = lv_obj_get_style(ddlist); + cord_t new_height; + if(ext->opened != 0) { /*Open the list*/ + new_height = lv_obj_get_height(lv_page_get_scrl(ddlist)) + 2 * style->vpad; + lv_obj_t * parent = lv_obj_get_parent(ddlist); + /*Reduce the height if enabled and required*/ + if(ext->auto_size != 0 && new_height + ddlist->cords.y1 > parent->cords.y2) { + new_height = parent->cords.y2 - ddlist->cords.y1; + } + } else { /*Close the list*/ + const font_t * font = style->font; + lv_style_t * label_style = lv_obj_get_style(ext->opt_label); + cord_t font_h = font_get_height(font) >> FONT_ANTIALIAS; + new_height = font_h + 2 * label_style->line_space; + } + if(anim_time == 0) { + lv_obj_set_height(ddlist, new_height); + lv_ddlist_pos_act_option(ddlist); + } else { + anim_t a; + a.var = ddlist; + a.start = lv_obj_get_height(ddlist); + a.end = new_height; + a.fp = (anim_fp_t)lv_obj_set_height; + a.path = anim_get_path(ANIM_PATH_LIN); + a.end_cb = (anim_cb_t)lv_ddlist_pos_act_option; + a.act_time = 0; + a.time = ext->anim_time; + a.playback = 0; + a.playback_pause = 0; + a.repeat = 0; + a.repeat_pause = 0; + + anim_create(&a); + } +} + +/** + * Set the position of list when it is closed to show the selected item + * @param ddlist pointer to a drop down list + */ +static void lv_ddlist_pos_act_option(lv_obj_t * ddlist) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + lv_style_t * style = lv_obj_get_style(ddlist); + const font_t * font = style->font; + cord_t font_h = font_get_height(font) >> FONT_ANTIALIAS; + lv_style_t * label_style = lv_obj_get_style(ext->opt_label); + lv_obj_t * scrl = lv_page_get_scrl(ddlist); + lv_style_t * style_scrl = lv_obj_get_style(scrl); + + lv_obj_set_y(scrl, -(ext->sel_opt * (font_h + label_style->line_space) - label_style->line_space) - style_scrl->hpad); + +} + +#endif diff --git a/lv_objx/lv_ddlist.h b/lv_objx/lv_ddlist.h new file mode 100644 index 000000000..ad276bce7 --- /dev/null +++ b/lv_objx/lv_ddlist.h @@ -0,0 +1,144 @@ +/** + * @file lv_ddlist.h + * + */ + +#ifndef LV_DDLIST_H +#define LV_DDLIST_H + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#if USE_LV_DDLIST != 0 + +/*Testing of dependencies*/ +#if USE_LV_PAGE == 0 +#error "lv_ddlist: lv_page is required. Enable it in lv_conf.h (USE_LV_PAGE 1) " +#endif + +#if USE_LV_LABEL == 0 +#error "lv_ddlist: lv_label is required. Enable it in lv_conf.h (USE_LV_LABEL 1) " +#endif + +#include "../lv_obj/lv_obj.h" +#include "../lv_objx/lv_page.h" +#include "../lv_objx/lv_label.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ +/*Data of drop down list*/ +typedef struct +{ + lv_page_ext_t page; /*Ext. of ancestor*/ + /*New data for this type */ + lv_obj_t * opt_label; /*Label for the options*/ + lv_style_t * style_sel; /*Style of the selected option*/ + lv_action_t cb; /*Pointer to function to call when an option is slected*/ + uint16_t sel_opt; /*Index of the current option*/ + uint16_t anim_time; /*Open/Close animation time [ms]*/ + uint8_t opened :1; /*1: The list is opened*/ + uint8_t auto_size :1; /*1: Set height to show all options. 0: Set height maximum to the parent bottom*/ +}lv_ddlist_ext_t; + + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create a drop down list objects + * @param par pointer to an object, it will be the parent of the new drop down list + * @param copy pointer to a drop down list object, if not NULL then the new object will be copied from it + * @return pointer to the created drop down list + */ +lv_obj_t * lv_ddlist_create(lv_obj_t * par, lv_obj_t * copy); + +/** + * Signal function of the drop down list + * @param ddlist pointer to a drop down list object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + * @return true: the object is still valid (not deleted), false: the object become invalid + */ +bool lv_ddlist_signal(lv_obj_t * ddlist, lv_signal_t sign, void * param); + +/** + * Set the options in a drop down list + * @param ddlist pointer to drop down list object + * @param options an array of strings wit the text of the options. + * The lest element has to be "" (empty string) + * E.g. const char * opts[] = {"apple", "banana", "orange", ""}; + */ +void lv_ddlist_set_options(lv_obj_t * ddlist, const char ** options); + +/** + * Set the selected option + * @param ddlist pointer to drop down list object + * @param sel_opt id of the selected option (0 ... number of option - 1); + */ +void lv_ddlist_set_selected(lv_obj_t * ddlist, uint16_t sel_opt); + + +/** + * Set a function to call when a new option is chosen + * @param ddlist pointer to a drop down list + * @param cb pointer to a call back function + */ +void lv_ddlist_set_action(lv_obj_t * ddlist, lv_action_t cb); + +/** + * Set the auto size attribute. If enabled the height will reduced to be visible on the parent. + * In this case the drop down list can be scrolled. + * @param ddlist pointer to a drop down list + * @param auto_size true: enable auto size, false: disable + */ +void lv_ddlist_set_auto_size(lv_obj_t * ddlist, bool auto_size); + +/** + * Set the style of the rectangle on the selected option + * @param ddlist pointer to a drop down list object + * @param style pointer the new style of the select rectangle + */ +void lv_dlist_set_style_select(lv_obj_t * ddlist, lv_style_t * style); + +/** + * Get the options of a drop down list + * @param ddlist pointer to drop down list object + * @return the options separated by '\n'-s (E.g. "Option1\nOption2\nOption3") + */ +const char * lv_ddlist_get_options(lv_obj_t * ddlist); + +/** + * Get the selected option + * @param ddlist pointer to drop down list object + * @return id of the selected option (0 ... number of option - 1); + */ +uint16_t lv_ddlist_get_selected(lv_obj_t * ddlist); + +/** + * Get the auto size attribute. + * @param ddlist pointer to a drop down list object + * @return true: the auto_size is enabled, false: disabled + */ +bool lv_ddlist_get_auto_size(lv_obj_t * ddlist, bool auto_size); + +/** + * Get the style of the rectangle on the selected option + * @param ddlist pointer to a drop down list object + * @return pointer the style of the select rectangle + */ +lv_style_t * lv_ddlist_get_style_select(lv_obj_t * ddlist); + +/********************** + * MACROS + **********************/ + +#endif + +#endif diff --git a/lv_objx/lv_gauge.c b/lv_objx/lv_gauge.c index 1c668b28e..2eeaa2fa3 100644 --- a/lv_objx/lv_gauge.c +++ b/lv_objx/lv_gauge.c @@ -11,18 +11,17 @@ #if USE_LV_GAUGE != 0 #include "lv_gauge.h" -#include -#include #include "../lv_draw/lv_draw.h" -#include "../lv_misc/text.h" +#include "misc/gfx/text.h" #include "misc/math/trigo.h" #include "misc/math/math_base.h" +#include +#include /********************* * DEFINES *********************/ -#define LV_GAUGE_DEF_WIDTH (150 * LV_DOWNSCALE) -#define LV_GAUGE_DEF_HEIGHT (150 * LV_DOWNSCALE) +#define LV_GAUGE_DEF_NEEDLE_COLOR COLOR_RED /********************** * TYPEDEFS @@ -32,15 +31,14 @@ * STATIC PROTOTYPES **********************/ static bool lv_gauge_design(lv_obj_t * gauge, const area_t * mask, lv_design_mode_t mode); -static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask); -static void lv_gauge_draw_needle(lv_obj_t * gauge, const area_t * mask); -static void lv_gauges_init(void); +static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask, lv_style_t * style); +static void lv_gauge_draw_needle(lv_obj_t * gauge, const area_t * mask, lv_style_t * style); /********************** * STATIC VARIABLES **********************/ -static lv_gauges_t lv_gauges_def; /*Default gauge style*/ static lv_design_f_t ancestor_design_f = NULL; + /********************** * MACROS **********************/ @@ -62,7 +60,7 @@ static lv_design_f_t ancestor_design_f = NULL; lv_obj_t * lv_gauge_create(lv_obj_t * par, lv_obj_t * copy) { /*Create the ancestor gauge*/ - lv_obj_t * new_gauge = lv_rect_create(par, copy); + lv_obj_t * new_gauge = lv_lmeter_create(par, copy); dm_assert(new_gauge); /*Allocate the gauge type specific extended data*/ @@ -70,12 +68,11 @@ lv_obj_t * lv_gauge_create(lv_obj_t * par, lv_obj_t * copy) dm_assert(ext); /*Initialize the allocated 'ext' */ - ext->min = 0; - ext->max = 100; - ext->needle_num = 1; - ext->low_critical = 0; + ext->needle_num = 0; ext->values = NULL; - ext->txt = NULL; + ext->needle_colors = NULL; + ext->low_critical = 0; + ext->style_critical = lv_style_get(LV_STYLE_PRETTY_COLOR, NULL); if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_gauge); @@ -85,19 +82,17 @@ lv_obj_t * lv_gauge_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new gauge gauge*/ if(copy == NULL) { - lv_gauge_set_needle_num(new_gauge, 1); - lv_gauge_set_text(new_gauge, "%d"); - lv_obj_set_size(new_gauge, LV_GAUGE_DEF_WIDTH, LV_GAUGE_DEF_HEIGHT); - lv_obj_set_style(new_gauge, lv_gauges_get(LV_GAUGES_DEF, NULL)); + lv_lmeter_set_scale(new_gauge, 220, 6); + lv_gauge_set_needle_num(new_gauge, 1, NULL); + lv_obj_set_size(new_gauge, 2 * LV_DPI, 2 * LV_DPI); + lv_obj_set_style(new_gauge, lv_style_get(LV_STYLE_PRETTY, NULL)); } /*Copy an existing gauge*/ else { lv_gauge_ext_t * copy_ext = lv_obj_get_ext(copy); - ext->min = copy_ext->min; - ext->max = copy_ext->max; ext->low_critical = copy_ext->low_critical; - lv_gauge_set_needle_num(new_gauge, lv_gauge_get_needle_num(copy)); - lv_gauge_set_text(new_gauge, lv_gauge_get_text(copy)); + lv_gauge_set_style_critical(new_gauge, lv_gauge_get_style_critical(copy)); + lv_gauge_set_needle_num(new_gauge, copy_ext->needle_num, copy_ext->needle_colors); uint8_t i; for(i = 0; i < ext->needle_num; i++) { @@ -123,19 +118,19 @@ bool lv_gauge_signal(lv_obj_t * gauge, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_rect_signal(gauge, sign, param); + valid = lv_lmeter_signal(gauge, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - switch(sign) { - case LV_SIGNAL_CLEANUP: - dm_free(ext->values); - ext->values = NULL; - break; - default: - break; + if(sign == LV_SIGNAL_CLEANUP) { + dm_free(ext->values); + ext->values = NULL; + } + else if(sign == LV_SIGNAL_REFR_EXT_SIZE) { + lv_style_t * style_crit = lv_gauge_get_style_critical(gauge); + if(style_crit->swidth > gauge->ext_size) gauge->ext_size = style_crit->swidth; } } @@ -147,37 +142,32 @@ bool lv_gauge_signal(lv_obj_t * gauge, lv_signal_t sign, void * param) *====================*/ /** - * Set the number of needles (should be <= LV_GAUGE_MAX_NEEDLE) + * Set the number of needles * @param gauge pointer to gauge object * @param num number of needles + * @param colors an array of colors for needles (with 'num' elements) */ -void lv_gauge_set_needle_num(lv_obj_t * gauge, uint8_t num) +void lv_gauge_set_needle_num(lv_obj_t * gauge, uint8_t num, color_t * colors) { lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - if(ext->values != NULL) dm_free(ext->values); + if(ext->values != NULL) { + dm_free(ext->values); + ext->values = NULL; + } - ext->values = dm_alloc(num * sizeof(int16_t)); + ext->values = dm_realloc(ext->values, num * sizeof(int16_t)); + + int16_t min = lv_bar_get_min_value(gauge); + uint8_t n; + for(n = ext->needle_num; n < num; n++) { + ext->values[n] = min; + } ext->needle_num = num; + ext->needle_colors = colors; lv_obj_inv(gauge); } -/** - * Set the range of a gauge - * @param gauge pointer to gauge object - * @param min min value - * @param max max value - */ -void lv_gauge_set_range(lv_obj_t * gauge, int16_t min, int16_t max) -{ - lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - - /*Be sure the smaller value is min and the greater is max*/ - ext->min = MATH_MIN(min, max); - ext->max = MATH_MAX(min, max); - - lv_obj_inv(gauge); -} /** * Set the value of a needle @@ -191,28 +181,16 @@ void lv_gauge_set_value(lv_obj_t * gauge, uint8_t needle, int16_t value) if(needle >= ext->needle_num) return; - if(value > ext->max) value = ext->max; - if(value < ext->min) value = ext->min; + int16_t min = lv_bar_get_min_value(gauge); + int16_t max = lv_bar_get_max_value(gauge); + + if(value > max) value = max; + else if(value < min) value = min; ext->values[needle] = value; - lv_obj_inv(gauge); -} - -/** - * Set text on a gauge - * @param gauge pinter to a gauge object - * @param txt a printf like format string - * with 1 place for a number (e.g. "Value: %d"); - */ -void lv_gauge_set_text(lv_obj_t * gauge, const char * txt) -{ - lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - - if(ext->txt != NULL) dm_free(ext->txt); - - ext->txt = dm_alloc(strlen(txt) + 1); - strcpy(ext->txt, txt); + /*To be consistent with bar set the first needle's value for the bar*/ + if(needle == 0) lv_bar_set_value(gauge, value); lv_obj_inv(gauge); } @@ -231,6 +209,18 @@ void lv_gauge_set_low_critical(lv_obj_t * gauge, bool low) lv_obj_inv(gauge); } +/** + * Set the critical style of the gauge + * @param gauge pointer to a gauge object + * @param style pointer to the new critical style + */ +void lv_gauge_set_style_critical(lv_obj_t * gauge, lv_style_t * style) +{ + lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); + ext->style_critical = style; + gauge->signal_f(gauge, LV_SIGNAL_REFR_EXT_SIZE, NULL); + lv_obj_inv(gauge); +} /*===================== * Getter functions @@ -256,24 +246,13 @@ uint8_t lv_gauge_get_needle_num(lv_obj_t * gauge) int16_t lv_gauge_get_value(lv_obj_t * gauge, uint8_t needle) { lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); + int16_t min = lv_bar_get_min_value(gauge); - if(needle >= ext->needle_num) return ext->min; + if(needle >= ext->needle_num) return min; return ext->values[needle]; } -/** - * Get the text of a gauge - * @param gauge pointer to gauge - * @return the set text. (not with the current value) - */ -const char * lv_gauge_get_text(lv_obj_t * gauge) -{ - lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - return ext->txt; - -} - /** * Get which value is more critical (lower or higher) * @param gauge pointer to a gauge object @@ -287,37 +266,17 @@ bool lv_gauge_get_low_critical(lv_obj_t * gauge) } /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_gauges_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_gauges_t style + * Get the critical style of the gauge + * @param gauge pointer to a gauge object + * @return pointer to the critical style */ -lv_gauges_t * lv_gauges_get(lv_gauges_builtin_t style, lv_gauges_t * copy) +lv_style_t * lv_gauge_get_style_critical(lv_obj_t * gauge) { - static bool style_inited = false; + lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_gauges_init(); - style_inited = true; - } + if(ext->style_critical == NULL) return lv_obj_get_style(gauge); - lv_gauges_t *style_p; - - switch(style) { - case LV_GAUGES_DEF: - style_p = &lv_gauges_def; - break; - default: - style_p = &lv_gauges_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_gauges_t)); - else memcpy(copy, &lv_gauges_def, sizeof(lv_gauges_t)); - } - - return style_p; + return ext->style_critical; } /********************** @@ -336,40 +295,54 @@ lv_gauges_t * lv_gauges_get(lv_gauges_builtin_t style, lv_gauges_t * copy) */ static bool lv_gauge_design(lv_obj_t * gauge, const area_t * mask, lv_design_mode_t mode) { + /*Return false if the object is not covers the mask_p area*/ if(mode == LV_DESIGN_COVER_CHK) { - return ancestor_design_f(gauge, mask, mode); + return false; } /*Draw the object*/ else if(mode == LV_DESIGN_DRAW_MAIN) { - lv_gauges_t * style = lv_obj_get_style(gauge); + lv_style_t * style_base = lv_obj_get_style(gauge); + lv_style_t * style_critical = lv_gauge_get_style_critical(gauge); lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); /* Draw the background * Re-color the gauge according to the critical value*/ - color_t mcolor_min = style->rects.objs.color; - color_t gcolor_min = style->rects.gcolor; + lv_style_t style_bg; + int16_t min = lv_bar_get_min_value(gauge); + int16_t max = lv_bar_get_max_value(gauge); - int16_t critical_val = ext->low_critical == 0 ? ext->min : ext->max; + /*To be consistent with bar use the bar value as the first needle*/ + if(ext->needle_num != 0) { + ext->values[0] = lv_bar_get_value(gauge); + } + + int16_t critical_val = ext->low_critical == 0 ? min : max; uint8_t i; for(i = 0; i < ext->needle_num; i++) { critical_val = ext->low_critical == 0 ? MATH_MAX(critical_val, ext->values[i]) : MATH_MIN(critical_val, ext->values[i]); } - opa_t ratio = ((critical_val - ext->min) * OPA_COVER) / (ext->max - ext->min); + opa_t ratio = ((critical_val - min) * OPA_COVER) / (max - min); if(ext->low_critical != 0) ratio = OPA_COVER - ratio; - style->rects.objs.color= color_mix(style->mcolor_critical, mcolor_min, ratio); - style->rects.gcolor = color_mix(style->gcolor_critical, gcolor_min, ratio); - ancestor_design_f(gauge, mask, mode); - style->rects.objs.color= mcolor_min; - style->rects.gcolor = gcolor_min; + /*Mix the normal and the critical style*/ + memcpy(&style_bg, style_base, sizeof(lv_style_t)); + style_bg.ccolor = color_mix(style_critical->ccolor, style_base->ccolor, ratio); + style_bg.mcolor= color_mix(style_critical->mcolor, style_base->mcolor, ratio); + style_bg.gcolor = color_mix(style_critical->gcolor, style_base->gcolor, ratio); + style_bg.bcolor = color_mix(style_critical->bcolor, style_base->bcolor, ratio); + style_bg.scolor = color_mix(style_critical->scolor, style_base->scolor, ratio); + style_bg.swidth = (cord_t)(((cord_t)style_critical->swidth * ratio) + ((cord_t)style_base->swidth * (OPA_COVER - ratio))) >> 8; + style_bg.opa = (cord_t)(((uint16_t)style_critical->opa * ratio) + ((uint16_t)style_base->opa * (OPA_COVER - ratio))) >> 8; - lv_gauge_draw_scale(gauge, mask); + lv_draw_rect(&gauge->cords, mask, &style_bg); - lv_gauge_draw_needle(gauge, mask); + lv_gauge_draw_scale(gauge, mask, &style_bg); + + lv_gauge_draw_needle(gauge, mask, &style_bg); } /*Post draw when the children are drawn*/ else if(mode == LV_DESIGN_DRAW_POST) { @@ -384,22 +357,23 @@ static bool lv_gauge_design(lv_obj_t * gauge, const area_t * mask, lv_design_mod * @param gauge pointer to gauge object * @param mask mask of drawing */ -static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask) +static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask, lv_style_t * style) { - lv_gauges_t * style = lv_obj_get_style(gauge); - lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - char scale_txt[16]; - cord_t r = lv_obj_get_width(gauge) / 2 - style->scale_pad; + cord_t r = lv_obj_get_width(gauge) / 2 - style->hpad; cord_t x_ofs = lv_obj_get_width(gauge) / 2 + gauge->cords.x1; cord_t y_ofs = lv_obj_get_height(gauge) / 2 + gauge->cords.y1; - int16_t angle_ofs = 90 + (360 - style->scale_angle) / 2; + int16_t scale_angle = lv_lmeter_get_scale_angle(gauge); + uint16_t scale_num = lv_lmeter_get_scale_num(gauge); + int16_t angle_ofs = 90 + (360 - scale_angle) / 2; + int16_t min = lv_bar_get_min_value(gauge); + int16_t max = lv_bar_get_max_value(gauge); uint8_t i; - for(i = 0; i < style->scale_label_num; i++) { + for(i = 0; i < scale_num; i++) { /*Calculate the position a scale label*/ - int16_t angle = (i * style->scale_angle) / (style->scale_label_num - 1) + angle_ofs; + int16_t angle = (i * scale_angle) / (scale_num - 1) + angle_ofs; cord_t y = (int32_t)((int32_t)trigo_sin(angle) * r) / TRIGO_SIN_MAX; y += y_ofs; @@ -407,15 +381,15 @@ static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask) cord_t x = (int32_t)((int32_t)trigo_sin(angle + 90) * r) / TRIGO_SIN_MAX; x += x_ofs; - int16_t scale_act = (int32_t)((int32_t)(ext->max - ext->min) * i) / (style->scale_label_num - 1); - scale_act += ext->min; + int16_t scale_act = (int32_t)((int32_t)(max - min) * i) / (scale_num - 1); + scale_act += min; sprintf(scale_txt, "%d", scale_act); area_t label_cord; point_t label_size; - txt_get_size(&label_size, scale_txt, font_get(style->scale_labels.font), - style->scale_labels.letter_space, style->scale_labels.line_space, - LV_CORD_MAX, TXT_FLAG_NONE); + txt_get_size(&label_size, scale_txt, style->font, + style->letter_space, style->line_space, + CORD_MAX, TXT_FLAG_NONE); /*Draw the label*/ label_cord.x1 = x - label_size.x / 2; @@ -423,132 +397,61 @@ static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask) label_cord.x2 = label_cord.x1 + label_size.x; label_cord.y2 = label_cord.y1 + label_size.y; - lv_draw_label(&label_cord, mask, &style->scale_labels, OPA_COVER, scale_txt, TXT_FLAG_NONE); + lv_draw_label(&label_cord, mask, style, scale_txt, TXT_FLAG_NONE); } - - /*Calculate the critical value*/ - int16_t critical_value = ext->low_critical == 0 ? ext->min : ext->max;; - for(i = 0; i < ext->needle_num; i++) { - critical_value = ext->low_critical == 0 ? - MATH_MAX(critical_value, ext->values[i]) : MATH_MIN(critical_value, ext->values[i]); - } - - /*Write the critical value if enabled*/ - if(ext->txt[0] != '\0') { - char value_txt[16]; - sprintf(value_txt, ext->txt, critical_value); - - area_t label_cord; - point_t label_size; - txt_get_size(&label_size, value_txt, font_get(style->value_labels.font), - style->value_labels.letter_space, style->value_labels.line_space, - LV_CORD_MAX, TXT_FLAG_NONE); - - /*Draw the label*/ - label_cord.x1 = gauge->cords.x1 + lv_obj_get_width(gauge) / 2 - label_size.x / 2; - label_cord.y1 = gauge->cords.y1 + - (cord_t)style->value_pos * lv_obj_get_height(gauge) / 100 - label_size.y / 2; - - label_cord.x2 = label_cord.x1 + label_size.x; - label_cord.y2 = label_cord.y1 + label_size.y; - - lv_draw_label(&label_cord, mask, &style->value_labels, OPA_COVER, value_txt, TXT_FLAG_NONE); - } - } /** * Draw the needles of a gauge * @param gauge pointer to gauge object * @param mask mask of drawing */ -static void lv_gauge_draw_needle(lv_obj_t * gauge, const area_t * mask) +static void lv_gauge_draw_needle(lv_obj_t * gauge, const area_t * mask, lv_style_t * style) { - lv_gauges_t * style = lv_obj_get_style(gauge); + lv_style_t style_needle; lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - cord_t r = lv_obj_get_width(gauge) / 2 - style->scale_pad; + cord_t r = lv_obj_get_width(gauge) / 2 - style->opad; cord_t x_ofs = lv_obj_get_width(gauge) / 2 + gauge->cords.x1; cord_t y_ofs = lv_obj_get_height(gauge) / 2 + gauge->cords.y1; - int16_t angle_ofs = 90 + (360 - style->scale_angle) / 2; + uint16_t angle = lv_lmeter_get_scale_angle(gauge); + int16_t angle_ofs = 90 + (360 - angle) / 2; + int16_t min = lv_bar_get_min_value(gauge); + int16_t max = lv_bar_get_max_value(gauge); point_t p_mid; point_t p_end; uint8_t i; + memcpy(&style_needle, style, sizeof(lv_style_t)); + p_mid.x = x_ofs; p_mid.y = y_ofs; for(i = 0; i < ext->needle_num; i++) { /*Calculate the end point of a needle*/ - int16_t needle_angle = (ext->values[i] - ext->min) * style->scale_angle / - (ext->max - ext->min) + angle_ofs; + int16_t needle_angle = (ext->values[i] - min) * angle / (max - min) + angle_ofs; p_end.y = (trigo_sin(needle_angle) * r) / TRIGO_SIN_MAX + y_ofs; p_end.x = (trigo_sin(needle_angle + 90) * r) / TRIGO_SIN_MAX + x_ofs; /*Draw the needle with the corresponding color*/ - style->needle_lines.objs.color = style->needle_color[i]; - - lv_draw_line(&p_mid, &p_end, mask, &style->needle_lines, style->needle_opa); + if(ext->needle_colors == NULL) style_needle.ccolor = LV_GAUGE_DEF_NEEDLE_COLOR; + else style_needle.ccolor = ext->needle_colors[i]; + lv_draw_line(&p_mid, &p_end, mask, &style_needle); } /*Draw the needle middle area*/ - lv_rects_t nm; + lv_style_t style_neddle_mid; + lv_style_get(LV_STYLE_PLAIN, &style_neddle_mid); + style_neddle_mid.mcolor = style->bcolor; + style_neddle_mid.gcolor = style->bcolor; + style_neddle_mid.radius = LV_RADIUS_CIRCLE; + area_t nm_cord; - lv_rects_get(LV_RECTS_DEF, &nm); - nm.bwidth = 0; - nm.round = LV_RECT_CIRCLE; - nm.objs.color = style->needle_mid_color; - nm.gcolor = style->needle_mid_color; + nm_cord.x1 = x_ofs - style->opad; + nm_cord.y1 = y_ofs - style->opad; + nm_cord.x2 = x_ofs + style->opad; + nm_cord.y2 = y_ofs + style->opad; - nm_cord.x1 = x_ofs - style->needle_mid_r; - nm_cord.y1 = y_ofs - style->needle_mid_r; - nm_cord.x2 = x_ofs + style->needle_mid_r; - nm_cord.y2 = y_ofs + style->needle_mid_r; - - lv_draw_rect(&nm_cord, mask, &nm, OPA_100); - -} - -/** - * Initialize the built-in gauge styles - */ -static void lv_gauges_init(void) -{ - /*Default style*/ - lv_rects_get(LV_RECTS_DEF, &lv_gauges_def.rects); - lv_gauges_def.rects.round = LV_RECT_CIRCLE; - lv_gauges_def.rects.bwidth = 4 * LV_DOWNSCALE; - lv_gauges_def.rects.objs.color = COLOR_MAKE(0x00, 0xaa, 0x00);//GREEN; - lv_gauges_def.rects.gcolor = COLOR_BLACK; - lv_gauges_def.rects.bcolor = COLOR_BLACK; - - lv_gauges_def.gcolor_critical = COLOR_BLACK; - lv_gauges_def.mcolor_critical = COLOR_MAKE(0xff, 0x50, 0x50); - - lv_labels_get(LV_LABELS_DEF, &lv_gauges_def.scale_labels); - lv_gauges_def.scale_labels.objs.color = COLOR_MAKE(0xd0, 0xd0, 0xd0); - - lv_labels_get(LV_LABELS_DEF, &lv_gauges_def.value_labels); - lv_gauges_def.value_labels.objs.color = COLOR_WHITE; - lv_gauges_def.value_labels.letter_space = 3 * LV_DOWNSCALE; - lv_gauges_def.value_labels.mid = 1; - - lv_gauges_def.value_pos = 75; - - lv_lines_get(LV_LINES_DEF, &lv_gauges_def.needle_lines); - lv_gauges_def.needle_lines.objs.color = COLOR_WHITE; - lv_gauges_def.needle_lines.width = 3 * LV_DOWNSCALE; - - lv_gauges_def.needle_color[0] = COLOR_SILVER; - lv_gauges_def.needle_color[1] = COLOR_MAKE(0x40, 0x90, 0xe0); - lv_gauges_def.needle_color[2] = COLOR_MAKE(0x50, 0xe0, 0x50); - lv_gauges_def.needle_color[3] = COLOR_MAKE(0xff, 0xff, 0x70); - - lv_gauges_def.needle_mid_r = 5 * LV_DOWNSCALE; - lv_gauges_def.needle_mid_color = COLOR_GRAY; - lv_gauges_def.needle_opa = OPA_80; - lv_gauges_def.scale_pad = 20 * LV_DOWNSCALE; - lv_gauges_def.scale_label_num = 6; - lv_gauges_def.scale_angle = 220; + lv_draw_rect(&nm_cord, mask, &style_neddle_mid); } #endif diff --git a/lv_objx/lv_gauge.h b/lv_objx/lv_gauge.h index ed7c8531c..e333b961e 100644 --- a/lv_objx/lv_gauge.h +++ b/lv_objx/lv_gauge.h @@ -14,16 +14,8 @@ #if USE_LV_GAUGE != 0 /*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_gauge: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " -#endif - -#if USE_LV_LABEL == 0 -#error "lv_gauge: lv_label is required. Enable it in lv_conf.h (USE_LV_LABEL 1) " -#endif - -#if USE_LV_RECT == 0 -#error "lv_gauge: lv_line is required. Enable it in lv_conf.h (USE_LV_LINE 1) " +#if USE_LV_LMETER == 0 +#error "lv_gauge: lv_lmeter is required. Enable it in lv_conf.h (USE_LV_LMETER 1) " #endif #if USE_TRIGO == 0 @@ -32,7 +24,7 @@ #include "../lv_obj/lv_obj.h" -#include "lv_rect.h" +#include "lv_lmeter.h" #include "lv_label.h" #include "lv_line.h" @@ -48,50 +40,19 @@ /*Data of gauge*/ typedef struct { - lv_rect_ext_t rect; /*Ext. of ancestor*/ + lv_lmeter_ext_t lmeter; /*Ext. of ancestor*/ /*New data for this type */ - int16_t min; /*Minimum value of the scale*/ - int16_t max; /*Maximum value of the scale*/ - int16_t * values; /*Array of the set values (for needles) */ - char * txt; /*Printf-like text to display with the most critical value (e.g. "Value: %d")*/ - uint8_t needle_num; /*Number of needles*/ - uint8_t low_critical :1; /*0: the higher value is more critical, 1: the lower value is more critical*/ + int16_t * values; /*Array of the set values (for needles) */ + lv_style_t * style_critical; /*Fade to this style nearer to the critical value*/ + color_t * needle_colors; /*Color of the needles (color_t my_colors[needle_num])*/ + uint8_t needle_num; /*Number of needles*/ + uint8_t low_critical:1; /*0: the higher value is more critical, 1: the lower value is more critical*/ }lv_gauge_ext_t; -/*Style of gauge*/ -typedef struct -{ - lv_rects_t rects; /*Style of ancestor*/ - /*New style element for this type */ - color_t mcolor_critical; /*Top color at critical.*/ - color_t gcolor_critical; /*Bottom color at critical*/ - /*Scale settings*/ - uint16_t scale_angle; /*Angle of the scale in deg. (~220)*/ - lv_labels_t scale_labels; /*Style of the scale labels*/ - cord_t scale_pad; /*Padding of scale labels from the edge*/ - uint8_t scale_label_num; /*Number of scale labels (~6)*/ - /*Needle settings*/ - lv_lines_t needle_lines; /*Style of neddles*/ - color_t needle_color[LV_GAUGE_MAX_NEEDLE]; /*Color of needles*/ - color_t needle_mid_color; /*Color of middle where the needles start*/ - cord_t needle_mid_r; /*Radius of the needle middle area*/ - opa_t needle_opa; /*Opacity of the needles*/ - /*Value text settings*/ - lv_labels_t value_labels; /*Style of the value label*/ - uint8_t value_pos; /*Vertical position of the value label in percentage of object height (0..100 %)*/ -}lv_gauges_t; - -/*Built-in styles of gauge*/ -typedef enum -{ - LV_GAUGES_DEF, -}lv_gauges_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ - /** * Create a gauge objects * @param par pointer to an object, it will be the parent of the new gauge @@ -110,19 +71,12 @@ lv_obj_t * lv_gauge_create(lv_obj_t * par, lv_obj_t * copy); bool lv_gauge_signal(lv_obj_t * gauge, lv_signal_t sign, void * param); /** - * Set the number of needles (should be <= LV_GAUGE_MAX_NEEDLE) + * Set the number of needles * @param gauge pointer to gauge object * @param num number of needles + * @param colors an array of colors for needles (with 'num' elements) */ -void lv_gauge_set_needle_num(lv_obj_t * gauge, uint8_t num); - -/** - * Set the range of a gauge - * @param gauge pointer to gauge object - * @param min min value - * @param max max value - */ -void lv_gauge_set_range(lv_obj_t * gauge, int16_t min, int16_t max); +void lv_gauge_set_needle_num(lv_obj_t * gauge, uint8_t num, color_t * colors); /** * Set the value of a needle @@ -132,14 +86,6 @@ void lv_gauge_set_range(lv_obj_t * gauge, int16_t min, int16_t max); */ void lv_gauge_set_value(lv_obj_t * gauge, uint8_t needle, int16_t value); -/** - * Set text on a gauge - * @param gauge pinter to a gauge object - * @param txt a printf like format string - * with 1 place for a number (e.g. "Value: %d"); - */ -void lv_gauge_set_text(lv_obj_t * gauge, const char * txt); - /** * Set which value is more critical (lower or higher) * @param gauge pointer to a gauge object @@ -147,6 +93,13 @@ void lv_gauge_set_text(lv_obj_t * gauge, const char * txt); */ void lv_gauge_set_low_critical(lv_obj_t * gauge, bool low); +/** + * Set the critical style of the gauge + * @param gauge pointer to a gauge object + * @param style pointer to the new critical style + */ +void lv_gauge_set_style_critical(lv_obj_t * gauge, lv_style_t * style); + /** * Get the number of needles on a gauge * @param gauge pointer to gauge @@ -162,13 +115,6 @@ uint8_t lv_gauge_get_needle_num(lv_obj_t * gauge); */ int16_t lv_gauge_get_value(lv_obj_t * gauge, uint8_t needle); -/** - * Get the text of a gauge - * @param gauge pointer to gauge - * @return the set text. (not with the current value) - */ -const char * lv_gauge_get_text(lv_obj_t * gauge); - /** * Get which value is more critical (lower or higher) * @param gauge pointer to a gauge object @@ -177,12 +123,11 @@ const char * lv_gauge_get_text(lv_obj_t * gauge); bool lv_gauge_get_low_critical(lv_obj_t * gauge); /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_gauges_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_gauges_t style + * Get the critical style of the gauge + * @param gauge pointer to a gauge object + * @return pointer to the critical style */ -lv_gauges_t * lv_gauges_get(lv_gauges_builtin_t style, lv_gauges_t * copy); +lv_style_t * lv_gauge_get_style_critical(lv_obj_t * gauge); /********************** * MACROS diff --git a/lv_objx/lv_img.c b/lv_objx/lv_img.c index a34433748..a97ed6db0 100644 --- a/lv_objx/lv_img.c +++ b/lv_objx/lv_img.c @@ -16,7 +16,7 @@ #include "misc/fs/ufs/ufs.h" #if LV_IMG_ENABLE_SYMBOLS != 0 -#include "../lv_misc/text.h" +#include "misc/gfx/text.h" #endif /********************* @@ -31,16 +31,12 @@ * STATIC PROTOTYPES **********************/ static bool lv_img_design(lv_obj_t * img, const area_t * mask, lv_design_mode_t mode); -static void lv_imgs_init(void); static bool lv_img_is_symbol(const char * txt); /********************** * STATIC VARIABLES **********************/ -static lv_imgs_t lv_imgs_def; -static lv_imgs_t lv_imgs_light; -static lv_imgs_t lv_imgs_dark; /********************** * MACROS @@ -53,7 +49,7 @@ static lv_imgs_t lv_imgs_dark; /** * Create an image objects * @param par pointer to an object, it will be the parent of the new button - * @param copy pointer to a rectangle object, if not NULL then the new object will be copied from it + * @param copy pointer to a image object, if not NULL then the new object will be copied from it * @return pointer to the created image */ lv_obj_t * lv_img_create(lv_obj_t * par, lv_obj_t * copy) @@ -72,6 +68,7 @@ lv_obj_t * lv_img_create(lv_obj_t * par, lv_obj_t * copy) ext->h = lv_obj_get_height(new_img); ext->transp = 0; ext->upscale = 0; + ext->auto_size = 1; /*Init the new object*/ lv_obj_set_signal_f(new_img, lv_img_signal); @@ -83,10 +80,13 @@ lv_obj_t * lv_img_create(lv_obj_t * par, lv_obj_t * copy) * and must be screen sized*/ if(par != NULL) ext->auto_size = 1; else ext->auto_size = 0; - lv_obj_set_style(new_img, lv_imgs_get(LV_IMGS_DEF, NULL)); + if(par != NULL) lv_obj_set_style(new_img, NULL); /*Inherit the style by default*/ + else lv_obj_set_style(new_img, lv_style_get(LV_STYLE_PLAIN, NULL)); /*Set style for screens*/ } else { - ext->auto_size = lv_img_get_auto_size(copy); - lv_img_set_file(new_img, LV_EA(copy, lv_img_ext_t)->fn); + lv_img_ext_t * copy_ext = lv_obj_get_ext(copy); + ext->auto_size = copy_ext->auto_size; + ext->upscale = copy_ext->upscale; + lv_img_set_file(new_img, copy_ext->fn); /*Refresh the style with new signal function*/ lv_obj_refr_style(new_img); @@ -111,59 +111,21 @@ bool lv_img_signal(lv_obj_t * img, lv_signal_t sign, void * param) /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { - lv_img_ext_t * img_p = lv_obj_get_ext(img); - switch(sign) { - case LV_SIGNAL_CLEANUP: - dm_free(img_p->fn); - break; - default: - break; + lv_img_ext_t * ext = lv_obj_get_ext(img); + if(sign == LV_SIGNAL_CLEANUP) { + dm_free(ext->fn); + } + else if(sign == LV_SIGNAL_STYLE_CHG) { + /*Refresh the file name to refresh the symbol text size*/ + if(lv_img_is_symbol(ext->fn) != false) { + lv_img_set_file(img, ext->fn); + } } } return valid; } -/** - * Return with a pointer to built-in style and/or copy it to a variable - * @param style a style name from lv_imgs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_imgs_t style - */ -lv_imgs_t * lv_imgs_get(lv_imgs_builtin_t style, lv_imgs_t * copy) -{ - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_imgs_init(); - style_inited = true; - } - - lv_imgs_t * style_p; - - switch(style) { - case LV_IMGS_DEF: - style_p = &lv_imgs_def; - break; - case LV_IMGS_LIGHT: - style_p = &lv_imgs_light; - break; - case LV_IMGS_DARK: - style_p = &lv_imgs_dark; - break; - default: - style_p = &lv_imgs_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_imgs_t)); - else memcpy(copy, &lv_imgs_def, sizeof(lv_imgs_t)); - } - - return style_p; -} - /** * Create a file to the RAMFS from a picture data * @param fn file name of the new file (e.g. "pic1", will be available at "U:/pic1") @@ -209,6 +171,7 @@ void lv_img_set_file(lv_obj_t * img, const char * fn) header.w = lv_obj_get_width(img); header.h = lv_obj_get_height(img); header.transp = 0; + header.cd = 0; } fs_close(&file); @@ -217,20 +180,22 @@ void lv_img_set_file(lv_obj_t * img, const char * fn) ext->h = header.h; ext->transp = header.transp; +#if LV_ANTIALIAS != 0 if(ext->upscale != 0) { ext->w *= 2; ext->h *= 2; } +#endif } /*Handle symbol texts*/ else { #if LV_IMG_ENABLE_SYMBOLS - lv_imgs_t * imgs = lv_obj_get_style(img); + lv_style_t * style = lv_obj_get_style(img); point_t size; - txt_get_size(&size, fn, font_get(imgs->sym_font), 0, 0, LV_CORD_MAX, TXT_FLAG_NONE); + txt_get_size(&size, fn, style->font, style->letter_space, style->line_space, CORD_MAX, TXT_FLAG_NONE); ext->w = size.x; ext->h = size.y; - ext->transp = 0; + ext->transp = 1; /*Symbols always have transparent parts*/ #else /*Never goes here, just to be sure handle this */ ext->w = lv_obj_get_width(img); @@ -240,13 +205,8 @@ void lv_img_set_file(lv_obj_t * img, const char * fn) } - if(ext->upscale != 0) { - ext->w *= LV_DOWNSCALE; - ext->h *= LV_DOWNSCALE; - } - if(fn != NULL) { - ext->fn = dm_realloc(ext->fn, strlen(fn) + 1); + ext->fn = dm_realloc(ext->fn, strlen(fn) + 1); strcpy(ext->fn, fn); } else { ext->fn = NULL; @@ -283,7 +243,11 @@ void lv_img_set_auto_size(lv_obj_t * img, bool en) void lv_img_set_upscale(lv_obj_t * img, bool en) { lv_img_ext_t * ext = lv_obj_get_ext(img); - + + /*Upscale works only if antialiassing is enabled*/ +#if LV_ANTIALIAS == 0 + en = false; +#endif ext->upscale = (en == false ? 0 : 1); /*Refresh the image with the new size*/ @@ -333,33 +297,23 @@ bool lv_img_get_upscale(lv_obj_t * img) */ static bool lv_img_design(lv_obj_t * img, const area_t * mask, lv_design_mode_t mode) { - lv_imgs_t * imgs_p = lv_obj_get_style(img); + lv_style_t * style = lv_obj_get_style(img); lv_img_ext_t * ext = lv_obj_get_ext(img); if(mode == LV_DESIGN_COVER_CHK) { - if(ext->transp == 0) { - bool cover; - cover = area_is_in(mask, &img->cords); - return cover; - } - else return false; + bool cover = false; + if(ext->transp == 0) cover = area_is_in(mask, &img->cords); + return cover; + } else if(mode == LV_DESIGN_DRAW_MAIN) { if(ext->h == 0 || ext->w == 0) return true; area_t cords; /*Create a default style for symbol texts*/ #if LV_IMG_ENABLE_SYMBOLS != 0 bool sym = lv_img_is_symbol(ext->fn); - lv_labels_t sym_style; - lv_labels_get(LV_LABELS_DEF, &sym_style); - sym_style.font = imgs_p->sym_font; - sym_style.letter_space = 0; - sym_style.line_space = 0; - sym_style.mid = 0; - sym_style.objs.color = imgs_p->objs.color; #endif lv_obj_get_cords(img, &cords); - opa_t opa = lv_obj_get_opa(img); area_t cords_tmp; cords_tmp.y1 = cords.y1; @@ -371,10 +325,10 @@ static bool lv_img_design(lv_obj_t * img, const area_t * mask, lv_design_mode_t for(; cords_tmp.x1 < cords.x2; cords_tmp.x1 += ext->w, cords_tmp.x2 += ext->w) { #if LV_IMG_ENABLE_SYMBOLS == 0 - lv_draw_img(&cords_tmp, mask, imgs_p, opa, ext->fn); + lv_draw_img(&cords_tmp, mask, style, opa, ext->fn); #else - if(sym == false) lv_draw_img(&cords_tmp, mask, imgs_p, opa, ext->fn); - else lv_draw_label(&cords_tmp, mask, &sym_style, opa, ext->fn, TXT_FLAG_NONE); + if(sym == false) lv_draw_img(&cords_tmp, mask, style, ext->fn); + else lv_draw_label(&cords_tmp, mask, style, ext->fn, TXT_FLAG_NONE); #endif } } @@ -397,6 +351,8 @@ static bool lv_img_is_symbol(const char * txt) return false; #endif + if(txt == NULL) return false; + /* if txt begins with an upper case letter then it refers to a driver * so it is a file name*/ if(txt[0] >= 'A' && txt[0] <= 'Z') return false; @@ -405,25 +361,5 @@ static bool lv_img_is_symbol(const char * txt) return true; } -/** - * Initialize the image styles - */ -static void lv_imgs_init(void) -{ - /*Default style*/ - lv_imgs_def.objs.color = COLOR_BLACK; - lv_imgs_def.recolor_opa = OPA_TRANSP; -#if LV_IMG_ENABLE_SYMBOLS != 0 - lv_imgs_def.sym_font = LV_IMG_DEF_SYMBOL_FONT; -#endif - /*Dark style*/ - memcpy(&lv_imgs_dark, &lv_imgs_def, sizeof(lv_imgs_t)); - lv_imgs_dark.objs.color = COLOR_BLACK; lv_imgs_dark.recolor_opa = OPA_50; - - /*Light style*/ - memcpy(&lv_imgs_light, &lv_imgs_dark, sizeof(lv_imgs_t)); - lv_imgs_light.objs.color = COLOR_WHITE; lv_imgs_light.recolor_opa = OPA_50; - -} #endif diff --git a/lv_objx/lv_img.h b/lv_objx/lv_img.h index 01bcf45bc..a972c7d25 100644 --- a/lv_objx/lv_img.h +++ b/lv_objx/lv_img.h @@ -24,9 +24,13 @@ #include "../lv_obj/lv_obj.h" #include "misc/fs/fsint.h" -#if LV_IMG_ENABLE_SYMBOLS +#ifndef LV_IMG_ENABLE_SYMBOLS +#define LV_IMG_ENABLE_SYMBOLS 0 +#endif + +#if LV_IMG_ENABLE_SYMBOLS != 0 #include "lv_label.h" -#include "../lv_misc/fonts/symbol_def.h" +#include "misc/gfx/fonts/symbol_def.h" #endif /********************* @@ -41,54 +45,33 @@ typedef struct { /*No inherited ext. because inherited from the base object*/ /*Ext. of ancestor*/ /*New data for this type */ - char* fn; /*Image file name. E.g. "U:/my_image"*/ - cord_t w; /*Width of the image (doubled when upscaled)*/ - cord_t h; /*Height of the image (doubled when upscaled)*/ - uint8_t auto_size :1; /*1: automatically set the object size to the image size*/ - uint8_t upscale :1; /*1: upscale to double size*/ - uint8_t transp :1; /*Transp. bit in the image header (library handles this)*/ + char* fn; /*Image file name. E.g. "U:/my_image"*/ + cord_t w; /*Width of the image (doubled when upscaled) (Handled by the library)*/ + cord_t h; /*Height of the image (doubled when upscaled) (Handled by the library)*/ + uint8_t auto_size :1; /*1: automatically set the object size to the image size*/ + uint8_t upscale :1; /*1: upscale to double size with antialaissing*/ + uint8_t transp :1; /*Transp. bit in the image header (Handled by the library)*/ }lv_img_ext_t; -/*Style of image*/ -typedef struct -{ - lv_objs_t objs; /*Style of ancestor*/ - /*New style element for this type */ - opa_t recolor_opa; /*Intensity of recoloring (OPA_TRANSP, OPA_10 ... OPA_COVER)*/ -#if LV_IMG_ENABLE_SYMBOLS != 0 - font_types_t sym_font; /*Symbol font*/ -#endif -}lv_imgs_t; - -/*Built-in styles of image*/ -typedef enum -{ - LV_IMGS_DEF, - LV_IMGS_LIGHT, - LV_IMGS_DARK, -}lv_imgs_builtin_t; - - /* Image header it is compatible with * the result image converter utility*/ typedef struct { - uint16_t w; /*Width of the image map*/ - uint16_t h; /*Height of the image map*/ - uint16_t cd; /*Color depth (8/16 or 24)*/ - uint16_t transp :1; /*1: Do not draw LV_IMG_TRANSP_COLOR pixels*/ + uint32_t w:12; /*Width of the image map*/ + uint32_t h:12; /*Height of the image map*/ + uint32_t transp:1; /*1: The image contains transparent pixels with LV_COLOR_TRANSP color*/ + uint32_t cd:3; /*Color depth (0: reserved, 1: 8 bit, 2: 16 bit or 3: 24 bit, 4-7: reserved)*/ + uint32_t res :4; /*Reserved*/ }lv_img_raw_header_t; - /********************** * GLOBAL PROTOTYPES **********************/ - /** * Create an image objects * @param par pointer to an object, it will be the parent of the new button - * @param copy pointer to a rectangle object, if not NULL then the new object will be copied from it + * @param copy pointer to a image object, if not NULL then the new object will be copied from it * @return pointer to the created image */ lv_obj_t * lv_img_create(lv_obj_t * par, lv_obj_t * copy); @@ -101,14 +84,6 @@ lv_obj_t * lv_img_create(lv_obj_t * par, lv_obj_t * copy); */ bool lv_img_signal(lv_obj_t * img, lv_signal_t sign, void * param); -/** - * Return with a pointer to built-in style and/or copy it to a variable - * @param style a style name from lv_imgs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_imgs_t style - */ -lv_imgs_t * lv_imgs_get(lv_imgs_builtin_t style, lv_imgs_t * copy); - /** * Create a file to the RAMFS from a picture data * @param fn file name of the new file (e.g. "pic1", will be available at "U:/pic1") @@ -134,6 +109,7 @@ void lv_img_set_auto_size(lv_obj_t * img, bool en); /** * Enable the upscaling with LV_DOWNSCALE. + * If enabled the object size will be same as the picture size. * @param img pointer to an image * @param en true: upscale enable, false: upscale disable */ @@ -146,7 +122,6 @@ void lv_img_set_upscale(lv_obj_t * img, bool en); */ bool lv_img_get_auto_size(lv_obj_t * img); - /** * Get the upscale enable attribute * @param img pointer to an image @@ -154,10 +129,6 @@ bool lv_img_get_auto_size(lv_obj_t * img); */ bool lv_img_get_upscale(lv_obj_t * img); - -lv_imgs_t * lv_imgs_get(lv_imgs_builtin_t style, lv_imgs_t * copy); - - /********************** * MACROS **********************/ diff --git a/lv_objx/lv_label.c b/lv_objx/lv_label.c index b0126b731..0e61d5d58 100644 --- a/lv_objx/lv_label.c +++ b/lv_objx/lv_label.c @@ -9,12 +9,12 @@ #include "lv_conf.h" #if USE_LV_LABEL != 0 -#include "misc/others/color.h" +#include "misc/gfx/color.h" #include "misc/math/math_base.h" #include "lv_label.h" #include "../lv_obj/lv_obj.h" -#include "../lv_misc/text.h" -#include "../lv_misc/anim.h" +#include "misc/gfx/text.h" +#include "misc/gfx/anim.h" #include "../lv_draw/lv_draw.h" /********************* @@ -49,16 +49,10 @@ **********************/ static bool lv_label_design(lv_obj_t * label, const area_t * mask, lv_design_mode_t mode); static void lv_label_refr_text(lv_obj_t * label); -static void lv_labels_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_labels_t lv_labels_def; -static lv_labels_t lv_labels_btn; -static lv_labels_t lv_labels_title; -static lv_labels_t lv_labels_txt; - /********************** * MACROS **********************/ @@ -95,9 +89,8 @@ lv_obj_t * lv_label_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new label*/ if(copy == NULL) { - lv_obj_set_opa(new_label, OPA_COVER); lv_obj_set_click(new_label, false); - lv_obj_set_style(new_label, lv_labels_get(LV_LABELS_DEF, NULL)); + lv_obj_set_style(new_label, NULL); lv_label_set_long_mode(new_label, LV_LABEL_LONG_EXPAND); lv_label_set_text(new_label, "Text"); } @@ -178,6 +171,7 @@ void lv_label_set_text(lv_obj_t * label, const char * text) uint32_t len = strlen(text) + 1; if(ext->txt != NULL && ext->static_txt == 0) { dm_free(ext->txt); + ext->txt = NULL; } ext->txt = dm_alloc(len); strcpy(ext->txt, text); @@ -207,6 +201,7 @@ void lv_label_set_text_array(lv_obj_t * label, const char * array, uint16_t size /*Allocate space for the new text*/ if(ext->txt != NULL && ext->static_txt == 0) { dm_free(ext->txt); + ext->txt = NULL; } ext->txt = dm_alloc(size + 1); memcpy(ext->txt, array, size); @@ -227,6 +222,7 @@ void lv_label_set_text_static(lv_obj_t * label, const char * text) lv_label_ext_t * ext = lv_obj_get_ext(label); if(ext->static_txt == 0 && ext->txt != NULL) { dm_free(ext->txt); + ext->txt = NULL; } if(text != NULL) { @@ -236,6 +232,32 @@ void lv_label_set_text_static(lv_obj_t * label, const char * text) lv_label_refr_text(label); } + +/** + * Append a text to the label. The label current label text can not be static. + * @param label pointer to label object + * @param text pointe rto the new text + */ +void lv_label_append_text(lv_obj_t * label, const char * text) +{ + lv_label_ext_t * ext = lv_obj_get_ext(label); + + /*Can not append to static text*/ + if(ext->static_txt != 0) return; + + lv_obj_inv(label); + + /*Allocate space for the new text*/ + uint32_t old_len = strlen(ext->txt); + uint32_t app_len = strlen(text); + uint32_t new_len = app_len + old_len; + ext->txt = dm_realloc(ext->txt, new_len + 1); + memcpy(ext->txt + old_len, text, app_len); + ext->txt[new_len] = '\0'; + + lv_label_refr_text(label); +} + /** * Set the behavior of the label with longer text then the object size * @param label pointer to a label object @@ -330,9 +352,9 @@ void lv_label_get_letter_pos(lv_obj_t * label, uint16_t index, point_t * pos) uint32_t line_start = 0; uint32_t new_line_start = 0; cord_t max_w = lv_obj_get_width(label); - lv_labels_t * labels = lv_obj_get_style(label); - const font_t * font = font_get(labels->font); - uint8_t letter_height = font_get_height(font); + lv_style_t * style = lv_obj_get_style(label); + const font_t * font = style->font; + uint8_t letter_height = font_get_height(font) >> FONT_ANTIALIAS; cord_t y = 0; txt_flag_t flag = TXT_FLAG_NONE; @@ -340,20 +362,20 @@ void lv_label_get_letter_pos(lv_obj_t * label, uint16_t index, point_t * pos) /*If the width will be expanded the set the max length to very big */ if(ext->long_mode == LV_LABEL_LONG_EXPAND || ext->long_mode == LV_LABEL_LONG_SCROLL) { - max_w = LV_CORD_MAX; + max_w = CORD_MAX; } /*Search the line of the index letter */; while (text[new_line_start] != '\0') { - new_line_start += txt_get_next_line(&text[line_start], font, labels->letter_space, max_w, flag); + new_line_start += txt_get_next_line(&text[line_start], font, style->letter_space, max_w, flag); if(index < new_line_start || text[new_line_start] == '\0') break; /*The line of 'index' letter begins at 'line_start'*/ - y += letter_height + labels->line_space; + y += letter_height + style->line_space; line_start = new_line_start; } if((text[index - 1] == '\n' || text[index - 1] == '\r') && text[index] == '\0') { - y += letter_height + labels->line_space; + y += letter_height + style->line_space; line_start = index; } @@ -369,13 +391,13 @@ void lv_label_get_letter_pos(lv_obj_t * label, uint16_t index, point_t * pos) } } - x += font_get_width(font, text[i]) + labels->letter_space; + x += (font_get_width(font, text[i]) >> FONT_ANTIALIAS) + style->letter_space; } - if(labels->mid != 0) { + if(style->txt_align == LV_TXT_ALIGN_MID) { cord_t line_w; line_w = txt_get_width(&text[line_start], new_line_start - line_start, - font, labels->letter_space, flag); + font, style->letter_space, flag); x += lv_obj_get_width(label) / 2 - line_w / 2; } @@ -397,9 +419,9 @@ uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos) uint32_t line_start = 0; uint32_t new_line_start = 0; cord_t max_w = lv_obj_get_width(label); - lv_labels_t * style = lv_obj_get_style(label); - const font_t * font = font_get(style->font); - uint8_t letter_height = font_get_height(font); + lv_style_t * style = lv_obj_get_style(label); + const font_t * font = style->font; + uint8_t letter_height = font_get_height(font) >> FONT_ANTIALIAS; cord_t y = 0; txt_flag_t flag = TXT_FLAG_NONE; @@ -407,7 +429,7 @@ uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos) /*If the width will be expanded set the max length to very big */ if(ext->long_mode == LV_LABEL_LONG_EXPAND || ext->long_mode == LV_LABEL_LONG_SCROLL) { - max_w = LV_CORD_MAX; + max_w = CORD_MAX; } /*Search the line of the index letter */; @@ -420,7 +442,7 @@ uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos) /*Calculate the x coordinate*/ cord_t x = 0; - if(style->mid != 0) { + if(style->txt_align == LV_TXT_ALIGN_MID) { cord_t line_w; line_w = txt_get_width(&text[line_start], new_line_start - line_start, font, style->letter_space, flag); @@ -437,7 +459,7 @@ uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos) } } - x += font_get_width(font, text[i]) + style->letter_space; + x += (font_get_width(font, text[i]) >> FONT_ANTIALIAS) + style->letter_space; if(pos->x < x) break; } @@ -445,49 +467,6 @@ uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos) return i; } -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_labels_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_labels_t style - */ -lv_labels_t * lv_labels_get(lv_labels_builtin_t style, lv_labels_t * copy) -{ - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_labels_init(); - style_inited = true; - } - - lv_labels_t * style_p; - - switch(style) { - case LV_LABELS_DEF: - style_p = &lv_labels_def; - break; - case LV_LABELS_BTN: - style_p = &lv_labels_btn; - break; - case LV_LABELS_TXT: - style_p = &lv_labels_txt; - break; - case LV_LABELS_TITLE: - style_p = &lv_labels_title; - break; - default: - style_p = &lv_labels_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_labels_t)); - else memcpy(copy, &lv_labels_def, sizeof(lv_labels_t)); - } - - return style_p; -} - /********************** * STATIC FUNCTIONS @@ -513,13 +492,12 @@ static bool lv_label_design(lv_obj_t * label, const area_t * mask, lv_design_mod area_t cords; lv_obj_get_cords(label, &cords); - opa_t opa = lv_obj_get_opa(label); lv_label_ext_t * ext = lv_obj_get_ext(label); txt_flag_t flag = TXT_FLAG_NONE; if(ext->recolor != 0) flag |= TXT_FLAG_RECOLOR; - lv_draw_label(&cords, mask, lv_obj_get_style(label), opa, ext->txt, flag); + lv_draw_label(&cords, mask, lv_obj_get_style(label), ext->txt, flag); } @@ -537,14 +515,14 @@ static void lv_label_refr_text(lv_obj_t * label) if(ext->txt == NULL) return; cord_t max_w = lv_obj_get_width(label); - lv_labels_t * style = lv_obj_get_style(label); - const font_t * font = font_get(style->font); + lv_style_t * style = lv_obj_get_style(label); + const font_t * font = style->font; ext->dot_end = LV_LABEL_DOT_END_INV; /*Initialize the dot end index*/ /*If the width will be expanded set the max length to very big */ if(ext->long_mode == LV_LABEL_LONG_EXPAND || ext->long_mode == LV_LABEL_LONG_SCROLL) { - max_w = LV_CORD_MAX; + max_w = CORD_MAX; } /*Calc. the height and longest line*/ @@ -569,7 +547,7 @@ static void lv_label_refr_text(lv_obj_t * label) anim.var = label; anim.repeat = 1; anim.playback = 1; - anim.start = font_get_width(font, ' '); + anim.start = font_get_width(font, ' ') >> FONT_ANTIALIAS; anim.act_time = 0; anim.end_cb = NULL; anim.path = anim_get_path(ANIM_PATH_LIN); @@ -579,7 +557,8 @@ static void lv_label_refr_text(lv_obj_t * label) bool hor_anim = false; if(lv_obj_get_width(label) > lv_obj_get_width(parent)) { - anim.end = lv_obj_get_width(parent) - lv_obj_get_width(label) - font_get_width(font, ' '); + anim.end = lv_obj_get_width(parent) - lv_obj_get_width(label) - + (font_get_width(font, ' ') >> FONT_ANTIALIAS); anim.fp = (anim_fp_t) lv_obj_set_x; anim.time = anim_speed_to_time(LV_LABEL_SCROLL_SPEED, anim.start, anim.end); anim_create(&anim); @@ -587,7 +566,8 @@ static void lv_label_refr_text(lv_obj_t * label) } if(lv_obj_get_height(label) > lv_obj_get_height(parent)) { - anim.end = lv_obj_get_height(parent) - lv_obj_get_height(label) - font_get_height(font); + anim.end = lv_obj_get_height(parent) - lv_obj_get_height(label) - + (font_get_height(font) - FONT_ANTIALIAS); anim.fp = (anim_fp_t)lv_obj_set_y; /*Different animation speed if horizontal animation is created too*/ @@ -622,7 +602,7 @@ static void lv_label_refr_text(lv_obj_t * label) ext->dot_tmp[i] = ext->txt[index - LV_LABEL_DOT_NUM + i]; ext->txt[index - LV_LABEL_DOT_NUM + i] = '.'; } - /*The last character is '\0'*/ + /*The last character is '\0'. Save this character from the text too.*/ ext->dot_tmp[i] = ext->txt[index]; ext->txt[index] = '\0'; } @@ -642,33 +622,4 @@ static void lv_label_refr_text(lv_obj_t * label) lv_obj_inv(label); } -/** - * Initialize the label styles - */ -static void lv_labels_init(void) -{ - /*Default style*/ - lv_labels_def.font = LV_FONT_DEFAULT; - lv_labels_def.objs.color = COLOR_MAKE(0x10, 0x18, 0x20); - lv_labels_def.letter_space = 2 * LV_DOWNSCALE; - lv_labels_def.line_space = 2 * LV_DOWNSCALE; - lv_labels_def.mid = 0; - - memcpy(&lv_labels_btn, &lv_labels_def, sizeof(lv_labels_t)); - lv_labels_btn.objs.color = COLOR_MAKE(0xd0, 0xe0, 0xf0); - lv_labels_btn.mid = 1; - - memcpy(&lv_labels_title, &lv_labels_def, sizeof(lv_labels_t)); - lv_labels_title.objs.color = COLOR_MAKE(0x10, 0x20, 0x30); - lv_labels_title.letter_space = 4 * LV_DOWNSCALE; - lv_labels_title.line_space = 4 * LV_DOWNSCALE; - lv_labels_title.mid = 0; - - memcpy(&lv_labels_txt, &lv_labels_def, sizeof(lv_labels_t)); - lv_labels_txt.objs.color = COLOR_MAKE(0x16, 0x23, 0x34); - lv_labels_txt.letter_space = 0 * LV_DOWNSCALE; - lv_labels_txt.line_space = 1 * LV_DOWNSCALE; - lv_labels_txt.mid = 0; - -} #endif diff --git a/lv_objx/lv_label.h b/lv_objx/lv_label.h index fcaaf11eb..f027787a0 100644 --- a/lv_objx/lv_label.h +++ b/lv_objx/lv_label.h @@ -13,8 +13,8 @@ #if USE_LV_LABEL != 0 #include "../lv_obj/lv_obj.h" -#include "../lv_misc/font.h" -#include "../lv_misc/text.h" +#include "misc/gfx/font.h" +#include "misc/gfx/text.h" /********************* * DEFINES @@ -29,8 +29,8 @@ typedef enum { LV_LABEL_LONG_EXPAND, /*Expand the object size to the text size*/ - LV_LABEL_LONG_BREAK, /*Keep the width and break the text and expand the object height*/ - LV_LABEL_LONG_DOTS, /*Keep the size, break the text and write dots in the last line*/ + LV_LABEL_LONG_BREAK, /*Keep the object width, break the too long lines and expand the object height*/ + LV_LABEL_LONG_DOTS, /*Keep the object size, break the text and write dots in the last line*/ LV_LABEL_LONG_SCROLL, /*Expand the object size and scroll the text on the parent (move the label object)*/ }lv_label_long_mode_t; @@ -41,32 +41,12 @@ typedef struct /*New data for this type */ char * txt; /*Text of the label*/ lv_label_long_mode_t long_mode; /*Determinate what to do with the long texts*/ - char dot_tmp[LV_LABEL_DOT_NUM]; /*Store character which are replaced with dots*/ - uint16_t dot_end; /* The text end position in dot mode*/ - uint8_t static_txt :1; /* Flag to indicate the text is static*/ - uint8_t recolor :1; /* Enable in-line letter recoloring*/ + char dot_tmp[LV_LABEL_DOT_NUM + 1]; /*Store the character which are replaced by dots (Handled by the library)*/ + uint16_t dot_end; /*The text end position in dot mode (Handled by the library)*/ + uint8_t static_txt :1; /*Flag to indicate the text is static*/ + uint8_t recolor :1; /*Enable in-line letter re-coloring*/ }lv_label_ext_t; -/*Style of label*/ -typedef struct -{ - lv_objs_t objs; /*Style of ancestor*/ - /*New style element for this type */ - font_types_t font; /*Name of the font. E.g: FONT_DEJAVU_20*/ - uint16_t letter_space; - uint16_t line_space; - uint8_t mid :1; /*1: Align the lines into the middle*/ -}lv_labels_t; - -/*Built-in styles of label*/ -typedef enum -{ - LV_LABELS_DEF, - LV_LABELS_BTN, - LV_LABELS_TXT, - LV_LABELS_TITLE, -}lv_labels_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -111,6 +91,13 @@ void lv_label_set_text_array(lv_obj_t * label, const char * array, uint16_t size */ void lv_label_set_text_static(lv_obj_t * label, const char * text); +/** + * Append a text to the label. The label current label text can not be static. + * @param label pointer to label object + * @param text pointe rto the new text + */ +void lv_label_append_text(lv_obj_t * label, const char * text); + /** * Set the behavior of the label with longer text then the object size * @param label pointer to a label object @@ -139,7 +126,6 @@ const char * lv_label_get_text(lv_obj_t * label); */ lv_label_long_mode_t lv_label_get_long_mode(lv_obj_t * label); - /** * Get the recoloring attribute * @param label pointer to a label object @@ -163,14 +149,6 @@ void lv_label_get_letter_pos(lv_obj_t * label, uint16_t index, point_t * pos); */ uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_labels_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_labels_t style - */ -lv_labels_t * lv_labels_get(lv_labels_builtin_t style, lv_labels_t * copy); - /********************** * MACROS **********************/ diff --git a/lv_objx/lv_led.c b/lv_objx/lv_led.c index 0bcb76238..245bb4183 100644 --- a/lv_objx/lv_led.c +++ b/lv_objx/lv_led.c @@ -9,17 +9,15 @@ #include "lv_conf.h" #if USE_LV_LED != 0 -#include "lv_rect.h" #include "lv_led.h" #include "../lv_draw/lv_draw.h" /********************* * DEFINES *********************/ -#define LV_LED_WIDTH_DEF (30 * LV_DOWNSCALE) -#define LV_LED_HEIGHT_DEF (30 * LV_DOWNSCALE) -#define LV_LED_BRIGHT_DEF 128 -#define LV_LED_BRIGHT_OFF 60 +#define LV_LED_WIDTH_DEF (LV_DPI / 3) +#define LV_LED_HEIGHT_DEF (LV_DPI / 3) +#define LV_LED_BRIGHT_OFF 100 #define LV_LED_BRIGHT_ON 255 /********************** @@ -30,16 +28,12 @@ * STATIC PROTOTYPES **********************/ static bool lv_led_design(lv_obj_t * led, const area_t * mask, lv_design_mode_t mode); -static void lv_leds_init(void); /********************** * STATIC VARIABLES **********************/ - -static lv_leds_t lv_leds_def; -static lv_leds_t lv_leds_red; -static lv_leds_t lv_leds_green; static lv_design_f_t ancestor_design_f; + /********************** * MACROS **********************/ @@ -61,13 +55,13 @@ static lv_design_f_t ancestor_design_f; lv_obj_t * lv_led_create(lv_obj_t * par, lv_obj_t * copy) { /*Create the ancestor basic object*/ - lv_obj_t * new_led = lv_rect_create(par, copy); + lv_obj_t * new_led = lv_obj_create(par, copy); dm_assert(new_led); /*Allocate the object type specific extended data*/ lv_led_ext_t * ext = lv_obj_alloc_ext(new_led, sizeof(lv_led_ext_t)); dm_assert(ext); - ext->bright = LV_LED_BRIGHT_DEF; + ext->bright = LV_LED_BRIGHT_ON; if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_led); @@ -76,7 +70,7 @@ lv_obj_t * lv_led_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new led object*/ if(copy == NULL) { - lv_obj_set_style(new_led, lv_leds_get(LV_LEDS_DEF, NULL)); + lv_obj_set_style(new_led, lv_style_get(LV_STYLE_PRETTY_COLOR, NULL)); lv_obj_set_size(new_led, LV_LED_WIDTH_DEF, LV_LED_HEIGHT_DEF); } /*Copy an existing object*/ @@ -103,18 +97,12 @@ bool lv_led_signal(lv_obj_t * led, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_rect_signal(led, sign, param); + valid = lv_obj_signal(led, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { - switch(sign) { - case LV_SIGNAL_CLEANUP: - /*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/ - break; - default: - break; - } + } return valid; @@ -184,46 +172,6 @@ uint8_t lv_led_get_bright(lv_obj_t * led) return ext->bright; } -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_leds_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_leds_t style - */ -lv_leds_t * lv_leds_get(lv_leds_builtin_t style, lv_leds_t * copy) -{ - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_leds_init(); - style_inited = true; - } - - lv_leds_t *style_p; - - switch(style) { - case LV_LEDS_DEF: - style_p = &lv_leds_def; - break; - case LV_LEDS_RED: - style_p = &lv_leds_red; - break; - case LV_LEDS_GREEN: - style_p = &lv_leds_green; - break; - default: - style_p = &lv_leds_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_leds_t)); - else memcpy(copy, &lv_leds_def, sizeof(lv_leds_t)); - } - - return style_p; -} - /********************** * STATIC FUNCTIONS **********************/ @@ -246,21 +194,20 @@ static bool lv_led_design(lv_obj_t * led, const area_t * mask, lv_design_mode_t } else if(mode == LV_DESIGN_DRAW_MAIN) { /*Make darker colors in a temporary style according to the brightness*/ lv_led_ext_t * ext = lv_obj_get_ext(led); - lv_leds_t * style = lv_obj_get_style(led); + lv_style_t * style = lv_obj_get_style(led); /*Create a temporal style*/ - lv_leds_t leds_tmp; + lv_style_t leds_tmp; memcpy(&leds_tmp, style, sizeof(leds_tmp)); /*Mix. the color with black proportionally with brightness*/ - leds_tmp.bg_rect.objs.color = color_mix(leds_tmp.bg_rect.objs.color, COLOR_BLACK, ext->bright); - leds_tmp.bg_rect.gcolor = color_mix(leds_tmp.bg_rect.gcolor, COLOR_BLACK, ext->bright); - - /*Set smaller light size with lower brightness*/ - /*light = 0 comes to LV_LED_BRIGHTNESS_OFF and the original light comes to LV_LED_BRIGHTNESS_ON*/ - leds_tmp.bg_rect.light = (uint16_t)((uint16_t)(ext->bright - LV_LED_BRIGHT_OFF) * style->bg_rect.light) / - (LV_LED_BRIGHT_ON - LV_LED_BRIGHT_OFF); + leds_tmp.mcolor = color_mix(leds_tmp.mcolor, COLOR_BLACK, ext->bright); + leds_tmp.gcolor = color_mix(leds_tmp.gcolor, COLOR_BLACK, ext->bright); + leds_tmp.bcolor = color_mix(leds_tmp.bcolor, COLOR_BLACK, ext->bright); + /*Set the current swidth according to brightness proportionally between LV_LED_BRIGHT_OFF and LV_LED_BRIGHT_ON*/ + uint16_t bright_tmp = ext->bright; + leds_tmp.swidth = ((bright_tmp - LV_LED_BRIGHT_OFF) * style->swidth) / (LV_LED_BRIGHT_ON - LV_LED_BRIGHT_OFF); led->style_p = &leds_tmp; ancestor_design_f(led, mask, mode); @@ -269,34 +216,4 @@ static bool lv_led_design(lv_obj_t * led, const area_t * mask, lv_design_mode_t return true; } -/** - * Initialize the led styles - */ -static void lv_leds_init(void) -{ - /*Default style (red)*/ - lv_rects_get(LV_RECTS_DEF, &lv_leds_def.bg_rect); - lv_leds_def.bg_rect.objs.color = COLOR_RED; - lv_leds_def.bg_rect.gcolor = COLOR_MARRON, - lv_leds_def.bg_rect.bcolor = COLOR_MAKE(0x40, 0x00, 0x00); - lv_leds_def.bg_rect.lcolor = COLOR_RED; - lv_leds_def.bg_rect.bwidth = 4 * LV_DOWNSCALE; - lv_leds_def.bg_rect.bopa = 50; - lv_leds_def.bg_rect.light = 15 * LV_DOWNSCALE; - lv_leds_def.bg_rect.round = LV_RECT_CIRCLE; - lv_leds_def.bg_rect.hpad = 0; - lv_leds_def.bg_rect.vpad = 0; - lv_leds_def.bg_rect.opad = 0; - - /*Red style*/ - memcpy(&lv_leds_red, &lv_leds_def, sizeof(lv_leds_t)); - - /* Green style */ - memcpy(&lv_leds_green, &lv_leds_def, sizeof(lv_leds_t)); - lv_leds_green.bg_rect.objs.color = COLOR_LIME; - lv_leds_green.bg_rect.gcolor = COLOR_GREEN; - lv_leds_green.bg_rect.bcolor = COLOR_MAKE(0x00, 0x40, 0x00); - lv_leds_green.bg_rect.lcolor = COLOR_LIME; -} - #endif diff --git a/lv_objx/lv_led.h b/lv_objx/lv_led.h index 939bebdf4..5faa9f1d9 100644 --- a/lv_objx/lv_led.h +++ b/lv_objx/lv_led.h @@ -12,11 +12,6 @@ #include "lv_conf.h" #if USE_LV_LED != 0 -/*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_led: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " -#endif - #include "../lv_obj/lv_obj.h" /********************* @@ -30,26 +25,11 @@ /*Data of led*/ typedef struct { - lv_rect_ext_t rect_ext; /*Ext. of ancestor*/ + /*No inherited ext.*/ /*New data for this type */ - uint8_t bright; /*Current brightness of the LED*/ + uint8_t bright; /*Current brightness of the LED (0..255)*/ }lv_led_ext_t; -/*Style of led*/ -typedef struct -{ - lv_rects_t bg_rect;/*Style of ancestor*/ - /*New style element for this type */ -}lv_leds_t; - -/*Built-in styles of led*/ -typedef enum -{ - LV_LEDS_DEF, - LV_LEDS_RED, - LV_LEDS_GREEN, -}lv_leds_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -103,15 +83,6 @@ void lv_led_tgl(lv_obj_t * led); */ uint8_t lv_led_get_bright(lv_obj_t * led); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_leds_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_leds_t style - */ -lv_leds_t * lv_leds_get(lv_leds_builtin_t style, lv_leds_t * copy); - - /********************** * MACROS **********************/ diff --git a/lv_objx/lv_line.c b/lv_objx/lv_line.c index 16bf56f16..556416ace 100644 --- a/lv_objx/lv_line.c +++ b/lv_objx/lv_line.c @@ -10,13 +10,8 @@ #if USE_LV_LINE != 0 #include "lv_line.h" -#include "../lv_draw/lv_draw_vbasic.h" -#include "../lv_draw/lv_draw_rbasic.h" #include "../lv_draw/lv_draw.h" -#include -#include -#include -#include +#include "misc/math/math_base.h" #include #include #include @@ -34,14 +29,10 @@ * STATIC PROTOTYPES **********************/ static bool lv_line_design(lv_obj_t * line, const area_t * mask, lv_design_mode_t mode); -static void lv_lines_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_lines_t lv_lines_def; -static lv_lines_t lv_lines_decor; -static lv_lines_t lv_lines_chart; /********************** * MACROS @@ -62,7 +53,7 @@ lv_obj_t * lv_line_create(lv_obj_t * par, lv_obj_t * copy) lv_obj_t * new_line = lv_obj_create(par, copy); dm_assert(new_line); - /*Extend the basic object to rectangle object*/ + /*Extend the basic object to line object*/ lv_line_ext_t * ext = lv_obj_alloc_ext(new_line, sizeof(lv_line_ext_t)); dm_assert(ext); ext->point_num = 0; @@ -74,18 +65,18 @@ lv_obj_t * lv_line_create(lv_obj_t * par, lv_obj_t * copy) lv_obj_set_design_f(new_line, lv_line_design); lv_obj_set_signal_f(new_line, lv_line_signal); - /*Init the new rectangle*/ + /*Init the new line*/ if(copy == NULL) { - lv_obj_set_style(new_line, lv_lines_get(LV_LINES_DEF, NULL)); + lv_obj_set_style(new_line, lv_style_get(LV_STYLE_PLAIN, NULL)); } /*Copy an existing object*/ else { + lv_line_ext_t * copy_ext = lv_obj_get_ext(copy); lv_line_set_auto_size(new_line,lv_line_get_auto_size(copy)); lv_line_set_y_inv(new_line,lv_line_get_y_inv(copy)); lv_line_set_auto_size(new_line,lv_line_get_auto_size(copy)); lv_line_set_upscale(new_line,lv_line_get_upscale(copy)); - lv_line_set_points(new_line, LV_EA(copy, lv_line_ext_t)->point_array, - LV_EA(copy, lv_line_ext_t)->point_num); + lv_line_set_points(new_line, copy_ext->point_array, copy_ext->point_num); /*Refresh the style with new signal function*/ lv_obj_refr_style(new_line); } @@ -126,7 +117,7 @@ bool lv_line_signal(lv_obj_t * line, lv_signal_t sign, void * param) * Set an array of points. The line object will connect these points. * @param line pointer to a line object * @param point_a an array of points. Only the address is saved, - * so the array can be a local variable which will be destroyed + * so the array can NOT be a local variable which will be destroyed * @param point_num number of points in 'point_a' */ void lv_line_set_points(lv_obj_t * line, const point_t * point_a, uint16_t point_num) @@ -142,15 +133,15 @@ void lv_line_set_points(lv_obj_t * line, const point_t * point_a, uint16_t point if(point_num > 0 && ext->auto_size != 0) { uint16_t i; - cord_t xmax = LV_CORD_MIN; - cord_t ymax = LV_CORD_MIN; + cord_t xmax = CORD_MIN; + cord_t ymax = CORD_MIN; for(i = 0; i < point_num; i++) { xmax = MATH_MAX(point_a[i].x * us, xmax); ymax = MATH_MAX(point_a[i].y * us, ymax); } - lv_lines_t * lines = lv_obj_get_style(line); - lv_obj_set_size(line, xmax + lines->width, ymax + lines->width); + lv_style_t * lines = lv_obj_get_style(line); + lv_obj_set_size(line, xmax + lines->line_width, ymax + lines->line_width); } } @@ -243,45 +234,6 @@ bool lv_line_get_upscale(lv_obj_t * line) return ext->upscale == 0 ? false : true; } -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_lines_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_lines_t style - */ -lv_lines_t * lv_lines_get(lv_lines_builtin_t style, lv_lines_t * copy) -{ - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_lines_init(); - style_inited = true; - } - - lv_lines_t *style_p; - - switch(style) { - case LV_LINES_DEF: - style_p = &lv_lines_def; - break; - case LV_LINES_DECOR: - style_p = &lv_lines_decor; - break; - case LV_LINES_CHART: - style_p = &lv_lines_chart; - break; - default: - style_p = &lv_lines_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_lines_t)); - else memcpy(copy, &lv_lines_def, sizeof(lv_lines_t)); - } - - return style_p; -} /********************** * STATIC FUNCTIONS **********************/ @@ -305,9 +257,7 @@ static bool lv_line_design(lv_obj_t * line, const area_t * mask, lv_design_mode_ if(ext->point_num == 0 || ext->point_array == NULL) return false; - lv_lines_t * lines = lv_obj_get_style(line); - - opa_t opa = lv_obj_get_opa(line); + lv_style_t * style = lv_obj_get_style(line); area_t area; lv_obj_get_cords(line, &area); cord_t x_ofs = area.x1; @@ -334,30 +284,10 @@ static bool lv_line_design(lv_obj_t * line, const area_t * mask, lv_design_mode_ p1.y = h - ext->point_array[i].y * us + y_ofs; p2.y = h - ext->point_array[i + 1].y * us + y_ofs; } - lv_draw_line(&p1, &p2, mask, lines, opa); + lv_draw_line(&p1, &p2, mask, style); } } return true; } -/** - * Initialize the line styles - */ -static void lv_lines_init(void) -{ - /*Default style*/ - lv_lines_def.width = 2 * LV_DOWNSCALE; - lv_lines_def.objs.color = COLOR_RED; - lv_lines_def.objs.transp = 0; - - /*Decoration line style*/ - memcpy(&lv_lines_decor, &lv_lines_def, sizeof(lv_lines_t)); - lv_lines_decor.width = 1 * LV_DOWNSCALE; - lv_lines_decor.objs.color = COLOR_GRAY; - - /*Chart line style*/ - memcpy(&lv_lines_chart, &lv_lines_def, sizeof(lv_lines_t)); - lv_lines_chart.width = 3 * LV_DOWNSCALE; - lv_lines_chart.objs.color = COLOR_RED; -} #endif diff --git a/lv_objx/lv_line.h b/lv_objx/lv_line.h index bb1819630..220b16686 100644 --- a/lv_objx/lv_line.h +++ b/lv_objx/lv_line.h @@ -33,27 +33,10 @@ typedef struct uint8_t upscale :1; /*1: upscale coordinates with LV_DOWNSCALE*/ }lv_line_ext_t; -/*Style of line*/ -typedef struct -{ - lv_objs_t objs; /*Style of ancestor*/ - /*New style element for this type */ - uint16_t width; -}lv_lines_t; - -/*Built-in styles of line*/ -typedef enum -{ - LV_LINES_DEF, - LV_LINES_DECOR, - LV_LINES_CHART, -}lv_lines_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ - /** * Create a line objects * @param par pointer to an object, it will be the parent of the new line @@ -73,7 +56,7 @@ bool lv_line_signal(lv_obj_t * line, lv_signal_t sign, void * param); * Set an array of points. The line object will connect these points. * @param line pointer to a line object * @param point_a an array of points. Only the address is saved, - * so the array can be a local variable which will be destroyed + * so the array can NOT be a local variable which will be destroyed * @param point_num number of points in 'point_a' */ void lv_line_set_points(lv_obj_t * line, const point_t * point_a, uint16_t point_num); @@ -123,14 +106,6 @@ bool lv_line_get_y_inv(lv_obj_t * line); */ bool lv_line_get_upscale(lv_obj_t * line); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_lines_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_lines_t style - */ -lv_lines_t * lv_lines_get(lv_lines_builtin_t style, lv_lines_t * copy); - /********************** * MACROS **********************/ diff --git a/lv_objx/lv_list.c b/lv_objx/lv_list.c index a84f82d0e..9282a741e 100644 --- a/lv_objx/lv_list.c +++ b/lv_objx/lv_list.c @@ -10,13 +10,13 @@ #if USE_LV_LIST != 0 #include "lv_list.h" -#include "lv_rect.h" +#include #include "misc/math/math_base.h" /********************* * DEFINES *********************/ -#define LV_LIST_LAYOUT_DEF LV_RECT_LAYOUT_COL_M +#define LV_LIST_LAYOUT_DEF LV_CONT_LAYOUT_COL_M /********************** * TYPEDEFS @@ -28,14 +28,10 @@ #if 0 static bool lv_list_design(lv_obj_t * list, const area_t * mask, lv_design_mode_t mode); #endif -static void lv_lists_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_lists_t lv_lists_def; -static lv_lists_t lv_lists_scrl; -static lv_lists_t lv_lists_transp; /********************** * MACROS @@ -63,14 +59,35 @@ lv_obj_t * lv_list_create(lv_obj_t * par, lv_obj_t * copy) lv_list_ext_t * ext = lv_obj_alloc_ext(new_list, sizeof(lv_list_ext_t)); dm_assert(ext); + ext->sb_out = 0; + ext->style_img = NULL; + ext->styles_btn[LV_BTN_STATE_REL] = lv_style_get(LV_STYLE_BTN_REL, NULL); + ext->styles_btn[LV_BTN_STATE_PR] = lv_style_get(LV_STYLE_BTN_PR, NULL); + ext->styles_btn[LV_BTN_STATE_TREL] = lv_style_get(LV_STYLE_BTN_TREL, NULL); + ext->styles_btn[LV_BTN_STATE_PR] = lv_style_get(LV_STYLE_BTN_TPR, NULL); + ext->styles_btn[LV_BTN_STATE_INA] = lv_style_get(LV_STYLE_BTN_INA, NULL); + lv_obj_set_signal_f(new_list, lv_list_signal); /*Init the new list object*/ if(copy == NULL) { - lv_obj_set_size_us(new_list, 120, 150); - lv_obj_set_style(new_list, lv_lists_get(LV_LISTS_DEF, NULL)); - lv_rect_set_layout(LV_EA(new_list, lv_list_ext_t)->page_ext.scrl, LV_LIST_LAYOUT_DEF); + lv_obj_set_size(new_list, 2 * LV_DPI, 3 * LV_DPI); + lv_cont_set_layout(ext->page.scrl, LV_LIST_LAYOUT_DEF); + lv_obj_set_style(new_list, lv_style_get(LV_STYLE_TRANSP_TIGHT, NULL)); + lv_obj_set_style(lv_page_get_scrl(new_list), lv_style_get(LV_STYLE_PRETTY, NULL)); + lv_page_set_sb_mode(new_list, LV_PAGE_SB_MODE_AUTO); } else { + lv_list_ext_t * copy_ext = lv_obj_get_ext(copy); + + lv_list_set_styles_btn(new_list, copy_ext->styles_btn[LV_BTN_STATE_REL], + copy_ext->styles_btn[LV_BTN_STATE_PR], + copy_ext->styles_btn[LV_BTN_STATE_TREL], + copy_ext->styles_btn[LV_BTN_STATE_TPR], + copy_ext->styles_btn[LV_BTN_STATE_INA]); + lv_list_set_style_img(new_list, copy_ext->style_img); + + lv_list_set_sb_out(new_list, copy_ext->sb_out); + /*Refresh the style with new signal function*/ lv_obj_refr_style(new_list); } @@ -90,15 +107,6 @@ bool lv_list_signal(lv_obj_t * list, lv_signal_t sign, void * param) /* Include the ancient signal function */ valid = lv_page_signal(list, sign, param); - - /* The object can be deleted so check its validity and then - * make the object specific signal handling */ - if(valid != false) { - switch(sign) { - default: - break; - } - } return valid; } @@ -113,42 +121,44 @@ bool lv_list_signal(lv_obj_t * list, lv_signal_t sign, void * param) */ lv_obj_t * lv_list_add(lv_obj_t * list, const char * img_fn, const char * txt, lv_action_t rel_action) { - lv_lists_t * lists = lv_obj_get_style(list); + lv_style_t * style = lv_obj_get_style(list); + lv_list_ext_t * ext = lv_obj_get_ext(list); /*Create a list element with the image an the text*/ lv_obj_t * liste; liste = lv_btn_create(list, NULL); - lv_obj_set_style(liste, &lists->liste_btns); + lv_btn_set_styles(liste, ext->styles_btn[LV_BTN_STATE_REL], ext->styles_btn[LV_BTN_STATE_PR], + ext->styles_btn[LV_BTN_STATE_TREL], ext->styles_btn[LV_BTN_STATE_TPR], + ext->styles_btn[LV_BTN_STATE_INA]); + lv_btn_set_rel_action(liste, rel_action); lv_page_glue_obj(liste, true); - lv_rect_set_layout(liste, lists->liste_layout); - lv_rect_set_fit(liste, false, true); + lv_cont_set_layout(liste, LV_CONT_LAYOUT_ROW_M); + lv_cont_set_fit(liste, false, true); - if(img_fn != NULL) { + if(img_fn != NULL && img_fn[0] != '\0') { lv_obj_t * img = lv_img_create(liste, NULL); lv_img_set_file(img, img_fn); - lv_obj_set_style(img, &lists->liste_imgs); + lv_obj_set_style(img, ext->style_img); lv_obj_set_click(img, false); } if(txt != NULL) { lv_obj_t * label = lv_label_create(liste, NULL); lv_label_set_text(label, txt); - lv_obj_set_style(label,&lists->liste_labels); + lv_obj_set_style(label, ext->styles_btn[LV_BTN_STATE_REL]); lv_obj_set_click(label, false); } - lv_lists_t * style = lv_obj_get_style(list); - /*Make the size adjustment*/ - cord_t w = lv_obj_get_width(list); - cord_t hpad_tot = lists->bg_pages.bg_rects.hpad + lists->bg_pages.scrl_rects.hpad; + lv_style_t * style_scrl = lv_obj_get_style(lv_page_get_scrl(list)); + cord_t hpad_tot = style->hpad + style_scrl->hpad; w -= hpad_tot * 2; /*Make place for the scrollbar if hpad_tot is too small*/ - if(style->widthe_sb != 0) { - if(hpad_tot < lists->bg_pages.sb_width) w -= lists->bg_pages.sb_width - hpad_tot; + if(ext->sb_out != 0) { + if(hpad_tot < ext->page.sb_width) w -= ext->page.sb_width - hpad_tot; } lv_obj_set_width(liste, w); @@ -204,6 +214,73 @@ void lv_list_down(lv_obj_t * list) * Setter functions *====================*/ +/** + * Enable/Disable to scrollbar outside attribute + * @param list pointer to list object + * @param out true: reduce the buttons width therefore scroll bar will be out of the buttons, + * false: keep button size and place scroll bar on the buttons + */ +void lv_list_set_sb_out(lv_obj_t * list, bool out) +{ + lv_list_ext_t * ext = lv_obj_get_ext(list); + + ext->sb_out = out == false ? 0 : 1; +} + +/** + * Set styles of the list elements of a list in each state + * @param list pointer to list object + * @param rel pointer to a style for releases state + * @param pr pointer to a style for pressed state + * @param trel pointer to a style for toggled releases state + * @param tpr pointer to a style for toggled pressed state + * @param ina pointer to a style for inactive state + */ +void lv_list_set_styles_btn(lv_obj_t * list, lv_style_t * rel, lv_style_t * pr, + lv_style_t * trel, lv_style_t * tpr, + lv_style_t * ina) +{ + lv_list_ext_t * ext = lv_obj_get_ext(list); + + ext->styles_btn[LV_BTN_STATE_REL] = rel; + ext->styles_btn[LV_BTN_STATE_PR] = pr; + ext->styles_btn[LV_BTN_STATE_TREL] = trel; + ext->styles_btn[LV_BTN_STATE_TPR] = tpr; + ext->styles_btn[LV_BTN_STATE_INA] = ina; + + lv_obj_t * scrl = lv_page_get_scrl(list); + lv_obj_t * liste = lv_obj_get_child(scrl, NULL); + while(liste != NULL) + { + lv_btn_set_styles(liste, rel, pr, trel, tpr, ina); + liste = lv_obj_get_child(scrl, liste); + } +} + + +/** + * Set the styles of the list element image (typically to set symbol font) + * @param list pointer to list object + * @param style pointer to the new style of the button images + */ +void lv_list_set_style_img(lv_obj_t * list, lv_style_t * style) +{ + lv_list_ext_t * ext = lv_obj_get_ext(list); + + ext->style_img = style; + + lv_obj_t * scrl = lv_page_get_scrl(list); + lv_obj_t * liste = lv_obj_get_child(scrl, NULL); + lv_obj_t * img; + while(liste != NULL) + { + img = lv_obj_get_child(liste, NULL); /*Now img = the label*/ + img = lv_obj_get_child(liste, img); /*Now img = the image (if ULL then no image) */ + if(img != NULL) lv_obj_set_style(img, style); + + liste = lv_obj_get_child(scrl, liste); + } +} /*===================== * Getter functions @@ -214,7 +291,7 @@ void lv_list_down(lv_obj_t * list) * @param liste pointer to list element * @return pointer to the text */ -const char * lv_list_element_get_txt(lv_obj_t * liste) +const char * lv_list_get_element_text(lv_obj_t * liste) { /*The last child is the label*/ lv_obj_t * label = lv_obj_get_child(liste, NULL); @@ -222,45 +299,45 @@ const char * lv_list_element_get_txt(lv_obj_t * liste) } /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_lists_builtin_t enum - * @param copy_p copy the style to this variable. (NULL if unused) - * @return pointer to an lv_lists_t style + * Get the scroll bar outside attribute + * @param list pointer to list object + * @param en true: scroll bar outside the buttons, false: scroll bar inside */ -lv_lists_t * lv_lists_get(lv_lists_builtin_t style, lv_lists_t * list) +bool lv_list_get_sb_out(lv_obj_t * list, bool en) { - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_lists_init(); - style_inited = true; - } - - lv_lists_t *style_p; - - switch(style) { - case LV_LISTS_DEF: - style_p = &lv_lists_def; - break; - case LV_LISTS_SCRL: - style_p = &lv_lists_scrl; - break; - case LV_LISTS_TRANSP: - style_p = &lv_lists_transp; - break; - default: - style_p = &lv_lists_def; - } - - if(list != NULL) { - if(style_p != NULL) memcpy(list, style_p, sizeof(lv_lists_t)); - else memcpy(list, &lv_lists_def, sizeof(lv_lists_t)); - } - - return style_p; + lv_list_ext_t * ext = lv_obj_get_ext(list); + return ext->sb_out == 0 ? false : true; } +/** + * Get the style of the list elements in a given state + * @param list pointer to a list object + * @param state a state from 'lv_btn_state_t' in which style should be get + * @return pointer to the style in the given state + */ +lv_style_t * lv_list_get_style_liste(lv_obj_t * list, lv_btn_state_t state) +{ + lv_list_ext_t * ext = lv_obj_get_ext(list); + + if(ext->styles_btn[state] == NULL) return lv_obj_get_style(list); + + return ext->styles_btn[state]; +} + + +/** + * Get the style of the list elements images + * @param list pointer to a list object + * @return pointer to the image style + */ +lv_style_t * lv_list_get_style_img(lv_obj_t * list, lv_btn_state_t state) +{ + lv_list_ext_t * ext = lv_obj_get_ext(list); + + if(ext->style_img == NULL) return lv_list_get_style_liste(list, LV_BTN_STATE_REL); + + return ext->style_img; +} /********************** * STATIC FUNCTIONS @@ -290,105 +367,4 @@ static bool lv_list_design(lv_obj_t * list, const area_t * mask, lv_design_mode_ } #endif -/** - * Initialize the list styles - */ -static void lv_lists_init(void) -{ - /*Default style*/ - lv_pages_get(LV_PAGES_DEF, &lv_lists_def.bg_pages); - lv_lists_def.bg_pages.bg_rects.vpad = 0 * LV_DOWNSCALE; - lv_lists_def.bg_pages.bg_rects.hpad = 0 * LV_DOWNSCALE; - lv_lists_def.bg_pages.bg_rects.opad = 0 * LV_DOWNSCALE; - - lv_lists_def.bg_pages.scrl_rects.vpad = 0 * LV_DOWNSCALE; - lv_lists_def.bg_pages.scrl_rects.hpad = 0 * LV_DOWNSCALE; - lv_lists_def.bg_pages.scrl_rects.opad = 5 * LV_DOWNSCALE; - - lv_btns_get(LV_BTNS_DEF, &lv_lists_def.liste_btns); /*List element button style*/ - lv_lists_def.liste_btns.mcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x90, 0xa8, 0xc0); - lv_lists_def.liste_btns.gcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x90, 0xa8, 0xc0); - lv_lists_def.liste_btns.bcolor[LV_BTN_STATE_REL] = COLOR_BLACK; - lv_lists_def.liste_btns.lcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_lists_def.liste_btns.flags[LV_BTN_STATE_REL].light_en = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_REL].transp = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_REL].empty = 0; - - lv_lists_def.liste_btns.mcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x40, 0x60, 0x80);// COLOR_MAKE(0x60, 0x80, 0xa0); - lv_lists_def.liste_btns.gcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x40, 0x60, 0x80);//COLOR_MAKE(0x20, 0x30, 0x40); - lv_lists_def.liste_btns.bcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_lists_def.liste_btns.lcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_lists_def.liste_btns.flags[LV_BTN_STATE_PR].light_en = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_PR].transp = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_PR].empty = 0; - - lv_lists_def.liste_btns.mcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_lists_def.liste_btns.gcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_lists_def.liste_btns.bcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_lists_def.liste_btns.lcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_lists_def.liste_btns.flags[LV_BTN_STATE_TGL_REL].light_en = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_TGL_REL].transp = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_TGL_REL].empty = 0; - - lv_lists_def.liste_btns.mcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x40, 0x60, 0x80); - lv_lists_def.liste_btns.gcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x40, 0x60, 0x80); - lv_lists_def.liste_btns.bcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_lists_def.liste_btns.lcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_lists_def.liste_btns.flags[LV_BTN_STATE_TGL_PR].light_en = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_TGL_PR].transp = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_TGL_PR].empty = 0; - - lv_lists_def.liste_btns.mcolor[LV_BTN_STATE_INA] = COLOR_SILVER; - lv_lists_def.liste_btns.gcolor[LV_BTN_STATE_INA] = COLOR_GRAY; - lv_lists_def.liste_btns.bcolor[LV_BTN_STATE_INA] = COLOR_WHITE; - lv_lists_def.liste_btns.lcolor[LV_BTN_STATE_INA] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_lists_def.liste_btns.flags[LV_BTN_STATE_INA].light_en = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_INA].transp= 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_INA].empty = 0; - - lv_lists_def.liste_btns.rects.objs.color = lv_lists_def.liste_btns.mcolor[LV_BTN_STATE_REL]; - lv_lists_def.liste_btns.rects.gcolor = lv_lists_def.liste_btns.gcolor[LV_BTN_STATE_REL]; - lv_lists_def.liste_btns.rects.bcolor = lv_lists_def.liste_btns.bcolor[LV_BTN_STATE_REL]; - lv_lists_def.liste_btns.rects.objs.transp = 0; - lv_lists_def.liste_btns.rects.empty = 0; - lv_lists_def.liste_btns.rects.light = 6 * LV_DOWNSCALE; - lv_lists_def.liste_btns.rects.bwidth = 0 * LV_DOWNSCALE; - lv_lists_def.liste_btns.rects.bopa = 70; - lv_lists_def.liste_btns.rects.empty = 0; - lv_lists_def.liste_btns.rects.round = 0 * LV_DOWNSCALE; - - lv_labels_get(LV_LABELS_DEF, &lv_lists_def.liste_labels); /*List element label style*/ - lv_lists_def.liste_labels.mid = 0; - - lv_imgs_get(LV_IMGS_DEF, &lv_lists_def.liste_imgs); /*Lit element image style*/ - - lv_lists_def.liste_layout = LV_RECT_LAYOUT_ROW_M; - lv_lists_def.widthe_sb = 1; - - /*Only the scrollable part is visible style*/ - memcpy(&lv_lists_scrl, &lv_lists_def, sizeof(lv_lists_t)); - lv_pages_get(LV_PAGES_TRANSP, &lv_lists_scrl.bg_pages); - lv_lists_scrl.bg_pages.bg_rects.vpad = 0 * LV_DOWNSCALE; - lv_lists_scrl.bg_pages.bg_rects.hpad = 0 * LV_DOWNSCALE; - lv_lists_scrl.bg_pages.bg_rects.opad = 0 * LV_DOWNSCALE; - - lv_lists_scrl.bg_pages.scrl_rects.objs.transp = 0; - lv_lists_scrl.bg_pages.scrl_rects.empty = 0; - lv_lists_scrl.bg_pages.scrl_rects.bwidth = 1 * LV_DOWNSCALE; - lv_lists_scrl.bg_pages.scrl_rects.vpad = 0 * LV_DOWNSCALE; - lv_lists_scrl.bg_pages.scrl_rects.hpad = 0 * LV_DOWNSCALE; - lv_lists_scrl.bg_pages.scrl_rects.opad = 0 * LV_DOWNSCALE; - - /*Transparent list background*/ - memcpy(&lv_lists_transp, &lv_lists_def, sizeof(lv_lists_t)); - lv_pages_get(LV_PAGES_TRANSP, &lv_lists_transp.bg_pages); - lv_lists_transp.bg_pages.bg_rects.vpad = 0 * LV_DOWNSCALE; - lv_lists_transp.bg_pages.bg_rects.hpad = 0 * LV_DOWNSCALE; - lv_lists_transp.bg_pages.bg_rects.opad = 0 * LV_DOWNSCALE; - - lv_lists_transp.bg_pages.scrl_rects.vpad = 0 * LV_DOWNSCALE; - lv_lists_transp.bg_pages.scrl_rects.hpad = 0 * LV_DOWNSCALE; - lv_lists_transp.bg_pages.scrl_rects.opad = 5 * LV_DOWNSCALE; - -} #endif diff --git a/lv_objx/lv_list.h b/lv_objx/lv_list.h index 8125c7542..746f94825 100644 --- a/lv_objx/lv_list.h +++ b/lv_objx/lv_list.h @@ -13,6 +13,10 @@ #if USE_LV_LIST != 0 /*Testing of dependencies*/ +#if USE_LV_PAGE == 0 +#error "lv_list: lv_page is required. Enable it in lv_conf.h (USE_LV_PAGE 1) " +#endif + #if USE_LV_BTN == 0 #error "lv_list: lv_btn is required. Enable it in lv_conf.h (USE_LV_BTN 1) " #endif @@ -25,6 +29,7 @@ #error "lv_list: lv_img is required. Enable it in lv_conf.h (USE_LV_IMG 1) " #endif + #include "../lv_obj/lv_obj.h" #include "lv_page.h" #include "lv_btn.h" @@ -41,31 +46,13 @@ /*Data of list*/ typedef struct { - lv_page_ext_t page_ext; /*Ext. of ancestor*/ + lv_page_ext_t page; /*Ext. of ancestor*/ /*New data for this type */ - /*No new data*/ + lv_style_t * styles_btn[LV_BTN_STATE_NUM]; /*Styles of the list element buttons*/ + lv_style_t * style_img; /*Style of the list element images on buttons*/ + uint8_t sb_out :1; /*1: Keep space for the scrollbar*/ }lv_list_ext_t; -/*Style of list*/ -typedef struct -{ - lv_pages_t bg_pages; /*Style of ancestor*/ - /*New style element for this type */ - lv_btns_t liste_btns; /*List element button style*/ - lv_labels_t liste_labels; /*List element label style*/ - lv_imgs_t liste_imgs; /*List element image style*/ - lv_rect_layout_t liste_layout; /*List element layout (will be removed)*/ - uint8_t widthe_sb :1; /*1: Keep space for the scrollbar*/ -}lv_lists_t; - -/*Built-in styles of list*/ -typedef enum -{ - LV_LISTS_DEF, - LV_LISTS_SCRL, - LV_LISTS_TRANSP, -}lv_lists_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -108,20 +95,62 @@ void lv_list_up(lv_obj_t * list); */ void lv_list_down(lv_obj_t * list); +/** + * Enable/Disable to scrollbar outside attribute + * @param list pointer to list object + * @param out true: reduce the buttons width therefore scroll bar will be out of the buttons, + * false: keep button size and place scroll bar on the buttons + */ +void lv_list_set_sb_out(lv_obj_t * list, bool out); + +/** + * Set styles of the list elements of a list in each state + * @param list pointer to list object + * @param rel pointer to a style for releases state + * @param pr pointer to a style for pressed state + * @param trel pointer to a style for toggled releases state + * @param tpr pointer to a style for toggled pressed state + * @param ina pointer to a style for inactive state + */ +void lv_list_set_styles_btn(lv_obj_t * list, lv_style_t * rel, lv_style_t * pr, + lv_style_t * trel, lv_style_t * tpr, + lv_style_t * ina); + +/** + * Set the styles of the list element image (typically to set symbol font) + * @param list pointer to list object + * @param style pointer to the new style of the button images + */ +void lv_list_set_style_img(lv_obj_t * list, lv_style_t * style); + /** * Get the text of a list element * @param liste pointer to list element * @return pointer to the text */ -const char * lv_list_element_get_txt(lv_obj_t * liste); +const char * lv_list_get_element_text(lv_obj_t * liste); /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_lists_builtin_t enum - * @param copy_p copy the style to this variable. (NULL if unused) - * @return pointer to an lv_lists_t style + * Get the scroll bar outside attribute + * @param list pointer to list object + * @param en true: scroll bar outside the buttons, false: scroll bar inside */ -lv_lists_t * lv_lists_get(lv_lists_builtin_t style, lv_lists_t * list); +bool lv_list_get_sb_out(lv_obj_t * list, bool en); + +/** + * Get the style of the list elements in a given state + * @param list pointer to a list object + * @param state a state from 'lv_btn_state_t' in which style should be get + * @return pointer to the style in the given state + */ +lv_style_t * lv_list_get_style_liste(lv_obj_t * list, lv_btn_state_t state); + +/** + * Get the style of the list elements images + * @param list pointer to a list object + * @return pointer to the image style + */ +lv_style_t * lv_list_get_style_img(lv_obj_t * list, lv_btn_state_t state); /********************** * MACROS diff --git a/lv_objx/lv_lmeter.c b/lv_objx/lv_lmeter.c new file mode 100644 index 000000000..ca5feb3f0 --- /dev/null +++ b/lv_objx/lv_lmeter.c @@ -0,0 +1,236 @@ +/** + * @file lv_lmeter.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#if USE_LV_LMETER != 0 + +#include "lv_lmeter.h" +#include "misc/math/trigo.h" +#include "../lv_draw/lv_draw.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static bool lv_lmeter_design(lv_obj_t * lmeter, const area_t * mask, lv_design_mode_t mode); + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/*----------------- + * Create function + *-----------------*/ + +/** + * Create a line meter objects + * @param par pointer to an object, it will be the parent of the new line meter + * @param copy pointer to a line meter object, if not NULL then the new object will be copied from it + * @return pointer to the created line meter + */ +lv_obj_t * lv_lmeter_create(lv_obj_t * par, lv_obj_t * copy) +{ + /*Create the ancestor of line meter*/ + lv_obj_t * new_lmeter = lv_bar_create(par, copy); + dm_assert(new_lmeter); + + /*Allocate the line meter type specific extended data*/ + lv_lmeter_ext_t * ext = lv_obj_alloc_ext(new_lmeter, sizeof(lv_lmeter_ext_t)); + dm_assert(ext); + + /*Initialize the allocated 'ext' */ + ext->scale_num = 31; /*Odd scale number looks better*/ + ext->scale_angle = 240; /*(scale_num - 1) * N looks better */ + + /*The signal and design functions are not copied so set them here*/ + lv_obj_set_signal_f(new_lmeter, lv_lmeter_signal); + lv_obj_set_design_f(new_lmeter, lv_lmeter_design); + + /*Init the new line meter line meter*/ + if(copy == NULL) { + lv_obj_set_size(new_lmeter, 1 * LV_DPI, 1 * LV_DPI); + lv_obj_set_style(new_lmeter, lv_style_get(LV_STYLE_PRETTY_COLOR, NULL)); + } + /*Copy an existing line meter*/ + else { + lv_lmeter_ext_t * copy_ext = lv_obj_get_ext(copy); + ext->scale_angle = copy_ext->scale_angle; + ext->scale_num = copy_ext->scale_num; + + + /*Refresh the style with new signal function*/ + lv_obj_refr_style(new_lmeter); + } + + return new_lmeter; +} + +/** + * Signal function of the line meter + * @param lmeter pointer to a line meter object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + * @return true: the object is still valid (not deleted), false: the object become invalid + */ +bool lv_lmeter_signal(lv_obj_t * lmeter, lv_signal_t sign, void * param) +{ + bool valid; + + /* Include the ancient signal function */ + valid = lv_bar_signal(lmeter, sign, param); + + /* The object can be deleted so check its validity and then + * make the object specific signal handling */ + if(valid != false) { + if(sign == LV_SIGNAL_CLEANUP) { + /*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/ + } + } + + return valid; +} + +/*===================== + * Setter functions + *====================*/ + +/** + * Set the scale settings of a line meter + * @param lmeter pointer to a line meter object + * @param angle angle of the scale (0..360) + * @param num number of scale units + */ +void lv_lmeter_set_scale(lv_obj_t * lmeter, uint16_t angle, uint8_t num) +{ + lv_lmeter_ext_t * ext = lv_obj_get_ext(lmeter); + ext->scale_angle = angle; + ext->scale_num = num; + + lv_obj_inv(lmeter); +} + + +/*===================== + * Getter functions + *====================*/ + +/** + * Get the scale number of a line meter + * @param lmeter pointer to a line meter object + * @return number of the scale units + */ +uint8_t lv_lmeter_get_scale_num(lv_obj_t * lmeter) +{ + lv_lmeter_ext_t * ext = lv_obj_get_ext(lmeter); + return ext->scale_num ; +} + +/** + * Get the scale angle of a line meter + * @param lmeter pointer to a line meter object + * @return angle of the scale + */ +uint16_t lv_lmeter_get_scale_angle(lv_obj_t * lmeter) +{ + lv_lmeter_ext_t * ext = lv_obj_get_ext(lmeter); + return ext->scale_angle; +} + +/********************** + * STATIC FUNCTIONS + **********************/ + + +/** + * Handle the drawing related tasks of the line meters + * @param lmeter pointer to an object + * @param mask the object will be drawn only in this area + * @param mode LV_DESIGN_COVER_CHK: only check if the object fully covers the 'mask_p' area + * (return 'true' if yes) + * LV_DESIGN_DRAW: draw the object (always return 'true') + * LV_DESIGN_DRAW_POST: drawing after every children are drawn + * @param return true/false, depends on 'mode' + */ +static bool lv_lmeter_design(lv_obj_t * lmeter, const area_t * mask, lv_design_mode_t mode) +{ + /*Return false if the object is not covers the mask_p area*/ + if(mode == LV_DESIGN_COVER_CHK) { + return false; + } + /*Draw the object*/ + else if(mode == LV_DESIGN_DRAW_MAIN) { + lv_lmeter_ext_t * ext = lv_obj_get_ext(lmeter); + lv_style_t * style = lv_obj_get_style(lmeter); + + lv_style_t style_tmp; + memcpy(&style_tmp, style, sizeof(lv_style_t)); + + cord_t r_out = lv_obj_get_width(lmeter) / 2; + cord_t r_in =r_out - style->hpad; + cord_t x_ofs = lv_obj_get_width(lmeter) / 2 + lmeter->cords.x1; + cord_t y_ofs = lv_obj_get_height(lmeter) / 2 + lmeter->cords.y1; + int16_t angle_ofs = 90 + (360 - ext->scale_angle) / 2; + int16_t min = lv_bar_get_min_value(lmeter); + int16_t max = lv_bar_get_max_value(lmeter); + int16_t level = (int32_t)((int32_t)(lv_bar_get_value(lmeter) - min) * ext->scale_num) / (max - min); + uint8_t i; + + style_tmp.ccolor = style->mcolor; + + for(i = 0; i < ext->scale_num; i++) { + /*Calculate the position a scale label*/ + int16_t angle = (i * ext->scale_angle) / (ext->scale_num - 1) + angle_ofs; + + cord_t y_out = (int32_t)((int32_t)trigo_sin(angle) * r_out) / TRIGO_SIN_MAX; + cord_t x_out = (int32_t)((int32_t)trigo_sin(angle + 90) * r_out) / TRIGO_SIN_MAX; + cord_t y_in = (int32_t)((int32_t)trigo_sin(angle) * r_in) / TRIGO_SIN_MAX; + cord_t x_in = (int32_t)((int32_t)trigo_sin(angle + 90) * r_in) / TRIGO_SIN_MAX; + + point_t p1; + point_t p2; + + p2.x = x_in + x_ofs; + p2.y = y_in + y_ofs; + + p1.x = x_out+ x_ofs; + p1.y = y_out + y_ofs; + + if(i > level) style_tmp.ccolor = style->ccolor; + else { + style_tmp.ccolor=color_mix(style->gcolor, style->mcolor, (255 * i) / ext->scale_num); + } + + lv_draw_line(&p1, &p2, mask, &style_tmp); + } + + } + /*Post draw when the children are drawn*/ + else if(mode == LV_DESIGN_DRAW_POST) { + + } + + return true; +} + + +#endif diff --git a/lv_objx/lv_lmeter.h b/lv_objx/lv_lmeter.h new file mode 100644 index 000000000..da7739312 --- /dev/null +++ b/lv_objx/lv_lmeter.h @@ -0,0 +1,93 @@ +/** + * @file lv_lmeter.h + * + */ + +#ifndef LV_LMETER_H +#define LV_LMETER_H + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#include "misc_conf.h" +#if USE_LV_LMETER != 0 + +/*Testing of dependencies*/ +#if USE_LV_BAR == 0 +#error "lv_lmeter: lv_bar is required. Enable it in lv_conf.h (USE_LV_BAR 1) " +#endif + +#if USE_TRIGO == 0 +#error "lv_lmeter: trigo is required. Enable it in misc_conf.h (USE_TRIGO 1) " +#endif + + +#include "../lv_obj/lv_obj.h" +#include "lv_bar.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ +/*Data of line meter*/ +typedef struct +{ + lv_bar_ext_t bar; /*Ext. of ancestor*/ + /*New data for this type */ + uint16_t scale_angle; /*Angle of the scale in deg. (0..360)*/ + uint8_t scale_num; /*Number of scale units */ +}lv_lmeter_ext_t; + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create a line meter objects + * @param par pointer to an object, it will be the parent of the new line meter + * @param copy pointer to a line meter object, if not NULL then the new object will be copied from it + * @return pointer to the created line meter + */ +lv_obj_t * lv_lmeter_create(lv_obj_t * par, lv_obj_t * copy); + +/** + * Signal function of the line meter + * @param lmeter pointer to a line meter object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + * @return true: the object is still valid (not deleted), false: the object become invalid + */ +bool lv_lmeter_signal(lv_obj_t * lmeter, lv_signal_t sign, void * param); + +/** + * Set the scale settings of a line meter + * @param lmeter pointer to a line meter object + * @param angle angle of the scale (0..360) + * @param num number of scale units + */ +void lv_lmeter_set_scale(lv_obj_t * lmeter, uint16_t angle, uint8_t num); + +/** + * Get the scale number of a line meter + * @param lmeter pointer to a line meter object + * @return number of the scale units + */ +uint8_t lv_lmeter_get_scale_num(lv_obj_t * lmeter); + +/** + * Get the scale angle of a line meter + * @param lmeter pointer to a line meter object + * @return angle of the scale + */ +uint16_t lv_lmeter_get_scale_angle(lv_obj_t * lmeter); +/********************** + * MACROS + **********************/ + +#endif + +#endif diff --git a/lv_objx/lv_mbox.c b/lv_objx/lv_mbox.c index 551eaef7c..1d115fd45 100644 --- a/lv_objx/lv_mbox.c +++ b/lv_objx/lv_mbox.c @@ -11,16 +11,13 @@ #if USE_LV_MBOX != 0 #include "lv_mbox.h" -#include "../lv_misc/anim.h" +#include "misc/gfx/anim.h" #include "misc/math/math_base.h" /********************* * DEFINES *********************/ -/*Test configurations*/ -#ifndef LV_MBOX_ANIM_TIME -#define LV_MBOX_ANIM_TIME 250 /*How fast animate out the message box in auto close. 0: no animation [ms]*/ -#endif +#define LV_MBOX_CLOSE_ANIM_TIME 200 /*Default close anim. time [ms]*/ /********************** * TYPEDEFS @@ -32,18 +29,12 @@ #if 0 /*Unused*/ static bool lv_mbox_design(lv_obj_t * mbox, const area_t * mask, lv_design_mode_t mode); #endif -static void lv_mboxs_init(void); static void lv_mbox_realign(lv_obj_t * mbox); static void lv_mbox_disable_fit(lv_obj_t * mbox); /********************** * STATIC VARIABLES **********************/ -static lv_mboxs_t lv_mboxs_def; /*Default message box style*/ -static lv_mboxs_t lv_mboxs_info; -static lv_mboxs_t lv_mboxs_warn; -static lv_mboxs_t lv_mboxs_err; - /********************** * MACROS **********************/ @@ -65,45 +56,46 @@ static lv_mboxs_t lv_mboxs_err; lv_obj_t * lv_mbox_create(lv_obj_t * par, lv_obj_t * copy) { /*Create the ancestor message box*/ - lv_obj_t * new_mbox = lv_rect_create(par, copy); + lv_obj_t * new_mbox = lv_cont_create(par, copy); dm_assert(new_mbox); /*Allocate the message box type specific extended data*/ lv_mbox_ext_t * ext = lv_obj_alloc_ext(new_mbox, sizeof(lv_mbox_ext_t)); dm_assert(ext); ext->txt = NULL; - ext->title = NULL; ext->btnh = NULL; + ext->style_btn_rel = lv_style_get(LV_STYLE_BTN_REL, NULL); + ext->style_btn_pr = lv_style_get(LV_STYLE_BTN_PR, NULL); + ext->anim_close_time = LV_MBOX_CLOSE_ANIM_TIME; /*The signal and design functions are not copied so set them here*/ lv_obj_set_signal_f(new_mbox, lv_mbox_signal); /*Init the new message box message box*/ if(copy == NULL) { - lv_rect_set_layout(new_mbox, LV_RECT_LAYOUT_COL_L); - lv_rect_set_fit(new_mbox, true, true); + lv_cont_set_layout(new_mbox, LV_CONT_LAYOUT_COL_L); + lv_cont_set_fit(new_mbox, true, true); ext->txt = lv_label_create(new_mbox, NULL); lv_label_set_text(ext->txt, "Text of the message box"); - lv_obj_set_style(new_mbox, lv_mboxs_get(LV_MBOXS_DEF, NULL)); + lv_obj_set_style(new_mbox, lv_style_get(LV_STYLE_PRETTY, NULL)); } /*Copy an existing message box*/ else { lv_mbox_ext_t * copy_ext = lv_obj_get_ext(copy); ext->txt = lv_label_create(new_mbox, copy_ext->txt); - lv_mbox_set_title(new_mbox, lv_mbox_get_title(copy)); /*Copy the buttons and the label on them*/ if(copy_ext->btnh != NULL) { - lv_obj_t * btn; - const char * btn_txt; - btn = lv_obj_get_child(copy_ext->btnh, NULL); - while(btn != NULL) { - btn_txt = lv_label_get_text(lv_obj_get_child(btn, NULL)); - lv_mbox_add_btn(new_mbox, btn_txt, LV_EA(btn, lv_btn_ext_t)->rel_action); - btn = lv_obj_get_child(copy_ext->btnh, btn); + lv_obj_t * btn_copy; + const char * btn_txt_copy; + lv_btn_ext_t * btn_ext_copy; + LL_READ_BACK(copy_ext->btnh->child_ll, btn_copy) { + btn_txt_copy = lv_label_get_text(lv_obj_get_child(btn_copy, NULL)); + btn_ext_copy = lv_obj_get_ext(btn_copy); + lv_mbox_add_btn(new_mbox, btn_txt_copy, btn_ext_copy->rel_action); } } /*Refresh the style with new signal function*/ @@ -127,92 +119,97 @@ bool lv_mbox_signal(lv_obj_t * mbox, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_rect_signal(mbox, sign, param); + valid = lv_cont_signal(mbox, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); - lv_mboxs_t * style = lv_obj_get_style(mbox); - lv_obj_t * btn; - switch(sign) { - case LV_SIGNAL_CLEANUP: - /*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/ - break; - case LV_SIGNAL_CORD_CHG: - /*If the size is changed refresh the message box*/ - if(area_get_width(param) != lv_obj_get_width(mbox) || - area_get_height(param) != lv_obj_get_height(mbox)) { - lv_mbox_realign(mbox); - } - break; - case LV_SIGNAL_LONG_PRESS: -#if LV_MBOX_ANIM_TIME != 0 - lv_mbox_start_auto_close(mbox, 0); -#else - lv_obj_del(mbox); - valid = false; -#endif - lv_dispi_wait_release(param); - break; - case LV_SIGNAL_STYLE_CHG: - if(ext->title != NULL) lv_obj_set_style(ext->title, &style->title); - lv_obj_set_style(ext->txt, &style->txt); - if(ext->btnh != NULL) lv_obj_set_style(ext->btnh, &style->btnh); + if(sign == LV_SIGNAL_CORD_CHG) { + /*If the size is changed refresh the message box*/ + if(area_get_width(param) != lv_obj_get_width(mbox) || + area_get_height(param) != lv_obj_get_height(mbox)) { + lv_mbox_realign(mbox); + } + } + else if(sign == LV_SIGNAL_LONG_PRESS) { + lv_mbox_start_auto_close(mbox, 0); + lv_dispi_wait_release(param); + valid = false; + } + else if(sign == LV_SIGNAL_STYLE_CHG) { + /*Refresh all the buttons*/ + if(ext->btnh != NULL) { + lv_obj_t * btn; + btn = lv_obj_get_child(ext->btnh, NULL); + while(btn != NULL) { + /*Refresh the next button's style*/ + lv_btn_set_styles(btn, ext->style_btn_rel, ext->style_btn_pr, NULL, NULL, NULL); - /*Refresh all the buttons*/ - if(ext->btnh != NULL) { - btn = lv_obj_get_child(ext->btnh, NULL); - while(btn != NULL) { - /*Refresh the next button's style*/ - lv_obj_set_style(btn, &style->btn); - - /*Refresh the button label too*/ - lv_obj_set_style(lv_obj_get_child(btn, NULL), &style->btn_label); - btn = lv_obj_get_child(ext->btnh, btn); - } - } - break; - default: - break; - } + btn = lv_obj_get_child(ext->btnh, btn); + } + } + } } return valid; } +/** + * A release action which can be assigned to a message box button to close it + * @param btn pointer to the released button + * @param dispi pointer to the caller display input + * @return always lv_action_res_t because the button is deleted with the mesage box + */ +lv_action_res_t lv_mbox_close_action(lv_obj_t * btn, lv_dispi_t * dispi) +{ + lv_obj_t * mbox = lv_mbox_get_from_btn(btn); + + lv_obj_del(mbox); + + return LV_ACTION_RES_INV; +} + +/** + * Add a button to the message box + * @param mbox pointer to message box object + * @param btn_txt the text of the button + * @param rel_action a function which will be called when the button is released + * @return pointer to the created button (lv_btn) + */ +lv_obj_t * lv_mbox_add_btn(lv_obj_t * mbox, const char * btn_txt, lv_action_t rel_action) +{ + lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); + + /*Create a button if it is not existed yet*/ + if(ext->btnh == NULL) { + ext->btnh = lv_cont_create(mbox, NULL); + lv_obj_set_style(ext->btnh, lv_style_get(LV_STYLE_TRANSP, NULL)); + lv_obj_set_click(ext->btnh, false); + lv_cont_set_fit(ext->btnh, false, true); + lv_cont_set_layout(ext->btnh, LV_CONT_LAYOUT_PRETTY); + } + + lv_obj_t * btn; + btn = lv_btn_create(ext->btnh, NULL); + lv_btn_set_rel_action(btn, rel_action); + lv_btn_set_styles(btn, ext->style_btn_rel, ext->style_btn_pr, NULL, NULL, NULL); + lv_cont_set_fit(btn, true, true); + + lv_obj_t * label; + label = lv_label_create(btn, NULL); + lv_label_set_text(label, btn_txt); + + lv_mbox_realign(mbox); + + return btn; +} + /*===================== * Setter functions *====================*/ -/** - * Set the title of the message box - * @param mbox pointer to a message box - * @param title a '\0' terminated character string which will be the message box title - */ -void lv_mbox_set_title(lv_obj_t * mbox, const char * title) -{ - lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); - lv_mboxs_t * style = lv_obj_get_style(mbox); - - if(title[0] != '\0') { - if(ext->title == NULL) { - ext->title = lv_label_create(mbox, NULL); - lv_obj_set_style(ext->title, &style->title); - /*Set the other parents again. It will look like they were created later */ - lv_obj_set_parent(ext->txt, mbox); - if(ext->btnh != NULL) lv_obj_set_parent(ext->btnh, mbox); - } - lv_label_set_text(ext->title, title); - } else if(ext->title != NULL) { - lv_obj_del(ext->title); - ext->title = NULL; - } - - lv_mbox_realign(mbox); -} - /** * Set the text of the message box * @param mbox pointer to a message box @@ -227,55 +224,37 @@ void lv_mbox_set_text(lv_obj_t * mbox, const char * txt) } /** - * Add a button to the message box - * @param mbox pointer to message box object - * @param btn_txt the text of the button - * @param rel_action a function which will be called when the button is relesed - * @return pointer to the created button (lv_btn) + * Set styles of the buttons of a message box in each state + * @param mbox pointer to a message box object + * @param rel pointer to a style for releases state + * @param pr pointer to a style for pressed state + * @param trel pointer to a style for toggled releases state + * @param tpr pointer to a style for toggled pressed state + * @param ina pointer to a style for inactive state */ -lv_obj_t * lv_mbox_add_btn(lv_obj_t * mbox, const char * btn_txt, lv_action_t rel_action) +void lv_mbox_set_styles_btn(lv_obj_t * mbox, lv_style_t * rel, lv_style_t * pr) { - lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); - lv_mboxs_t * style = lv_obj_get_style(mbox); + lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); - /*Create a button if it is not existed yet*/ - if(ext->btnh == NULL) { - ext->btnh = lv_rect_create(mbox, NULL); - lv_obj_set_style(ext->btnh, &style->btnh); - lv_obj_set_click(ext->btnh, false); - lv_rect_set_fit(ext->btnh, false, true); - lv_rect_set_layout(ext->btnh, LV_RECT_LAYOUT_PRETTY); - } + ext->style_btn_rel = rel; + ext->style_btn_pr = pr; + lv_obj_t * btn = lv_obj_get_child(ext->btnh, NULL); - lv_obj_t * btn; - btn = lv_btn_create(ext->btnh, NULL); - lv_btn_set_rel_action(btn, rel_action); - lv_obj_set_style(btn, &style->btn); - lv_rect_set_fit(btn, true, true); - - lv_obj_t * label; - label = lv_label_create(btn, NULL); - lv_obj_set_style(label, &style->btn_label); - lv_label_set_text(label, btn_txt); - - lv_mbox_realign(mbox); - - return btn; + while(btn != NULL) { + lv_btn_set_styles(btn, rel, pr, NULL, NULL, NULL); + btn = lv_obj_get_child(mbox, btn); + } } /** - * A release action which can be assigned to a message box button to close it - * @param btn pointer to the released button - * @param dispi pointer to the caller display input - * @return always lv_action_res_t because the button is deleted with the mesage box + * Set close animation duration + * @param mbox pointer to a message box object + * @param time animation length in milliseconds (0: no animation) */ -lv_action_res_t lv_mbox_close_action(lv_obj_t * btn, lv_dispi_t * dispi) +void lv_mbox_set_anim_close_time(lv_obj_t * mbox, uint16_t time) { - lv_obj_t * mbox = lv_mbox_get_from_btn(btn); - - lv_obj_del(mbox); - - return LV_ACTION_RES_INV; + lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); + ext->anim_close_time = time; } /** @@ -285,17 +264,18 @@ lv_action_res_t lv_mbox_close_action(lv_obj_t * btn, lv_dispi_t * dispi) */ void lv_mbox_start_auto_close(lv_obj_t * mbox, uint16_t tout) { -#if LV_MBOX_ANIM_TIME != 0 - /*Add shrinking animations*/ - lv_obj_anim(mbox, LV_ANIM_GROW_H| ANIM_OUT, LV_MBOX_ANIM_TIME, tout, NULL); - lv_obj_anim(mbox, LV_ANIM_GROW_V| ANIM_OUT, LV_MBOX_ANIM_TIME, tout, lv_obj_del); + lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); - /*When the animations start disable fit to let shrinking work*/ - lv_obj_anim(mbox, LV_ANIM_NONE, 1, tout, lv_mbox_disable_fit); + if(ext->anim_close_time != 0) { + /*Add shrinking animations*/ + lv_obj_anim(mbox, LV_ANIM_GROW_H| ANIM_OUT, ext->anim_close_time, tout, NULL); + lv_obj_anim(mbox, LV_ANIM_GROW_V| ANIM_OUT, ext->anim_close_time, tout, lv_obj_del); -#else - lv_obj_anim(mbox, LV_ANIM_NONE, LV_MBOX_ANIM_TIME, tout, lv_obj_del); -#endif + /*When the animations start disable fit to let shrinking work*/ + lv_obj_anim(mbox, LV_ANIM_NONE, 1, tout, lv_mbox_disable_fit); + } else { + lv_obj_anim(mbox, LV_ANIM_NONE, ext->anim_close_time, tout, lv_obj_del); + } } /** @@ -311,18 +291,6 @@ void lv_mbox_stop_auto_close(lv_obj_t * mbox) * Getter functions *====================*/ -/** - * get the title of the message box - * @param mbox pointer to a message box object - * @return pointer to the title of the message box - */ -const char * lv_mbox_get_title(lv_obj_t * mbox) -{ - lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); - - return ext->title == NULL ? "" : lv_label_get_text(ext->title); -} - /** * Get the text of the message box * @param mbox pointer to a message box object @@ -349,51 +317,30 @@ lv_obj_t * lv_mbox_get_from_btn(lv_obj_t * btn) return mbox; } - /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_mboxs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_mboxs_t style + * Get the close animation duration + * @param mbox pointer to a message box object + * @return animation length in milliseconds (0: no animation) */ -lv_mboxs_t * lv_mboxs_get(lv_mboxs_builtin_t style, lv_mboxs_t * copy) +uint16_t lv_mbox_get_anim_close_time(lv_obj_t * mbox ) { - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_mboxs_init(); - style_inited = true; - } - - lv_mboxs_t *style_p; - - switch(style) { - case LV_MBOXS_DEF: - style_p = &lv_mboxs_def; - break; - case LV_MBOXS_INFO: - style_p = &lv_mboxs_info; - break; - case LV_MBOXS_WARN: - style_p = &lv_mboxs_warn; - break; - case LV_MBOXS_ERR: - style_p = &lv_mboxs_err; - break; - default: - style_p = &lv_mboxs_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_mboxs_t)); - else memcpy(copy, &lv_mboxs_def, sizeof(lv_mboxs_t)); - } - - return style_p; + lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); + return ext->anim_close_time; } +/** + * Get the style of the buttons on a message box + * @param mbox pointer to a message box object + * @param state a state from 'lv_btn_state_t' in which style should be get + * @return pointer to the style in the given state + */ +lv_style_t * lv_mbox_get_style_btn(lv_obj_t * mbox, lv_btn_state_t state) +{ + lv_btn_ext_t * ext = lv_obj_get_ext(mbox); + if(ext->styles[state] == NULL) return lv_obj_get_style(mbox); + return ext->styles[state]; +} /********************** * STATIC FUNCTIONS @@ -436,7 +383,6 @@ static void lv_mbox_realign(lv_obj_t * mbox) /*Set the button holder width to the width of the text and title*/ if(ext->btnh != NULL) { - cord_t title_w = ext->title == NULL ? 0 :lv_obj_get_width(ext->title); cord_t txt_w = lv_obj_get_width(ext->txt); cord_t btn_w = 0; lv_obj_t * btn; @@ -446,8 +392,7 @@ static void lv_mbox_realign(lv_obj_t * mbox) btn = lv_obj_get_child(ext->btnh, btn); } - cord_t w = MATH_MAX(title_w, txt_w); - w = MATH_MAX(w, btn_w); + cord_t w = MATH_MAX(txt_w, btn_w); lv_obj_set_width(ext->btnh, w ); } } @@ -458,65 +403,7 @@ static void lv_mbox_realign(lv_obj_t * mbox) */ static void lv_mbox_disable_fit(lv_obj_t * mbox) { - lv_rect_set_fit(mbox, false, false); -} - -/** - * Initialize the message box styles - */ -static void lv_mboxs_init(void) -{ - /*Default style*/ - lv_rects_get(LV_RECTS_DEF, &lv_mboxs_def.bg); - lv_mboxs_def.bg.light = 8 * LV_DOWNSCALE; - - lv_btns_get(LV_BTNS_DEF, &lv_mboxs_def.btn); - lv_mboxs_def.btn.flags[LV_BTN_STATE_PR].light_en = 0; - lv_mboxs_def.btn.flags[LV_BTN_STATE_REL].light_en = 0; - lv_labels_get(LV_LABELS_TITLE, &lv_mboxs_def.title); - lv_labels_get(LV_LABELS_TXT, &lv_mboxs_def.txt); - lv_labels_get(LV_LABELS_BTN, &lv_mboxs_def.btn_label); - lv_rects_get(LV_RECTS_TRANSP, &lv_mboxs_def.btnh); - lv_mboxs_def.btnh.hpad = 0; - lv_mboxs_def.btnh.vpad = 0; - - memcpy(&lv_mboxs_info, &lv_mboxs_def, sizeof(lv_mboxs_t)); - lv_mboxs_info.bg.objs.color = COLOR_BLACK; - lv_mboxs_info.bg.gcolor = COLOR_BLACK; - lv_mboxs_info.bg.bcolor = COLOR_WHITE; - lv_mboxs_info.title.objs.color = COLOR_WHITE; - lv_mboxs_info.txt.objs.color = COLOR_WHITE; - lv_mboxs_info.txt.letter_space = 2 * LV_DOWNSCALE; - - lv_btns_get(LV_BTNS_BORDER, &lv_mboxs_info.btn); - lv_mboxs_info.btn.bcolor[LV_BTN_STATE_PR] = COLOR_SILVER; - lv_mboxs_info.btn.bcolor[LV_BTN_STATE_REL] = COLOR_WHITE; - lv_mboxs_info.btn.mcolor[LV_BTN_STATE_PR] = COLOR_GRAY; - lv_mboxs_info.btn.gcolor[LV_BTN_STATE_PR] = COLOR_GRAY; - lv_mboxs_info.btn.rects.bopa = OPA_COVER; - lv_mboxs_info.btn_label.objs.color = COLOR_WHITE; - - memcpy(&lv_mboxs_warn, &lv_mboxs_info, sizeof(lv_mboxs_t)); - lv_mboxs_warn.bg.objs.color = COLOR_MAKE(0xff, 0xb2, 0x66); - lv_mboxs_warn.bg.gcolor = COLOR_MAKE(0xff, 0xad, 0x29); - lv_mboxs_warn.btn.bcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x10, 0x10, 0x10); - lv_mboxs_warn.btn.bcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x10, 0x10, 0x10); - lv_mboxs_warn.btn.mcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0xa8, 0x6e, 0x33); - lv_mboxs_warn.btn.gcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0xa8, 0x6e, 0x33); - lv_mboxs_warn.title.objs.color = COLOR_MAKE(0x10, 0x10, 0x10); - lv_mboxs_warn.txt.objs.color = COLOR_MAKE(0x10, 0x10, 0x10);; - lv_mboxs_warn.btn_label.objs.color = COLOR_MAKE(0x10, 0x10, 0x10); - - memcpy(&lv_mboxs_err, &lv_mboxs_warn, sizeof(lv_mboxs_t)); - lv_mboxs_err.bg.objs.color = COLOR_MAKE(0xff, 0x66, 0x66); - lv_mboxs_err.bg.gcolor = COLOR_MAKE(0x99, 0x22, 0x22); - lv_mboxs_err.btn.bcolor[LV_BTN_STATE_REL] = COLOR_BLACK; - lv_mboxs_err.btn.bcolor[LV_BTN_STATE_PR] = COLOR_BLACK; - lv_mboxs_err.btn.mcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x70, 0x00, 0x00); - lv_mboxs_err.btn.gcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x70, 0x00, 0x00); - lv_mboxs_err.title.objs.color = COLOR_BLACK; - lv_mboxs_err.txt.objs.color = COLOR_BLACK; - lv_mboxs_err.btn_label.objs.color = COLOR_BLACK; + lv_cont_set_fit(mbox, false, false); } #endif diff --git a/lv_objx/lv_mbox.h b/lv_objx/lv_mbox.h index 6097fe61e..df31e7eb7 100644 --- a/lv_objx/lv_mbox.h +++ b/lv_objx/lv_mbox.h @@ -13,8 +13,8 @@ #if USE_LV_MBOX != 0 /*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_mbox: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " +#if USE_LV_CONT == 0 +#error "lv_mbox: lv_cont is required. Enable it in lv_conf.h (USE_LV_CONT 1) " #endif #if USE_LV_BTN == 0 @@ -27,7 +27,7 @@ #include "../lv_obj/lv_obj.h" -#include "lv_rect.h" +#include #include "lv_btn.h" #include "lv_label.h" @@ -42,35 +42,15 @@ /*Data of message box*/ typedef struct { - lv_rect_ext_t rect; /*Ext. of ancestor*/ + lv_cont_ext_t bg; /*Ext. of ancestor*/ /*New data for this type */ - lv_obj_t * title; /*Title of the message box*/ - lv_obj_t * txt; /*Text of the message box*/ - lv_obj_t * btnh; /*Holder of the buttons*/ + lv_obj_t * txt; /*Text of the message box*/ + lv_obj_t * btnh; /*Holder of the buttons*/ + lv_style_t * style_btn_rel; /*Style of the released buttons*/ + lv_style_t * style_btn_pr; /*Style of the pressed buttons*/ + uint16_t anim_close_time; /*Duration of close animation [ms] (0: no animation)*/ }lv_mbox_ext_t; - -/*Style of message box*/ -typedef struct -{ - lv_rects_t bg; /*Style of ancestor*/ - /*New style element for this type */ - lv_labels_t title; /*Style of the title*/ - lv_labels_t txt; /*Style of the text*/ - lv_rects_t btnh; /*Style of the button holder*/ - lv_btns_t btn; /*Style of the buttons*/ - lv_labels_t btn_label; /*Style of the label on the buttons*/ -}lv_mboxs_t; - -/*Built-in styles of message box*/ -typedef enum -{ - LV_MBOXS_DEF, - LV_MBOXS_INFO, - LV_MBOXS_WARN, - LV_MBOXS_ERR, -}lv_mboxs_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -93,11 +73,21 @@ lv_obj_t * lv_mbox_create(lv_obj_t * par, lv_obj_t * copy); bool lv_mbox_signal(lv_obj_t * mbox, lv_signal_t sign, void * param); /** - * Set the title of the message box - * @param mbox pointer to a message box - * @param title a '\0' terminated character string which will be the message box title + * A release action which can be assigned to a message box button to close it + * @param btn pointer to the released button + * @param dispi pointer to the caller display input + * @return always lv_action_res_t because the button is deleted with the mesage box */ -void lv_mbox_set_title(lv_obj_t * mbox, const char * title); +lv_action_res_t lv_mbox_close_action(lv_obj_t * btn, lv_dispi_t * dispi); + +/** + * Add a button to the message box + * @param mbox pointer to message box object + * @param btn_txt the text of the button + * @param rel_action a function which will be called when the button is released + * @return pointer to the created button (lv_btn) + */ +lv_obj_t * lv_mbox_add_btn(lv_obj_t * mbox, const char * btn_txt, lv_action_t rel_action); /** * Set the text of the message box @@ -107,21 +97,22 @@ void lv_mbox_set_title(lv_obj_t * mbox, const char * title); void lv_mbox_set_text(lv_obj_t * mbox, const char * txt); /** - * Add a button to the message box - * @param mbox pointer to message box object - * @param btn_txt the text of the button - * @param rel_action a function which will be called when the button is relesed - * @return pointer to the created button (lv_btn) + * Set styles of the buttons of a message box in each state + * @param mbox pointer to a message box object + * @param rel pointer to a style for releases state + * @param pr pointer to a style for pressed state + * @param trel pointer to a style for toggled releases state + * @param tpr pointer to a style for toggled pressed state + * @param ina pointer to a style for inactive state */ -lv_obj_t * lv_mbox_add_btn(lv_obj_t * mbox, const char * btn_txt, lv_action_t rel_action); +void lv_mbox_set_styles_btn(lv_obj_t * mbox, lv_style_t * rel, lv_style_t * pr); /** - * A release action which can be assigned to a message box button to close it - * @param btn pointer to the released button - * @param dispi pointer to the caller display input - * @return always LV_ACTION_RES_INV because the button is deleted with the message box + * Set close animation duration + * @param mbox pointer to a message box object + * @param time animation length in milliseconds (0: no animation) */ -lv_action_res_t lv_mbox_close_action(lv_obj_t * btn, lv_dispi_t * dispi); +void lv_mbox_set_anim_close_time(lv_obj_t * mbox, uint16_t time); /** * Automatically delete the message box after a given time @@ -136,13 +127,6 @@ void lv_mbox_start_auto_close(lv_obj_t * mbox, uint16_t tout); */ void lv_mbox_stop_auto_close(lv_obj_t * mbox); -/** - * get the title of the message box - * @param mbox pointer to a message box object - * @return pointer to the title of the message box - */ -const char * lv_mbox_get_title(lv_obj_t * mbox); - /** * Get the text of the message box * @param mbox pointer to a message box object @@ -159,12 +143,19 @@ const char * lv_mbox_get_txt(lv_obj_t * mbox); lv_obj_t * lv_mbox_get_from_btn(lv_obj_t * btn); /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_mboxs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_mboxs_t style + * Get the close animation duration + * @param mbox pointer to a message box object + * @return animation length in milliseconds (0: no animation) */ -lv_mboxs_t * lv_mboxs_get(lv_mboxs_builtin_t style, lv_mboxs_t * copy); +uint16_t lv_mbox_get_anim_close_time(lv_obj_t * mbox ); + +/** + * Get the style of the buttons on a message box + * @param mbox pointer to a message box object + * @param state a state from 'lv_btn_state_t' in which style should be get + * @return pointer to the style in the given state + */ +lv_style_t * lv_mbox_get_style_btn(lv_obj_t * mbox, lv_btn_state_t state); /********************** * MACROS diff --git a/lv_objx/lv_objx_templ.c b/lv_objx/lv_objx_templ.c index ed17d2cb6..3ee6b7287 100644 --- a/lv_objx/lv_objx_templ.c +++ b/lv_objx/lv_objx_templ.c @@ -29,12 +29,10 @@ * STATIC PROTOTYPES **********************/ static bool lv_templ_design(lv_obj_t * templ, const area_t * mask, lv_design_mode_t mode); -static void lv_templs_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_templs_t lv_templs_def; /*Default template style*/ /********************** * MACROS @@ -56,7 +54,7 @@ static lv_templs_t lv_templs_def; /*Default template style*/ */ lv_obj_t * lv_templ_create(lv_obj_t * par, lv_obj_t * copy) { - /*Create the ancestor template*/ + /*Create the ancestor of template*/ /*TODO modify it to the ancestor create function */ lv_obj_t * new_templ = lv_ANCESTOR_create(par, copy); dm_assert(new_templ); @@ -66,7 +64,7 @@ lv_obj_t * lv_templ_create(lv_obj_t * par, lv_obj_t * copy) dm_assert(ext); /*Initialize the allocated 'ext' */ - + ext->xyz = 0; /*The signal and design functions are not copied so set them here*/ lv_obj_set_signal_f(new_templ, lv_templ_signal); @@ -74,7 +72,7 @@ lv_obj_t * lv_templ_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new template template*/ if(copy == NULL) { - lv_obj_set_style(new_templ, lv_templs_get(LV_TEMPLS_DEF, NULL)); + lv_obj_set_style(new_templ, lv_style_get(LV_STYLE_PRETTY, NULL)); } /*Copy an existing template*/ else { @@ -105,12 +103,8 @@ bool lv_templ_signal(lv_obj_t * templ, lv_signal_t sign, void * param) /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { - switch(sign) { - case LV_SIGNAL_CLEANUP: - /*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/ - break; - default: - break; + if(sign == LV_SIGNAL_CLEANUP) { + /*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/ } } @@ -121,44 +115,19 @@ bool lv_templ_signal(lv_obj_t * templ, lv_signal_t sign, void * param) * Setter functions *====================*/ +/* + * New object specific "set" function comes here + */ + /*===================== * Getter functions *====================*/ -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_templs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_templs_t style +/* + * New object specific "get" function comes here */ -lv_templs_t * lv_templs_get(lv_templs_builtin_t style, lv_templs_t * copy) -{ - static bool style_inited = false; - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_templs_init(); - style_inited = true; - } - - lv_templs_t *style_p; - - switch(style) { - case LV_TEMPLS_DEF: - style_p = &lv_templs_def; - break; - default: - style_p = &lv_templs_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_templs_t)); - else memcpy(copy, &lv_templs_def, sizeof(lv_templs_t)); - } - - return style_p; -} /********************** * STATIC FUNCTIONS @@ -194,12 +163,4 @@ static bool lv_templ_design(lv_obj_t * templ, const area_t * mask, lv_design_mod } -/** - * Initialize the built-in template styles - */ -static void lv_templs_init(void) -{ - /*Default style*/ -} - #endif diff --git a/lv_objx/lv_objx_templ.h b/lv_objx/lv_objx_templ.h index 039c85f9d..6998a6484 100644 --- a/lv_objx/lv_objx_templ.h +++ b/lv_objx/lv_objx_templ.h @@ -35,19 +35,6 @@ typedef struct /*New data for this type */ }lv_templ_ext_t; -/*Style of template*/ -typedef struct -{ - /*Style of ancestor*/ - /*New style element for this type */ -}lv_templs_t; - -/*Built-in styles of template*/ -typedef enum -{ - LV_TEMPLS_DEF, -}lv_templs_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -69,13 +56,6 @@ lv_obj_t * lv_templ_create(lv_obj_t * par, lv_obj_t * copy); */ bool lv_templ_signal(lv_obj_t * templ, lv_signal_t sign, void * param); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_templs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_templs_t style - */ -lv_templs_t * lv_templs_get(lv_templs_builtin_t style, lv_templs_t * copy); /********************** * MACROS diff --git a/lv_objx/lv_page.c b/lv_objx/lv_page.c index 5eb8596a1..2f47fce28 100644 --- a/lv_objx/lv_page.c +++ b/lv_objx/lv_page.c @@ -11,18 +11,14 @@ #include "misc/math/math_base.h" #include "../lv_objx/lv_page.h" -#include "../lv_objx/lv_rect.h" +#include "../lv_objx/lv_cont.h" #include "../lv_draw/lv_draw.h" #include "../lv_obj/lv_refr.h" -#include "../lv_misc/anim.h" +#include "misc/gfx/anim.h" /********************* * DEFINES *********************/ -/*Test configurations*/ -#ifndef LV_PAGE_ANIM_FOCUS_TIME -#define LV_PAGE_ANIM_FOCUS_TIME 300 /*List focus animation time [ms] (0: turn off the animation)*/ -#endif /********************** * TYPEDEFS @@ -34,14 +30,10 @@ static void lv_page_sb_refresh(lv_obj_t * main); static bool lv_page_design(lv_obj_t * page, const area_t * mask, lv_design_mode_t mode); static bool lv_scrl_signal(lv_obj_t * scrl, lv_signal_t sign, void* param); -static void lv_pages_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_pages_t lv_pages_def; -static lv_pages_t lv_pages_simple; -static lv_pages_t lv_pages_transp; static lv_design_f_t ancestor_design_f; /********************** @@ -65,7 +57,7 @@ static lv_design_f_t ancestor_design_f; lv_obj_t * lv_page_create(lv_obj_t * par, lv_obj_t * copy) { /*Create the ancestor object*/ - lv_obj_t * new_page = lv_rect_create(par, copy); + lv_obj_t * new_page = lv_cont_create(par, copy); dm_assert(new_page); /*Allocate the object type specific extended data*/ @@ -76,32 +68,42 @@ lv_obj_t * lv_page_create(lv_obj_t * par, lv_obj_t * copy) ext->rel_action = NULL; ext->sbh_draw = 0; ext->sbv_draw = 0; + ext->style_sb = lv_style_get(LV_STYLE_PRETTY, NULL); + ext->sb_width = LV_DPI / 8; /*Will be modified later*/ + ext->sb_mode = LV_PAGE_SB_MODE_ON; if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_page); /*Init the new page object*/ if(copy == NULL) { - lv_pages_t * pages = lv_pages_get(LV_PAGES_DEF, NULL); - ext->scrl = lv_rect_create(new_page, NULL); + lv_style_t * style = lv_style_get(LV_STYLE_PRETTY_COLOR, NULL); + ext->scrl = lv_cont_create(new_page, NULL); lv_obj_set_signal_f(ext->scrl, lv_scrl_signal); lv_obj_set_drag(ext->scrl, true); lv_obj_set_drag_throw(ext->scrl, true); lv_obj_set_protect(ext->scrl, LV_PROTECT_PARENT); - lv_rect_set_fit(ext->scrl, true, true); - lv_obj_set_style(ext->scrl, &pages->scrl_rects); + lv_cont_set_fit(ext->scrl, true, true); + lv_obj_set_style(ext->scrl, lv_style_get(LV_STYLE_PRETTY, NULL)); + + lv_page_set_sb_width(new_page, style->hpad); + lv_page_set_sb_mode(new_page, ext->sb_mode); + lv_page_set_style_sb(new_page, ext->style_sb); /* Add the signal function only if 'scrolling' is created * because everything has to be ready before any signal is received*/ lv_obj_set_signal_f(new_page, lv_page_signal); lv_obj_set_design_f(new_page, lv_page_design); - lv_obj_set_style(new_page, pages); + lv_obj_set_style(new_page, style); } else { lv_page_ext_t * copy_ext = lv_obj_get_ext(copy); - ext->scrl = lv_rect_create(new_page, copy_ext->scrl); + ext->scrl = lv_cont_create(new_page, copy_ext->scrl); lv_obj_set_signal_f(ext->scrl, lv_scrl_signal); lv_page_set_pr_action(new_page, copy_ext->pr_action); lv_page_set_rel_action(new_page, copy_ext->rel_action); + lv_page_set_sb_mode(new_page, copy_ext->sb_mode); + lv_page_set_sb_width(new_page, copy_ext->sb_width); + lv_page_set_style_sb(new_page, copy_ext->style_sb); /* Add the signal function only if 'scrolling' is created * because everything has to be ready before any signal is received*/ @@ -129,13 +131,12 @@ bool lv_page_signal(lv_obj_t * page, lv_signal_t sign, void * param) bool obj_valid = true; /* Include the ancient signal function */ - obj_valid = lv_rect_signal(page, sign, param); + obj_valid = lv_cont_signal(page, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(obj_valid != false) { lv_page_ext_t * ext = lv_obj_get_ext(page); - lv_pages_t * pages = lv_obj_get_style(page); lv_obj_t * child; switch(sign) { case LV_SIGNAL_CHILD_CHG: /*Move children to the scrollable object*/ @@ -152,11 +153,7 @@ bool lv_page_signal(lv_obj_t * page, lv_signal_t sign, void * param) break; case LV_SIGNAL_STYLE_CHG: - area_set_height(&ext->sbh, pages->sb_width); - area_set_width(&ext->sbv, pages->sb_width); - lv_obj_set_style(ext->scrl, &pages->scrl_rects); - - if(pages->sb_mode == LV_PAGE_SB_MODE_ON) { + if(ext->sb_mode == LV_PAGE_SB_MODE_ON) { ext->sbh_draw = 1; ext->sbv_draw = 1; } else { @@ -212,7 +209,7 @@ static bool lv_scrl_signal(lv_obj_t * scrl, lv_signal_t sign, void* param) bool obj_valid = true; /* Include the ancient signal function */ - obj_valid = lv_rect_signal(scrl, sign, param); + obj_valid = lv_cont_signal(scrl, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ @@ -225,10 +222,10 @@ static bool lv_scrl_signal(lv_obj_t * scrl, lv_signal_t sign, void* param) area_t page_cords; area_t obj_cords; lv_obj_t * page = lv_obj_get_parent(scrl); - lv_pages_t * style = lv_obj_get_style(page); + lv_style_t * page_style = lv_obj_get_style(page); lv_page_ext_t * page_ext = lv_obj_get_ext(page); - cord_t hpad = style->bg_rects.hpad; - cord_t vpad = style->bg_rects.vpad; + cord_t hpad = page_style->hpad; + cord_t vpad = page_style->vpad; switch(sign) { case LV_SIGNAL_CORD_CHG: @@ -280,9 +277,9 @@ static bool lv_scrl_signal(lv_obj_t * scrl, lv_signal_t sign, void* param) break; case LV_SIGNAL_DRAG_BEGIN: - if(style->sb_mode == LV_PAGE_SB_MODE_DRAG ) { - cord_t sbh_pad = MATH_MAX(style->sb_width, style->bg_rects.hpad); - cord_t sbv_pad = MATH_MAX(style->sb_width, style->bg_rects.vpad); + if(page_ext->sb_mode == LV_PAGE_SB_MODE_DRAG ) { + cord_t sbh_pad = MATH_MAX(page_ext->sb_width, page_style->hpad); + cord_t sbv_pad = MATH_MAX(page_ext->sb_width, page_style->vpad); if(area_get_height(&page_ext->sbv) < lv_obj_get_height(scrl) - 2 * sbv_pad) { page_ext->sbv_draw = 1; } @@ -293,7 +290,7 @@ static bool lv_scrl_signal(lv_obj_t * scrl, lv_signal_t sign, void* param) break; case LV_SIGNAL_DRAG_END: - if(style->sb_mode == LV_PAGE_SB_MODE_DRAG) { + if(page_ext->sb_mode == LV_PAGE_SB_MODE_DRAG) { area_t sb_area_tmp; if(page_ext->sbh_draw != 0) { area_cpy(&sb_area_tmp, &page_ext->sbh); @@ -362,6 +359,45 @@ void lv_page_set_pr_action(lv_obj_t * page, lv_action_t pr_action) ext->pr_action = pr_action; } +/** + * Set the scroll bar width on a page + * @param page pointer to a page object + * @param sb_width the new scroll bar width in pixels + */ +void lv_page_set_sb_width(lv_obj_t * page, cord_t sb_width) +{ + lv_page_ext_t * ext = lv_obj_get_ext(page); + ext->sb_width = sb_width; + area_set_height(&ext->sbh, ext->sb_width); + area_set_width(&ext->sbv, ext->sb_width); + lv_page_sb_refresh(page); + lv_obj_inv(page); +} + +/** + * Set the scroll bar mode on a page + * @param page pointer to a page object + * @param sb_mode the new mode from 'lv_page_sb_mode_t' enum + */ +void lv_page_set_sb_mode(lv_obj_t * page, lv_page_sb_mode_t sb_mode) +{ + lv_page_ext_t * ext = lv_obj_get_ext(page); + ext->sb_mode = sb_mode; + page->signal_f(page, LV_SIGNAL_STYLE_CHG, NULL); + lv_obj_inv(page); +} + +/** + * Set a new style for the scroll bars object on the page + * @param page pointer to a page object + * @param style pointer to a style for the scroll bars + */ +void lv_page_set_style_sb(lv_obj_t * page, lv_style_t * style) +{ + lv_page_ext_t * ext = lv_obj_get_ext(page); + ext->style_sb = style; + lv_obj_inv(page); +} /** * Glue the object to the page. After it the page can be moved (dragged) with this object too. @@ -378,20 +414,20 @@ void lv_page_glue_obj(lv_obj_t * obj, bool glue) * Focus on an object. It ensures that the object will be visible on the page. * @param page pointer to a page object * @param obj pointer to an object to focus (must be on the page) - * @param anim_en true: scroll with animation + * @param anim_time scroll animation time in milliseconds (0: no animation) */ -void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, bool anim_en) +void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, uint16_t anim_time) { lv_page_ext_t * ext = lv_obj_get_ext(page); - lv_pages_t * style = lv_obj_get_style(page); + lv_style_t * style = lv_obj_get_style(page); + lv_obj_t * scrl = lv_page_get_scrl(page); + lv_style_t * style_scrl = lv_obj_get_style(scrl); cord_t obj_y = obj->cords.y1 - ext->scrl->cords.y1; cord_t obj_h = lv_obj_get_height(obj); cord_t scrlable_y = lv_obj_get_y(ext->scrl); cord_t page_h = lv_obj_get_height(page); - bool refr = false; - cord_t top_err = -(scrlable_y + obj_y); cord_t bot_err = scrlable_y + obj_y + obj_h - page_h; @@ -400,9 +436,8 @@ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, bool anim_en) if((obj_h <= page_h && top_err > 0) || (obj_h > page_h && top_err < bot_err)) { /*Calculate a new position and to let scrable_rects.vpad space above*/ - scrlable_y = -(obj_y - style->scrl_rects.vpad - style->bg_rects.vpad); - scrlable_y += style->scrl_rects.vpad; - refr = true; + scrlable_y = -(obj_y - style_scrl->vpad - style->vpad); + scrlable_y += style_scrl->vpad; } /*Out of the page on the bottom*/ else if((obj_h <= page_h && bot_err > 0) || @@ -410,33 +445,29 @@ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, bool anim_en) /*Calculate a new position and to let scrable_rects.vpad space below*/ scrlable_y = -obj_y; scrlable_y += page_h - obj_h; - scrlable_y -= style->scrl_rects.vpad; - refr = true; + scrlable_y -= style_scrl->vpad; + } else { + /*Alraedy in focus*/ + return; } - if(refr != false) { -#if LV_PAGE_ANIM_FOCUS_TIME == 0 + if(anim_time == 0) { lv_obj_set_y(ext->scrl, scrlable_y); -#else - if(anim_en == false) { - lv_obj_set_y(ext->scrl, scrlable_y); - } else { - anim_t a; - a.act_time = 0; - a.start = lv_obj_get_y(ext->scrl); - a.end = scrlable_y; - a.time = LV_PAGE_ANIM_FOCUS_TIME;//anim_speed_to_time(LV_PAGE_ANIM_SPEED, a.start, a.end); - a.end_cb = NULL; - a.playback = 0; - a.repeat = 0; - a.var = ext->scrl; - a.path = anim_get_path(ANIM_PATH_LIN); - - a.fp = (anim_fp_t) lv_obj_set_y; - anim_create(&a); - } -#endif - } + } + else { + anim_t a; + a.act_time = 0; + a.start = lv_obj_get_y(ext->scrl); + a.end = scrlable_y; + a.time = anim_time; + a.end_cb = NULL; + a.playback = 0; + a.repeat = 0; + a.var = ext->scrl; + a.path = anim_get_path(ANIM_PATH_LIN); + a.fp = (anim_fp_t) lv_obj_set_y; + anim_create(&a); + } } /*===================== @@ -446,7 +477,7 @@ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, bool anim_en) /** * Get the scrollable object of a page- * @param page pointer to page object - * @return pointer to rectangle which is the scrollable part of the page + * @return pointer to a container which is the scrollable part of the page */ lv_obj_t * lv_page_get_scrl(lv_obj_t * page) { @@ -454,45 +485,39 @@ lv_obj_t * lv_page_get_scrl(lv_obj_t * page) return ext->scrl; } +/** + * Get the scroll bar width on a page + * @param page pointer to a page object + * @return the scroll bar width in pixels + */ +cord_t lv_page_get_sb_width(lv_obj_t * page) +{ + lv_page_ext_t * ext = lv_obj_get_ext(page); + return ext->sb_width; +} /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_pages_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_pages_t style + * Set the scroll bar mode on a page + * @param page pointer to a page object + * @return the mode from 'lv_page_sb_mode_t' enum */ -lv_pages_t * lv_pages_get(lv_pages_builtin_t style, lv_pages_t * copy) +lv_page_sb_mode_t lv_page_get_sb_mode(lv_obj_t * page) { - static bool style_inited = false; + lv_page_ext_t * ext = lv_obj_get_ext(page); + return ext->sb_mode; +} - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_pages_init(); - style_inited = true; - } +/** + * Set a new style for the scroll bars object on the page + * @param page pointer to a page object + * @return pointer to a style for the scroll bars + */ +lv_style_t * lv_page_get_style_sb(lv_obj_t * page) +{ + lv_page_ext_t * ext = lv_obj_get_ext(page); + if(ext->style_sb == NULL) return lv_obj_get_style(page); - lv_pages_t * style_p; - - switch(style) { - case LV_PAGES_DEF: - style_p = &lv_pages_def; - break; - case LV_PAGES_SIMPLE: - style_p = &lv_pages_simple; - break; - case LV_PAGES_TRANSP: - style_p = &lv_pages_transp; - break; - default: - style_p = &lv_pages_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_pages_t)); - else memcpy(copy, &lv_pages_def, sizeof(lv_pages_t)); - } - - return style_p; + else return ext->style_sb; } /********************** @@ -517,10 +542,7 @@ static bool lv_page_design(lv_obj_t * page, const area_t * mask, lv_design_mode_ ancestor_design_f(page, mask, mode); } else if(mode == LV_DESIGN_DRAW_POST) { /*Draw the scroll bars finally*/ ancestor_design_f(page, mask, mode); - lv_page_ext_t * ext = lv_obj_get_ext(page); - lv_pages_t * style = lv_obj_get_style(page); - opa_t sb_opa = lv_obj_get_opa(page) * style->sb_opa /100; /*Draw the scrollbars*/ area_t sb_area; @@ -531,7 +553,7 @@ static bool lv_page_design(lv_obj_t * page, const area_t * mask, lv_design_mode_ sb_area.y1 += page->cords.y1; sb_area.x2 += page->cords.x1; sb_area.y2 += page->cords.y1; - lv_draw_rect(&sb_area, mask, &style->sb_rects, sb_opa); + lv_draw_rect(&sb_area, mask, ext->style_sb); } if(ext->sbv_draw != 0) { @@ -541,7 +563,7 @@ static bool lv_page_design(lv_obj_t * page, const area_t * mask, lv_design_mode_ sb_area.y1 += page->cords.y1; sb_area.x2 += page->cords.x1; sb_area.y2 += page->cords.y1; - lv_draw_rect(&sb_area, mask, &style->sb_rects, sb_opa); + lv_draw_rect(&sb_area, mask, ext->style_sb); } } @@ -559,38 +581,38 @@ static void lv_page_sb_refresh(lv_obj_t * page) * - horizontal and vertical scrollbars can overlap on the corners * - if the page has radius the scrollbar can be out of the radius */ - lv_page_ext_t * page_ext = lv_obj_get_ext(page); - lv_pages_t * style = lv_obj_get_style(page); - lv_obj_t * scrl = page_ext->scrl; + lv_page_ext_t * ext = lv_obj_get_ext(page); + lv_style_t * style = lv_obj_get_style(page); + lv_obj_t * scrl = ext->scrl; cord_t size_tmp; cord_t scrl_w = lv_obj_get_width(scrl); cord_t scrl_h = lv_obj_get_height(scrl); - cord_t hpad = style->bg_rects.hpad; - cord_t vpad = style->bg_rects.vpad; + cord_t hpad = style->hpad; + cord_t vpad = style->vpad; cord_t obj_w = lv_obj_get_width(page); cord_t obj_h = lv_obj_get_height(page); - cord_t sbh_pad = MATH_MAX(style->sb_width, style->bg_rects.hpad); - cord_t sbv_pad = MATH_MAX(style->sb_width, style->bg_rects.vpad); + cord_t sbh_pad = MATH_MAX(ext->sb_width, style->hpad); + cord_t sbv_pad = MATH_MAX(ext->sb_width, style->vpad); - if(style->sb_mode == LV_PAGE_SB_MODE_OFF) return; + if(ext->sb_mode == LV_PAGE_SB_MODE_OFF) return; - if(style->sb_mode == LV_PAGE_SB_MODE_ON) { - page_ext->sbh_draw = 1; - page_ext->sbv_draw = 1; + if(ext->sb_mode == LV_PAGE_SB_MODE_ON) { + ext->sbh_draw = 1; + ext->sbv_draw = 1; } /*Invalidate the current (old) scrollbar areas*/ area_t sb_area_tmp; - if(page_ext->sbh_draw != 0) { - area_cpy(&sb_area_tmp, &page_ext->sbh); + if(ext->sbh_draw != 0) { + area_cpy(&sb_area_tmp, &ext->sbh); sb_area_tmp.x1 += page->cords.x1; sb_area_tmp.y1 += page->cords.y1; sb_area_tmp.x2 += page->cords.x2; sb_area_tmp.y2 += page->cords.y2; lv_inv_area(&sb_area_tmp); } - if(page_ext->sbv_draw != 0) { - area_cpy(&sb_area_tmp, &page_ext->sbv); + if(ext->sbv_draw != 0) { + area_cpy(&sb_area_tmp, &ext->sbv); sb_area_tmp.x1 += page->cords.x1; sb_area_tmp.y1 += page->cords.y1; sb_area_tmp.x2 += page->cords.x2; @@ -600,48 +622,48 @@ static void lv_page_sb_refresh(lv_obj_t * page) /*Horizontal scrollbar*/ if(scrl_w <= obj_w - 2 * hpad) { /*Full sized scroll bar*/ - area_set_width(&page_ext->sbh, obj_w - 2 * sbh_pad); - area_set_pos(&page_ext->sbh, sbh_pad, obj_h - style->sb_width); - if(style->sb_mode == LV_PAGE_SB_MODE_AUTO) page_ext->sbh_draw = 0; + area_set_width(&ext->sbh, obj_w - 2 * sbh_pad); + area_set_pos(&ext->sbh, sbh_pad, obj_h - ext->sb_width); + if(ext->sb_mode == LV_PAGE_SB_MODE_AUTO) ext->sbh_draw = 0; } else { size_tmp = (obj_w * (obj_w - (2 * sbh_pad))) / (scrl_w + 2 * hpad); - area_set_width(&page_ext->sbh, size_tmp); + area_set_width(&ext->sbh, size_tmp); - area_set_pos(&page_ext->sbh, sbh_pad + + area_set_pos(&ext->sbh, sbh_pad + (-(lv_obj_get_x(scrl) - hpad) * (obj_w - size_tmp - 2 * sbh_pad)) / - (scrl_w + 2 * hpad - obj_w ), obj_h - style->sb_width); + (scrl_w + 2 * hpad - obj_w ), obj_h - ext->sb_width); - if(style->sb_mode == LV_PAGE_SB_MODE_AUTO) page_ext->sbh_draw = 1; + if(ext->sb_mode == LV_PAGE_SB_MODE_AUTO) ext->sbh_draw = 1; } /*Vertical scrollbar*/ if(scrl_h <= obj_h - 2 * vpad) { /*Full sized scroll bar*/ - area_set_height(&page_ext->sbv, obj_h - 2 * sbv_pad); - area_set_pos(&page_ext->sbv, obj_w - style->sb_width, sbv_pad); - if(style->sb_mode == LV_PAGE_SB_MODE_AUTO) page_ext->sbv_draw = 0; + area_set_height(&ext->sbv, obj_h - 2 * sbv_pad); + area_set_pos(&ext->sbv, obj_w - ext->sb_width, sbv_pad); + if(ext->sb_mode == LV_PAGE_SB_MODE_AUTO) ext->sbv_draw = 0; } else { size_tmp = (obj_h * (obj_h - (2 * sbv_pad))) / (scrl_h + 2 * vpad); - area_set_height(&page_ext->sbv, size_tmp); + area_set_height(&ext->sbv, size_tmp); - area_set_pos(&page_ext->sbv, obj_w - style->sb_width, + area_set_pos(&ext->sbv, obj_w - ext->sb_width, sbv_pad + (-(lv_obj_get_y(scrl) - vpad) * (obj_h - size_tmp - 2 * sbv_pad)) / (scrl_h + 2 * vpad - obj_h )); - if(style->sb_mode == LV_PAGE_SB_MODE_AUTO) page_ext->sbv_draw = 1; + if(ext->sb_mode == LV_PAGE_SB_MODE_AUTO) ext->sbv_draw = 1; } /*Invalidate the new scrollbar areas*/ - if(page_ext->sbh_draw != 0) { - area_cpy(&sb_area_tmp, &page_ext->sbh); + if(ext->sbh_draw != 0) { + area_cpy(&sb_area_tmp, &ext->sbh); sb_area_tmp.x1 += page->cords.x1; sb_area_tmp.y1 += page->cords.y1; sb_area_tmp.x2 += page->cords.x2; sb_area_tmp.y2 += page->cords.y2; lv_inv_area(&sb_area_tmp); } - if(page_ext->sbv_draw != 0) { - area_cpy(&sb_area_tmp, &page_ext->sbv); + if(ext->sbv_draw != 0) { + area_cpy(&sb_area_tmp, &ext->sbv); sb_area_tmp.x1 += page->cords.x1; sb_area_tmp.y1 += page->cords.y1; sb_area_tmp.x2 += page->cords.x2; @@ -650,45 +672,4 @@ static void lv_page_sb_refresh(lv_obj_t * page) } } -/** - * Initialize the page styles - */ -static void lv_pages_init(void) -{ - /*Default style*/ - lv_rects_get(LV_RECTS_DEF, &lv_pages_def.bg_rects); - - lv_rects_get(LV_RECTS_DEF, &lv_pages_def.scrl_rects); - lv_pages_def.scrl_rects.objs.color = COLOR_WHITE; - lv_pages_def.scrl_rects.gcolor = COLOR_SILVER; - lv_pages_def.scrl_rects.bcolor = COLOR_GRAY; - - lv_rects_get(LV_RECTS_DEF, &lv_pages_def.sb_rects); - lv_pages_def.sb_rects.objs.color = COLOR_BLACK; - lv_pages_def.sb_rects.gcolor = COLOR_BLACK; - lv_pages_def.sb_rects.bcolor = COLOR_WHITE; - lv_pages_def.sb_rects.bwidth = 1 * LV_DOWNSCALE; - lv_pages_def.sb_rects.round = 5 * LV_DOWNSCALE; - - lv_pages_def.sb_width= 8 * LV_DOWNSCALE; - lv_pages_def.sb_opa=50; - lv_pages_def.sb_mode = LV_PAGE_SB_MODE_AUTO; - - /*No (transparent) scrollable style*/ - memcpy(&lv_pages_simple, &lv_pages_def, sizeof(lv_pages_t)); - lv_rects_get(LV_RECTS_TRANSP, &lv_pages_simple.scrl_rects); - lv_pages_simple.scrl_rects.vpad = 0 * LV_DOWNSCALE; - lv_pages_simple.scrl_rects.hpad = 0 * LV_DOWNSCALE; - - /*Transparent style*/ - memcpy(&lv_pages_transp, &lv_pages_simple, sizeof(lv_pages_t)); - lv_rects_get(LV_RECTS_TRANSP, &lv_pages_transp.bg_rects); - lv_pages_transp.bg_rects.vpad = 10 * LV_DOWNSCALE; - lv_pages_transp.bg_rects.hpad = 10 * LV_DOWNSCALE; - lv_pages_transp.bg_rects.opad = 10 * LV_DOWNSCALE; - /* Make transparent bg. only witth bwidth = 0 nad empty = 1 - * because with transp = 1 the design function will not be called - * to draw the scrollbars*/ - lv_pages_transp.bg_rects.objs.transp = 0; -} #endif diff --git a/lv_objx/lv_page.h b/lv_objx/lv_page.h index 9ad5149fd..117103afb 100644 --- a/lv_objx/lv_page.h +++ b/lv_objx/lv_page.h @@ -13,12 +13,13 @@ #if USE_LV_PAGE != 0 /*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_page: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " +#if USE_LV_CONT == 0 +#error "lv_page: lv_cont is required. Enable it in lv_conf.h (USE_LV_CONT 1) " #endif #include "../lv_obj/lv_obj.h" -#include "lv_rect.h" +#include "lvgl/lv_objx/lv_cont.h" +#include "../lv_obj/lv_dispi.h" /********************* * DEFINES @@ -28,48 +29,32 @@ * TYPEDEFS **********************/ -/*Data of page*/ -typedef struct -{ - lv_rect_ext_t rect_ext; /*Ext. of ancestor*/ - /*New data for this type */ - lv_obj_t * scrl; /*The scrollable object on the background*/ - lv_action_t rel_action; /*Release action*/ - lv_action_t pr_action; /*Press action*/ - area_t sbh; /*Horizontal scrollbar area (relative to the page) */ - area_t sbv; /*Vertical scrollbar area (relative to the page)*/ - uint8_t sbh_draw :1; /*1: horizontal scrollbar is visible now*/ - uint8_t sbv_draw :1; /*1: vertical scrollbar is visible now*/ -}lv_page_ext_t; - /*Scrollbar modes: shows when should the scrollbars be visible*/ typedef enum { - LV_PAGE_SB_MODE_OFF, /*Never show scrollbars*/ - LV_PAGE_SB_MODE_ON, /*Always show scrollbars*/ - LV_PAGE_SB_MODE_DRAG, /*Show scrollbars when page is being dragged*/ - LV_PAGE_SB_MODE_AUTO, /*Show scrollbars when the scrollable rect. is large enough to be scrolled*/ + LV_PAGE_SB_MODE_OFF, /*Never show scrollbars*/ + LV_PAGE_SB_MODE_ON, /*Always show scrollbars*/ + LV_PAGE_SB_MODE_DRAG, /*Show scrollbars when page is being dragged*/ + LV_PAGE_SB_MODE_AUTO, /*Show scrollbars when the scrollable container is large enough to be scrolled*/ }lv_page_sb_mode_t; -/*Style of page*/ +/*Data of page*/ typedef struct { - lv_rects_t bg_rects; /*Style of ancestor*/ - /*New style element for this type */ - lv_rects_t scrl_rects; /*Style of the scrollable rectangle*/ - lv_rects_t sb_rects; /*Style of scrollbars*/ - cord_t sb_width; /*Width of the scrollbars*/ - lv_page_sb_mode_t sb_mode; /*Scrollbar visibility from 'lv_page_sb_mode_t'*/ - uint8_t sb_opa; /*Opacity of scrollbars in percentage of object opacity (0..100)*/ -}lv_pages_t; + lv_cont_ext_t bg; /*Ext. of ancestor*/ + /*New data for this type */ + lv_obj_t * scrl; /*The scrollable object on the background*/ + lv_action_t rel_action; /*Function to call when the page is released*/ + lv_action_t pr_action; /*Function to call when the page is pressed*/ + lv_style_t * style_sb; /*Style of scrollbars*/ + cord_t sb_width; /*Width of the scrollbars*/ + lv_page_sb_mode_t sb_mode; /*Scrollbar visibility from 'lv_page_sb_mode_t'*/ + area_t sbh; /*Horizontal scrollbar area relative to the page. (Handled by the library) */ + area_t sbv; /*Vertical scrollbar area relative to the page (Handled by the library)*/ + uint8_t sbh_draw :1; /*1: horizontal scrollbar is visible now (Handled by the library)*/ + uint8_t sbv_draw :1; /*1: vertical scrollbar is visible now (Handled by the library)*/ +}lv_page_ext_t; -/*Built-in styles of page*/ -typedef enum -{ - LV_PAGES_DEF, - LV_PAGES_SIMPLE, - LV_PAGES_TRANSP, -}lv_pages_builtin_t; /********************** * GLOBAL PROTOTYPES @@ -105,6 +90,27 @@ void lv_page_set_rel_action(lv_obj_t * page, lv_action_t rel_action); */ void lv_page_set_pr_action(lv_obj_t * page, lv_action_t pr_action); +/** + * Set the scroll bar width on a page + * @param page pointer to a page object + * @param sb_width the new scroll bar width in pixels + */ +void lv_page_set_sb_width(lv_obj_t * page, cord_t sb_width); + +/** + * Set the scroll bar mode on a page + * @param page pointer to a page object + * @param sb_mode the new mode from 'lv_page_sb_mode_t' enum + */ +void lv_page_set_sb_mode(lv_obj_t * page, lv_page_sb_mode_t sb_mode); + +/** + * Set a new style for the scroll bars object on the page + * @param page pointer to a page object + * @param style pointer to a style for the scroll bars + */ +void lv_page_set_style_sb(lv_obj_t * page, lv_style_t * style); + /** * Glue the object to the page. After it the page can be moved (dragged) with this object too. * @param obj pointer to an object on a page @@ -116,24 +122,37 @@ void lv_page_glue_obj(lv_obj_t * obj, bool glue); * Focus on an object. It ensures that the object will be visible on the page. * @param page pointer to a page object * @param obj pointer to an object to focus (must be on the page) - * @param anim_en true: scroll with animation + * @param anim_time scroll animation time in milliseconds (0: no animation) */ -void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, bool anim_en); +void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, uint16_t anim_time); /** * Get the scrollable object of a page- * @param page pointer to page object - * @return pointer to rectangle which is the scrollable part of the page + * @return pointer to a container which is the scrollable part of the page */ lv_obj_t * lv_page_get_scrl(lv_obj_t * page); /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_pages_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_pages_t style + * Get the scroll bar width on a page + * @param page pointer to a page object + * @return the scroll bar width in pixels */ -lv_pages_t * lv_pages_get(lv_pages_builtin_t style, lv_pages_t * copy); +cord_t lv_page_get_sb_width(lv_obj_t * page); + +/** + * Set the scroll bar mode on a page + * @param page pointer to a page object + * @return the mode from 'lv_page_sb_mode_t' enum + */ +lv_page_sb_mode_t lv_page_get_sb_mode(lv_obj_t * page); + +/** + * Set a new style for the scroll bars object on the page + * @param page pointer to a page object + * @return pointer to a style for the scroll bars + */ +lv_style_t * lv_page_get_style_sb(lv_obj_t * page); /********************** * MACROS diff --git a/lv_objx/lv_pb.c b/lv_objx/lv_pb.c deleted file mode 100644 index bee074166..000000000 --- a/lv_objx/lv_pb.c +++ /dev/null @@ -1,319 +0,0 @@ - - -/** - * @file lv_pb.c - * - */ - -/********************* - * INCLUDES - *********************/ -#include "lv_conf.h" -#if USE_LV_PB != 0 - -#include "lv_pb.h" -#include "../lv_draw/lv_draw.h" -#include - -/********************* - * DEFINES - *********************/ -#define LV_PB_TXT_MAX_LENGTH 64 -#define LV_PB_DEF_FORMAT "%d %%" - -/********************** - * TYPEDEFS - **********************/ - -/********************** - * STATIC PROTOTYPES - **********************/ -static bool lv_pb_design(lv_obj_t * pb, const area_t * mask, lv_design_mode_t mode); -static void lv_pbs_init(void); - -/********************** - * STATIC VARIABLES - **********************/ -static lv_pbs_t lv_pbs_def; -static lv_design_f_t ancestor_design_f; - -/********************** - * MACROS - **********************/ - -/********************** - * GLOBAL FUNCTIONS - **********************/ - -/*----------------- - * Create function - *-----------------*/ - -/** - * Create a progress bar objects - * @param par pointer to an object, it will be the parent of the new progress bar - * @param copy pointer to a progress bar object, if not NULL then the new object will be copied from it - * @return pointer to the created progress bar - */ -lv_obj_t * lv_pb_create(lv_obj_t * par, lv_obj_t * copy) -{ - /*Create the ancestor basic object*/ - lv_obj_t * new_pb = lv_rect_create(par, copy); - dm_assert(new_pb); - - /*Allocate the object type specific extended data*/ - lv_pb_ext_t * ext = lv_obj_alloc_ext(new_pb, sizeof(lv_pb_ext_t)); - dm_assert(ext); - ext->min_value = 0; - ext->max_value = 100; - ext->act_value = 0; - ext->format_str = NULL; - ext->label = NULL; - - /* Save the rectangle design function. - * It will be used in the progress bar design function*/ - if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_pb); - - lv_obj_set_signal_f(new_pb, lv_pb_signal); - lv_obj_set_design_f(new_pb, lv_pb_design); - - /*Init the new progress bar object*/ - if(copy == NULL) { - ext->format_str = dm_alloc(strlen(LV_PB_DEF_FORMAT) + 1); - strcpy(ext->format_str, LV_PB_DEF_FORMAT); - - ext->label = lv_label_create(new_pb, NULL); - - lv_rect_set_layout(new_pb, LV_RECT_LAYOUT_CENTER); - lv_obj_set_style(new_pb, lv_pbs_get(LV_PBS_DEF, NULL)); - - lv_pb_set_value(new_pb, ext->act_value); - } else { - lv_pb_ext_t * ext_copy = lv_obj_get_ext(copy); - ext->format_str = dm_alloc(strlen(ext_copy->format_str) + 1); - strcpy(ext->format_str, ext_copy->format_str); - ext->min_value = ext_copy->min_value; - ext->max_value = ext_copy->max_value; - ext->act_value = ext_copy->act_value; - ext->label = lv_label_create(new_pb, ext_copy->label); - - /*Refresh the style with new signal function*/ - lv_obj_refr_style(new_pb); - - lv_pb_set_value(new_pb, ext->act_value); - - } - return new_pb; -} - -/** - * Signal function of the progress bar - * @param pb pointer to a progress bar object - * @param sign a signal type from lv_signal_t enum - * @param param pointer to a signal specific variable - */ -bool lv_pb_signal(lv_obj_t * pb, lv_signal_t sign, void * param) -{ - bool valid; - - /* Include the ancient signal function */ - valid = lv_rect_signal(pb, sign, param); - - /* The object can be deleted so check its validity and then - * make the object specific signal handling */ - if(valid != false) { - lv_pb_ext_t * ext = lv_obj_get_ext(pb); - lv_pbs_t * style = lv_obj_get_style(pb); - - switch(sign) { - case LV_SIGNAL_CORD_CHG: - lv_pb_set_value(pb, ext->act_value); - break; - case LV_SIGNAL_CLEANUP: - dm_free(ext->format_str); - ext->format_str = NULL; - break; - case LV_SIGNAL_STYLE_CHG: - lv_obj_set_style(ext->label, &style->label); - lv_pb_set_value(pb, lv_pb_get_value(pb)); - break; - default: - break; - } - } - - return valid; -} - -/*===================== - * Setter functions - *====================*/ - -/** - * Set a new value on the progress bar - * @param pb pointer to a progress bar object - * @param value new value - */ -void lv_pb_set_value(lv_obj_t * pb, uint16_t value) -{ - lv_pb_ext_t * ext = lv_obj_get_ext(pb); - ext->act_value = value > ext->max_value ? ext->max_value : value; - - char buf[LV_PB_TXT_MAX_LENGTH]; - sprintf(buf, ext->format_str, ext->act_value); - lv_label_set_text(ext->label, buf); - - lv_obj_inv(pb); -} - -/** - * Set minimum and the maximum values of a progress bar - * @param pb pointer to he progress bar object - * @param min minimum value - * @param max maximum value - */ -void lv_pb_set_min_max_value(lv_obj_t * pb, uint16_t min, uint16_t max) -{ - lv_pb_ext_t * ext = lv_obj_get_ext(pb); - ext->max_value = max; - ext->max_value = max; - if(ext->act_value > max) { - ext->act_value = max; - lv_pb_set_value(pb, ext->act_value); - } - lv_obj_inv(pb); -} - -/** - * Set format string for the label of the progress bar - * @param pb pointer to progress bar object - * @param format a printf-like format string with one number (e.g. "Loading (%d)") - */ -void lv_pb_set_format_str(lv_obj_t * pb, const char * format) -{ - lv_pb_ext_t * ext = lv_obj_get_ext(pb); - dm_free(ext->format_str); - ext->format_str = dm_alloc(strlen(format) + 1); - strcpy(ext->format_str, format); - lv_pb_set_value(pb, ext->act_value); -} - -/*===================== - * Getter functions - *====================*/ - -/** - * Get the value of a progress bar - * @param pb pointer to a progress bar object - * @return the value of the progress bar - */ -uint16_t lv_pb_get_value(lv_obj_t * pb) -{ - lv_pb_ext_t * ext = lv_obj_get_ext(pb); - return ext->act_value; -} - -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_pbs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_pbs_t style - */ -lv_pbs_t * lv_pbs_get(lv_pbs_builtin_t style, lv_pbs_t * copy) -{ - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_pbs_init(); - style_inited = true; - } - - lv_pbs_t *style_p; - - switch(style) { - case LV_PBS_DEF: - style_p = &lv_pbs_def; - break; - default: - style_p = &lv_pbs_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_pbs_t)); - else memcpy(copy, &lv_pbs_def, sizeof(lv_pbs_t)); - } - - return style_p; -} - -/********************** - * STATIC FUNCTIONS - **********************/ - - -/** - * Handle the drawing related tasks of the progress bars - * @param pb pointer to an object - * @param mask the object will be drawn only in this area - * @param mode LV_DESIGN_COVER_CHK: only check if the object fully covers the 'mask_p' area - * (return 'true' if yes) - * LV_DESIGN_DRAW: draw the object (always return 'true') - * LV_DESIGN_DRAW_POST: drawing after every children are drawn - * @param return true/false, depends on 'mode' - */ -static bool lv_pb_design(lv_obj_t * pb, const area_t * mask, lv_design_mode_t mode) -{ - if(ancestor_design_f == NULL) return false; - - if(mode == LV_DESIGN_COVER_CHK) { - /*Return false if the object is not covers the mask_p area*/ - return ancestor_design_f(pb, mask, mode); - } else if(mode == LV_DESIGN_DRAW_MAIN) { - ancestor_design_f(pb, mask, mode); - - lv_pb_ext_t * ext = lv_obj_get_ext(pb); - area_t bar_area; - uint32_t tmp; - area_cpy(&bar_area, &pb->cords); - - cord_t w = lv_obj_get_width(pb); - cord_t h = lv_obj_get_height(pb); - - if(w >= h) { - tmp = (uint32_t)ext->act_value * w; - tmp = (uint32_t) tmp / (ext->max_value - ext->min_value); - bar_area.x2 = bar_area.x1 + (cord_t) tmp; - } else { - tmp = (uint32_t)ext->act_value * h; - tmp = (uint32_t) tmp / (ext->max_value - ext->min_value); - bar_area.y1 = bar_area.y2 - (cord_t) tmp; - } - lv_pbs_t * style_p = lv_obj_get_style(pb); - lv_draw_rect(&bar_area, mask, &style_p->bar, OPA_COVER); - } - return true; -} - -/** - * Initialize the progess bar styles - */ -static void lv_pbs_init(void) -{ - /*Default style*/ - lv_rects_get(LV_RECTS_DEF, &lv_pbs_def.bg); /*Background*/ - lv_pbs_def.bg.objs.color = COLOR_WHITE; - lv_pbs_def.bg.gcolor = COLOR_SILVER, - lv_pbs_def.bg.bcolor = COLOR_BLACK; - - lv_rects_get(LV_RECTS_DEF, &lv_pbs_def.bar); /*Bar*/ - lv_pbs_def.bar.objs.color = COLOR_LIME; - lv_pbs_def.bar.gcolor = COLOR_GREEN; - lv_pbs_def.bar.bcolor = COLOR_BLACK; - - lv_labels_get(LV_LABELS_DEF, &lv_pbs_def.label); - lv_pbs_def.label.objs.color = COLOR_MAKE(0x20, 0x20, 0x20); - lv_pbs_def.label.line_space = 0; - -} -#endif diff --git a/lv_objx/lv_pb.h b/lv_objx/lv_pb.h deleted file mode 100644 index 20f0f8d28..000000000 --- a/lv_objx/lv_pb.h +++ /dev/null @@ -1,125 +0,0 @@ -/** - * @file lv_pb.h - * - */ - -#ifndef LV_PB_H -#define LV_PB_H - -/********************* - * INCLUDES - *********************/ -#include "lv_conf.h" -#if USE_LV_PB != 0 - -/*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_pb: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " -#endif - -#if USE_LV_LABEL == 0 -#error "lv_pb: lv_label is required. Enable it in lv_conf.h (USE_LV_LABEL 1) " -#endif - -#include "../lv_obj/lv_obj.h" -#include "lv_rect.h" -#include "lv_label.h" - -/********************* - * DEFINES - *********************/ - -/********************** - * TYPEDEFS - **********************/ - -/*Data of progress bar*/ -typedef struct -{ - lv_rect_ext_t rect_ext; /*Ext. of ancestor*/ - /*New data for this type */ - lv_obj_t * label; /*Pointer to the label on the progress bar*/ - uint16_t act_value; /*Current value of the progress bar*/ - uint16_t min_value; /*Minimum value of the progress bar*/ - uint16_t max_value; /*Maximum value of the progress bar*/ - char * format_str; /*Format string of the label. E.g. "Progress: %d"*/ -}lv_pb_ext_t; - -/*Style of progress bar*/ -typedef struct -{ - lv_rects_t bg; /*Style of the background (inherited)*/ - lv_rects_t bar; /*Style of the bar*/ - lv_labels_t label; /*Style of the label*/ -}lv_pbs_t; - -/*Built-in styles of progress bar*/ -typedef enum -{ - LV_PBS_DEF, -}lv_pbs_builtin_t; - -/********************** - * GLOBAL PROTOTYPES - **********************/ - -/** - * Create a progress bar objects - * @param par pointer to an object, it will be the parent of the new progress bar - * @param copy pointer to a progress bar object, if not NULL then the new object will be copied from it - * @return pointer to the created progress bar - */ -lv_obj_t * lv_pb_create(lv_obj_t * par, lv_obj_t * copy); - -/** - * Signal function of the progress bar - * @param pb pointer to a progress bar object - * @param sign a signal type from lv_signal_t enum - * @param param pointer to a signal specific variable - */ -bool lv_pb_signal(lv_obj_t * pb, lv_signal_t sign, void * param); - -/** - * Set a new value on the progress bar - * @param pb pointer to a progress bar object - * @param value new value - */ -void lv_pb_set_value(lv_obj_t * pb, uint16_t value); - -/** - * Set minimum and the maximum values of a progress bar - * @param pb pointer to he progress bar object - * @param min minimum value - * @param max maximum value - */ -void lv_pb_set_min_max_value(lv_obj_t * pb, uint16_t min, uint16_t max); - -/** - * Set format string for the label of the progress bar - * @param pb pointer to progress bar object - * @param format a printf-like format string with one number (e.g. "Loading (%d)") - */ -void lv_pb_set_format_str(lv_obj_t * pb, const char * format); - -/** - * Get the value of a progress bar - * @param pb pointer to a progress bar object - * @return the value of the progress bar - */ -uint16_t lv_pb_get_value(lv_obj_t * pb); - -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_pbs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_pbs_t style - */ -lv_pbs_t * lv_pbs_get(lv_pbs_builtin_t style, lv_pbs_t * copy); - -/********************** - * MACROS - **********************/ - -#endif - -#endif diff --git a/lv_objx/lv_rect.c b/lv_objx/lv_rect.c deleted file mode 100644 index 8916fa0f3..000000000 --- a/lv_objx/lv_rect.c +++ /dev/null @@ -1,776 +0,0 @@ -/** - * @file lv_rect.c - * - */ - -/********************* - * INCLUDES - *********************/ -#include "lv_conf.h" - -#if USE_LV_RECT != 0 - -#include -#include -#include - -#include "lv_rect.h" -#include "../lv_draw/lv_draw.h" -#include "../lv_draw/lv_draw_vbasic.h" -#include "../lv_misc/area.h" - -#include "misc/mem/dyn_mem.h" -#include "misc/mem/linked_list.h" -#include "misc/others/color.h" -#include "misc/math/math_base.h" - -/********************* - * DEFINES - *********************/ - -/********************** - * TYPEDEFS - **********************/ - -/********************** - * STATIC PROTOTYPES - **********************/ -static bool lv_rect_design(lv_obj_t * rect, const area_t * mask, lv_design_mode_t mode); -static void lv_rect_draw_light(lv_obj_t * rect, const area_t * mask); -static void lv_rect_refr_layout(lv_obj_t * rect); -static void lv_rect_layout_col(lv_obj_t * rect); -static void lv_rect_layout_row(lv_obj_t * rect); -static void lv_rect_layout_center(lv_obj_t * rect); -static void lv_rect_layout_pretty(lv_obj_t * rect); -static void lv_rect_layout_grid(lv_obj_t * rect); -static void lv_rect_refr_autofit(lv_obj_t * rect); -static void lv_rects_init(void); - -/********************** - * STATIC VARIABLES - **********************/ -static lv_rects_t lv_rects_def; -static lv_rects_t lv_rects_transp; -static lv_rects_t lv_rects_border; - -/********************** - * MACROS - **********************/ - -/********************** - * GLOBAL FUNCTIONS - **********************/ - -/*----------------- - * Create function - *-----------------*/ - -/** - * Create a rectangle objects - * @param par pointer to an object, it will be the parent of the new rectangle - * @param copy pointer to a rectangle object, if not NULL then the new object will be copied from it - * @return pointer to the created rectangle - */ -lv_obj_t * lv_rect_create(lv_obj_t * par, lv_obj_t * copy) -{ - /*Create a basic object*/ - lv_obj_t * new_rect = lv_obj_create(par, copy); - dm_assert(new_rect); - lv_obj_alloc_ext(new_rect, sizeof(lv_rect_ext_t)); - lv_rect_ext_t * ext = lv_obj_get_ext(new_rect); - dm_assert(ext); - ext->hfit_en = 0; - ext->vfit_en = 0; - ext->layout = LV_RECT_LAYOUT_OFF; - - lv_obj_set_design_f(new_rect, lv_rect_design); - lv_obj_set_signal_f(new_rect, lv_rect_signal); - - /*Init the new rectangle*/ - if(copy == NULL) { - lv_obj_set_style(new_rect, lv_rects_get(LV_RECTS_DEF, NULL)); - } - /*Copy an existing object*/ - else { - lv_rect_ext_t * copy_ext = lv_obj_get_ext(copy); - ext->hfit_en = copy_ext->hfit_en; - ext->vfit_en = copy_ext->vfit_en; - ext->layout = copy_ext->layout; - - /*Refresh the style with new signal function*/ - lv_obj_refr_style(new_rect); - - } - - return new_rect; -} - -/** - * Signal function of the rectangle - * @param rect pointer to a rectangle object - * @param sign a signal type from lv_signal_t enum - * @param param pointer to a signal specific variable - */ -bool lv_rect_signal(lv_obj_t * rect, lv_signal_t sign, void * param) -{ - bool valid; - - /* Include the ancient signal function */ - valid = lv_obj_signal(rect, sign, param); - - /* The object can be deleted so check its validity and then - * make the object specific signal handling */ - if(valid != false) { - - lv_rects_t * style = lv_obj_get_style(rect); - - switch(sign) { - case LV_SIGNAL_STYLE_CHG: /*Recalculate the padding if the style changed*/ - lv_rect_refr_layout(rect); - lv_rect_refr_autofit(rect); - lv_obj_refr_ext_size(rect); - break; - case LV_SIGNAL_CHILD_CHG: - lv_rect_refr_layout(rect); - lv_rect_refr_autofit(rect); - break; - case LV_SIGNAL_CORD_CHG: - if(lv_obj_get_width(rect) != area_get_width(param) || - lv_obj_get_height(rect) != area_get_height(param)) { - lv_rect_refr_layout(rect); - lv_rect_refr_autofit(rect); - } - break; - case LV_SIGNAL_REFR_EXT_SIZE: - if(style->light > rect->ext_size) rect->ext_size = style->light; - break; - default: - break; - } - } - - return valid; -} - -/*===================== - * Setter functions - *====================*/ - -/** - * Set the layout on a rectangle - * @param rect pointer to a rectangle object - * @param layout a layout from 'lv_rect_layout_t' - */ -void lv_rect_set_layout(lv_obj_t * rect, lv_rect_layout_t layout) -{ - lv_rect_ext_t * ext = lv_obj_get_ext(rect); - ext->layout = layout; - - /*Send a signal to refresh the layout*/ - rect->signal_f(rect, LV_SIGNAL_CHILD_CHG, NULL); -} - - -/** - * Enable the horizontal or vertical fit. - * The rectangle size will be set to involve the children horizontally or vertically. - * @param rect pointer to a rectangle object - * @param hor_en true: enable the horizontal padding - * @param ver_en true: enable the vertical padding - */ -void lv_rect_set_fit(lv_obj_t * rect, bool hor_en, bool ver_en) -{ - lv_obj_inv(rect); - lv_rect_ext_t * ext = lv_obj_get_ext(rect); - ext->hfit_en = hor_en == false ? 0 : 1; - ext->vfit_en = ver_en == false ? 0 : 1; - - /*Send a signal to set a new size*/ - rect->signal_f(rect, LV_SIGNAL_CORD_CHG, rect); -} - -/*===================== - * Getter functions - *====================*/ - -/** - * Get the layout of a rectangle - * @param rect pointer to rectangle object - * @return the layout from 'lv_rect_layout_t' - */ -lv_rect_layout_t lv_rect_get_layout(lv_obj_t * rect) -{ - lv_rect_ext_t * ext = lv_obj_get_ext(rect); - return ext->layout; -} - -/** - * Get horizontal fit enable attribute of a rectangle - * @param rect pointer to a rectangle object - * @return true: horizontal padding is enabled - */ -bool lv_rect_get_hfit(lv_obj_t * rect) -{ - lv_rect_ext_t * ext = lv_obj_get_ext(rect); - return ext->hfit_en == 0 ? false : true; -} - -/** - * Get vertical fit enable attribute of a rectangle - * @param obj pointer to a rectangle object - * @return true: vertical padding is enabled - */ -bool lv_rect_get_vfit(lv_obj_t * rect) -{ - lv_rect_ext_t * ext = lv_obj_get_ext(rect); - return ext->vfit_en == 0 ? false : true; -} - - -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_rects_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_rects_t style - */ -lv_rects_t * lv_rects_get(lv_rects_builtin_t style, lv_rects_t * copy) -{ - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_rects_init(); - style_inited = true; - } - - lv_rects_t * style_p; - - switch(style) { - case LV_RECTS_DEF: - style_p = &lv_rects_def; - break; - case LV_RECTS_BORDER: - style_p = &lv_rects_border; - break; - case LV_RECTS_TRANSP: - style_p = &lv_rects_transp; - break; - default: - style_p = &lv_rects_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_rects_t)); - else memcpy(copy, &lv_rects_def, sizeof(lv_rects_t)); - } - - return style_p; -} - - -/********************** - * STATIC FUNCTIONS - **********************/ - -/** - * Handle the drawing related tasks of the rectangles - * @param rect pointer to an object - * @param mask the object will be drawn only in this area - * @param mode LV_DESIGN_COVER_CHK: only check if the object fully covers the 'mask_p' area - * (return 'true' if yes) - * LV_DESIGN_DRAW: draw the object (always return 'true') - * LV_DESIGN_DRAW_POST: drawing after every children are drawn - * @param return true/false, depends on 'mode' - */ -static bool lv_rect_design(lv_obj_t * rect, const area_t * mask, lv_design_mode_t mode) -{ - if(mode == LV_DESIGN_COVER_CHK) { - /* Because of the radius it is not sure the area is covered - * Check the areas where there is no radius*/ - if(LV_SA(rect, lv_rects_t)->empty != 0) return false; - - uint16_t r = LV_SA(rect, lv_rects_t)->round; - - if(r == LV_RECT_CIRCLE) return false; - - area_t area_tmp; - - /*Check horizontally without radius*/ - lv_obj_get_cords(rect, &area_tmp); - area_tmp.x1 += r; - area_tmp.x2 -= r; - if(area_is_in(mask, &area_tmp) == true) return true; - - /*Check vertically without radius*/ - lv_obj_get_cords(rect, &area_tmp); - area_tmp.y1 += r; - area_tmp.y2 -= r; - if(area_is_in(mask, &area_tmp) == true) return true; - - return false; - } else if(mode == LV_DESIGN_DRAW_MAIN) { - opa_t opa = lv_obj_get_opa(rect); - lv_rects_t * style = lv_obj_get_style(rect); - area_t area; - lv_obj_get_cords(rect, &area); - - /*Draw the rectangle*/ - lv_draw_rect(&area, mask, style, opa); - lv_rect_draw_light(rect, mask); - - } else if(mode == LV_DESIGN_DRAW_POST) { - - } - return true; -} - -/** - * Draw a light around the object - * @param rect pointer to rectangle object - * @param mask pointer to a mask area (from the design functions) - */ -static void lv_rect_draw_light(lv_obj_t * rect, const area_t * mask) -{ - lv_rects_t * style = lv_obj_get_style(rect); - cord_t light_size = style->light; - if(light_size == 0) return; - if(light_size < LV_DOWNSCALE) light_size = LV_DOWNSCALE; - - area_t light_area; - lv_rects_t light_style; - lv_obj_get_cords(rect, &light_area); - - memcpy(&light_style, style, sizeof(lv_rects_t)); - - - - - light_style.empty = 1; - light_style.bwidth = light_size; - light_style.round = style->round; - if(light_style.round == LV_RECT_CIRCLE) { - light_style.round = MATH_MIN(lv_obj_get_width(rect), lv_obj_get_height(rect)); - } - light_style.round += light_size + 1; - light_style.bcolor = style->lcolor; - light_style.bopa = 100; - - light_area.x1 -= light_size; - light_area.y1 -= light_size; - light_area.x2 += light_size; - light_area.y2 += light_size; - - cord_t i; - uint8_t res = LV_DOWNSCALE ; - opa_t opa_sub = lv_obj_get_opa(rect) / (light_size / LV_DOWNSCALE); - - for(i = 1; i < light_size; i += res) { - lv_draw_rect(&light_area, mask, &light_style, (uint16_t) opa_sub); - light_style.round -= res; - light_style.bwidth -= res; - light_area.x1 += res; - light_area.y1 += res; - light_area.x2 -= res; - light_area.y2 -= res; - } -} - -/** - * Refresh the layout of a rectangle - * @param rect pointer to an object which layout should be refreshed - */ -static void lv_rect_refr_layout(lv_obj_t * rect) -{ - lv_rect_layout_t type = lv_rect_get_layout(rect); - - /*'rect' has to be at least 1 child*/ - if(lv_obj_get_child(rect, NULL) == NULL) return; - - if(type == LV_RECT_LAYOUT_OFF) return; - - if(type == LV_RECT_LAYOUT_CENTER) { - lv_rect_layout_center(rect); - } else if(type == LV_RECT_LAYOUT_COL_L || type == LV_RECT_LAYOUT_COL_M || type == LV_RECT_LAYOUT_COL_R) { - lv_rect_layout_col(rect); - } else if(type == LV_RECT_LAYOUT_ROW_T || type == LV_RECT_LAYOUT_ROW_M || type == LV_RECT_LAYOUT_ROW_B) { - lv_rect_layout_row(rect); - } else if(type == LV_RECT_LAYOUT_PRETTY) { - lv_rect_layout_pretty(rect); - } else if(type == LV_RECT_LAYOUT_GRID) { - lv_rect_layout_grid(rect); - } -} - -/** - * Handle column type layouts - * @param rect pointer to an object which layout should be handled - */ -static void lv_rect_layout_col(lv_obj_t * rect) -{ - lv_rect_layout_t type = lv_rect_get_layout(rect); - lv_obj_t * child; - - /*Adjust margin and get the alignment type*/ - lv_align_t align; - lv_rects_t * style = lv_obj_get_style(rect); - cord_t hpad_corr; - - switch(type) { - case LV_RECT_LAYOUT_COL_L: - hpad_corr = style->hpad; - align = LV_ALIGN_IN_TOP_LEFT; - break; - case LV_RECT_LAYOUT_COL_M: - hpad_corr = 0; - align = LV_ALIGN_IN_TOP_MID; - break; - case LV_RECT_LAYOUT_COL_R: - hpad_corr = -style->hpad; - align = LV_ALIGN_IN_TOP_RIGHT; - break; - default: - hpad_corr = 0; - align = LV_ALIGN_IN_TOP_LEFT; - break; - } - - /* Disable child change action because the children will be moved a lot - * an unnecessary child change signals could be sent*/ - lv_obj_set_protect(rect, LV_PROTECT_CHILD_CHG); - /* Align the children */ - cord_t last_cord = style->vpad; - LL_READ_BACK(rect->child_ll, child) { - if(lv_obj_get_hidden(child) != false || - lv_obj_is_protected(child, LV_PROTECT_POS) != false) continue; - - lv_obj_align(child, rect, align, hpad_corr , last_cord); - last_cord += lv_obj_get_height(child) + style->opad; - } - - lv_obj_clr_protect(rect, LV_PROTECT_CHILD_CHG); -} - -/** - * Handle row type layouts - * @param rect pointer to an object which layout should be handled - */ -static void lv_rect_layout_row(lv_obj_t * rect) -{ - lv_rect_layout_t type = lv_rect_get_layout(rect); - lv_obj_t * child; - - /*Adjust margin and get the alignment type*/ - lv_align_t align; - lv_rects_t * style = lv_obj_get_style(rect); - cord_t vpad_corr = style->vpad; - - switch(type) { - case LV_RECT_LAYOUT_ROW_T: - vpad_corr = style->vpad; - align = LV_ALIGN_IN_TOP_LEFT; - break; - case LV_RECT_LAYOUT_ROW_M: - vpad_corr = 0; - align = LV_ALIGN_IN_LEFT_MID; - break; - case LV_RECT_LAYOUT_ROW_B: - vpad_corr = -style->vpad; - align = LV_ALIGN_IN_BOTTOM_LEFT; - break; - default: - vpad_corr = 0; - align = LV_ALIGN_IN_TOP_LEFT; - break; - } - - /* Disable child change action because the children will be moved a lot - * an unnecessary child change signals could be sent*/ - lv_obj_set_protect(rect, LV_PROTECT_CHILD_CHG); - - /* Align the children */ - cord_t last_cord = style->hpad; - LL_READ_BACK(rect->child_ll, child) { - if(lv_obj_get_hidden(child) != false || - lv_obj_is_protected(child, LV_PROTECT_POS) != false) continue; - - lv_obj_align(child, rect, align, last_cord, vpad_corr); - last_cord += lv_obj_get_width(child) + style->opad; - } - - lv_obj_clr_protect(rect, LV_PROTECT_CHILD_CHG); -} - -/** - * Handle the center layout - * @param rect pointer to an object which layout should be handled - */ -static void lv_rect_layout_center(lv_obj_t * rect) -{ - lv_obj_t * child; - lv_rects_t * style = lv_obj_get_style(rect); - uint32_t obj_num = 0; - cord_t h_tot = 0; - - LL_READ(rect->child_ll, child) { - h_tot += lv_obj_get_height(child) + style->opad; - obj_num ++; - } - - if(obj_num == 0) return; - - h_tot -= style->opad; - - /* Disable child change action because the children will be moved a lot - * an unnecessary child change signals could be sent*/ - lv_obj_set_protect(rect, LV_PROTECT_CHILD_CHG); - - /* Align the children */ - cord_t last_cord = - (h_tot / 2); - LL_READ_BACK(rect->child_ll, child) { - if(lv_obj_get_hidden(child) != false || - lv_obj_is_protected(child, LV_PROTECT_POS) != false) continue; - - lv_obj_align(child, rect, LV_ALIGN_CENTER, 0, last_cord + lv_obj_get_height(child) / 2); - last_cord += lv_obj_get_height(child) + style->opad; - } - - lv_obj_clr_protect(rect, LV_PROTECT_CHILD_CHG); -} - -/** - * Handle the pretty layout. Put as many object as possible in row - * then begin a new row - * @param rect pointer to an object which layout should be handled - */ -static void lv_rect_layout_pretty(lv_obj_t * rect) -{ - lv_obj_t * child_rs; /* Row starter child */ - lv_obj_t * child_rc; /* Row closer child */ - lv_obj_t * child_tmp; /* Temporary child */ - lv_rects_t * style = lv_obj_get_style(rect); - cord_t w_obj = lv_obj_get_width(rect); - cord_t act_y = style->vpad; - /* Disable child change action because the children will be moved a lot - * an unnecessary child change signals could be sent*/ - - child_rs = ll_get_tail(&rect->child_ll); /*Set the row starter child*/ - if(child_rs == NULL) return; /*Return if no child*/ - - lv_obj_set_protect(rect, LV_PROTECT_CHILD_CHG); - - child_rc = child_rs; /*Initially the the row starter and closer is the same*/ - while(child_rs != NULL) { - cord_t h_row = 0; - cord_t w_row = style->hpad * 2; /*The width is at least the left-right hpad*/ - uint32_t obj_num = 0; - - /*Find the row closer object and collect some data*/ - do { - if(lv_obj_get_hidden(child_rc) == false && - lv_obj_is_protected(child_rc, LV_PROTECT_POS) == false) { - if(w_row + lv_obj_get_width(child_rc) > w_obj) break; /*If the next object is already not fit then break*/ - w_row += lv_obj_get_width(child_rc) + style->opad; /*Add the object width + opad*/ - h_row = MATH_MAX(h_row, lv_obj_get_height(child_rc)); /*Search the highest object*/ - obj_num ++; - } - child_rc = ll_get_prev(&rect->child_ll, child_rc); /*Load the next object*/ - if(obj_num == 0) child_rs = child_rc; /*If the first object was hidden (or too long) then set the next as first */ - }while(child_rc != NULL); - - /*Step back one child because the last is already not fit*/ - if(child_rc != NULL && obj_num != 0) child_rc = ll_get_next(&rect->child_ll, child_rc); - - /*If the object is too long then align it to the middle*/ - if(obj_num == 0) { - if(child_rc != NULL) { - h_row = lv_obj_get_height(child_rc); - lv_obj_align(child_rc, rect, LV_ALIGN_IN_TOP_MID, 0, act_y); - } - } - /*If here is only one object in the row then align it to the left*/ - else if (obj_num == 1) { - lv_obj_align(child_rs, rect, LV_ALIGN_IN_TOP_MID, 0, act_y); - } - /* Align the children (from child_rs to child_rc)*/ - else { - w_row -= style->opad * obj_num; - cord_t new_opad = (w_obj - w_row) / (obj_num - 1); - cord_t act_x = style->hpad; /*x init*/ - child_tmp = child_rs; - do{ - if(lv_obj_get_hidden(child_tmp) == false && - lv_obj_is_protected(child_tmp, LV_PROTECT_POS) == false) { - lv_obj_align(child_tmp, rect, LV_ALIGN_IN_TOP_LEFT, act_x, act_y); - act_x += lv_obj_get_width(child_tmp) + new_opad; - } - child_tmp = ll_get_prev(&rect->child_ll, child_tmp); - }while(child_tmp != child_rc); - - } - - if(child_rc == NULL) break; - act_y += style->opad + h_row; /*y increment*/ - child_rs = ll_get_prev(&rect->child_ll, child_rc); /*Go to the next object*/ - child_rc = child_rs; - } - lv_obj_clr_protect(rect, LV_PROTECT_CHILD_CHG); -} - -/** - * Handle the grid layout. Align same-sized objects in a grid - * @param rect pointer to an object which layout should be handled - */ -static void lv_rect_layout_grid(lv_obj_t * rect) -{ - lv_obj_t * child; - lv_rects_t * style = lv_obj_get_style(rect); - cord_t w_tot = lv_obj_get_width(rect); - cord_t w_obj = lv_obj_get_width(lv_obj_get_child(rect, NULL)); - cord_t h_obj = lv_obj_get_height(lv_obj_get_child(rect, NULL)); - uint16_t obj_row = (w_tot - (2 * style->hpad)) / (w_obj + style->opad); /*Obj. num. in a row*/ - cord_t x_ofs; - if(obj_row > 1) { - x_ofs = w_obj + (w_tot - (2 * style->hpad) - (obj_row * w_obj)) / (obj_row - 1); - } else { - x_ofs = w_tot / 2 - w_obj / 2; - } - cord_t y_ofs = h_obj + style->opad; - - /* Disable child change action because the children will be moved a lot - * an unnecessary child change signals could be sent*/ - lv_obj_set_protect(rect, LV_PROTECT_CHILD_CHG); - - /* Align the children */ - cord_t act_x = style->hpad; - cord_t act_y = style->vpad; - uint16_t obj_cnt = 0; - LL_READ_BACK(rect->child_ll, child) { - if(lv_obj_get_hidden(child) != false || - lv_obj_is_protected(child, LV_PROTECT_POS) != false) continue; - - if(obj_row > 1) { - lv_obj_set_pos(child, act_x, act_y); - act_x += x_ofs; - } else { - lv_obj_set_pos(child, x_ofs, act_y); - } - obj_cnt ++; - - if(obj_cnt >= obj_row) { - obj_cnt = 0; - act_x = style->hpad; - act_y += y_ofs; - } - } - - lv_obj_clr_protect(rect, LV_PROTECT_CHILD_CHG); -} - -/** - * Handle auto fit. Set the size of the object to involve all children. - * @param rect pointer to an object which size will be modified - */ -static void lv_rect_refr_autofit(lv_obj_t * rect) -{ - lv_rect_ext_t * ext = lv_obj_get_ext(rect); - - if(ext->hfit_en == 0 && - ext->vfit_en == 0) { - return; - } - - area_t new_cords; - area_t ori; - lv_rects_t * style = lv_obj_get_style(rect); - lv_obj_t * i; - cord_t hpad = style->hpad; - cord_t vpad = style->vpad; - - /*Search the side coordinates of the children*/ - lv_obj_get_cords(rect, &ori); - lv_obj_get_cords(rect, &new_cords); - - new_cords.x1 = LV_CORD_MAX; - new_cords.y1 = LV_CORD_MAX; - new_cords.x2 = LV_CORD_MIN; - new_cords.y2 = LV_CORD_MIN; - - LL_READ(rect->child_ll, i) { - if(lv_obj_get_hidden(i) != false) continue; - new_cords.x1 = MATH_MIN(new_cords.x1, i->cords.x1); - new_cords.y1 = MATH_MIN(new_cords.y1, i->cords.y1); - new_cords.x2 = MATH_MAX(new_cords.x2, i->cords.x2); - new_cords.y2 = MATH_MAX(new_cords.y2, i->cords.y2); - } - - /*If the value is not the init value then the page has >=1 child.*/ - if(new_cords.x1 != LV_CORD_MAX) { - if(ext->hfit_en != 0) { - new_cords.x1 -= hpad; - new_cords.x2 += hpad; - } else { - new_cords.x1 = rect->cords.x1; - new_cords.x2 = rect->cords.x2; - } - if(ext->vfit_en != 0) { - new_cords.y1 -= vpad; - new_cords.y2 += vpad; - } else { - new_cords.y1 = rect->cords.y1; - new_cords.y2 = rect->cords.y2; - } - - /*Do nothing if the coordinates are not changed*/ - if(rect->cords.x1 != new_cords.x1 || - rect->cords.y1 != new_cords.y1 || - rect->cords.x2 != new_cords.x2 || - rect->cords.y2 != new_cords.y2) { - - lv_obj_inv(rect); - area_cpy(&rect->cords, &new_cords); - lv_obj_inv(rect); - - /*Notify the object about its new coordinates*/ - rect->signal_f(rect, LV_SIGNAL_CORD_CHG, &ori); - - /*Inform the parent about the new coordinates*/ - lv_obj_t * par = lv_obj_get_parent(rect); - par->signal_f(par, LV_SIGNAL_CHILD_CHG, rect); - } - } -} - -/** - * Initialize the rectangle styles - */ -static void lv_rects_init(void) -{ - /*Default style*/ - lv_rects_def.objs.color = COLOR_MAKE(0x50, 0x70, 0x90); - lv_rects_def.gcolor = COLOR_MAKE(0x70, 0xA0, 0xC0); - lv_rects_def.bcolor = COLOR_WHITE; - lv_rects_def.bwidth = 2 * LV_DOWNSCALE; - lv_rects_def.bopa = 50; - lv_rects_def.round = 4 * LV_DOWNSCALE; - lv_rects_def.empty = 0; - lv_rects_def.hpad = 10 * LV_DOWNSCALE; - lv_rects_def.vpad = 10 * LV_DOWNSCALE; - lv_rects_def.opad = 10 * LV_DOWNSCALE; - lv_rects_def.light = 0; - lv_rects_def.lcolor = COLOR_MAKE(0x60, 0x60, 0x60); - - /*Transparent style*/ - memcpy(&lv_rects_transp, &lv_rects_def, sizeof(lv_rects_t)); - lv_rects_transp.objs.transp = 1; - lv_rects_transp.bwidth = 0; - lv_rects_transp.empty = 1; - - /*Border style*/ - memcpy(&lv_rects_border, &lv_rects_def, sizeof(lv_rects_t)); - lv_rects_border.bcolor = COLOR_BLACK; - lv_rects_border.bwidth = 2 * LV_DOWNSCALE; - lv_rects_border.bopa = 100; - lv_rects_border.round = 4 * LV_DOWNSCALE; - lv_rects_border.empty = 1; -} -#endif diff --git a/lv_objx/lv_rect.h b/lv_objx/lv_rect.h deleted file mode 100644 index a38954886..000000000 --- a/lv_objx/lv_rect.h +++ /dev/null @@ -1,149 +0,0 @@ -/** - * @file lv_rect.h - * - */ - -#ifndef LV_RECT_H -#define LV_RECT_H - -/********************* - * INCLUDES - *********************/ -#include "lv_conf.h" -#if USE_LV_RECT != 0 - -#include "../lv_obj/lv_obj.h" -#include "../lv_obj/lv_dispi.h" - -/********************* - * DEFINES - *********************/ -#define LV_RECT_CIRCLE 0xFFFF /*A very big radius to always draw as circle*/ - -/********************** - * TYPEDEFS - **********************/ - -/*Layout options*/ -typedef enum -{ - LV_RECT_LAYOUT_OFF = 0, - LV_RECT_LAYOUT_CENTER, - LV_RECT_LAYOUT_COL_L, /*Column left align*/ - LV_RECT_LAYOUT_COL_M, /*Column middle align*/ - LV_RECT_LAYOUT_COL_R, /*Column right align*/ - LV_RECT_LAYOUT_ROW_T, /*Row left align*/ - LV_RECT_LAYOUT_ROW_M, /*Row middle align*/ - LV_RECT_LAYOUT_ROW_B, /*Row right align*/ - LV_RECT_LAYOUT_PRETTY, /*Put as many object as possible in row and begin a new row*/ - LV_RECT_LAYOUT_GRID, /*Align same-sized object into a grid*/ -}lv_rect_layout_t; - -typedef struct -{ - /*Inherited from 'base_obj' so no inherited ext. */ /*Ext. of ancestor*/ - /*New data for this type */ - uint8_t layout :5; - uint8_t hfit_en :1; - uint8_t vfit_en :1; -}lv_rect_ext_t; - - -/*Style of rectangle*/ -typedef struct -{ - lv_objs_t objs; /*Style of ancestor*/ - /*New style element for this type */ - color_t gcolor; /*Gradient color*/ - color_t bcolor; /*Border color*/ - color_t lcolor; /*Light color*/ - uint16_t bwidth;/*Border width*/ - uint16_t round; /*Radius on the corners*/ - cord_t hpad; /*Horizontal padding. Used by fit and layout.*/ - cord_t vpad; /*Vertical padding. Used by fit and layout.*/ - cord_t opad; /*Object padding. Used by fit */ - cord_t light; /*Light size*/ - uint8_t bopa; /*Border opacity in percentage of object opacity (0..100)*/ - uint8_t empty :1; /*1: Do not draw the body of the rectangle*/ -}lv_rects_t; - -/*Built-in styles of rectangle*/ -typedef enum -{ - LV_RECTS_DEF, - LV_RECTS_TRANSP, - LV_RECTS_BORDER, -}lv_rects_builtin_t; - -/********************** - * GLOBAL PROTOTYPES - **********************/ - -/** - * Create a rectangle objects - * @param par pointer to an object, it will be the parent of the new rectangle - * @param copy pointer to a rectangle object, if not NULL then the new object will be copied from it - * @return pointer to the created rectangle - */ -lv_obj_t * lv_rect_create(lv_obj_t * par, lv_obj_t * copy); - -/** - * Signal function of the rectangle - * @param rect pointer to a rectangle object - * @param sign a signal type from lv_signal_t enum - * @param param pointer to a signal specific variable - */ -bool lv_rect_signal(lv_obj_t * rect, lv_signal_t sign, void * param); - -/** - * Set the layout on a rectangle - * @param rect pointer to a rectangle object - * @param layout a layout from 'lv_rect_layout_t' - */ -void lv_rect_set_layout(lv_obj_t * rect, lv_rect_layout_t layout); - -/** - * Enable the horizontal or vertical fit. - * The rectangle size will be set to involve the children horizontally or vertically. - * @param rect pointer to a rectangle object - * @param hor_en true: enable the horizontal padding - * @param ver_en true: enable the vertical padding - */ -void lv_rect_set_fit(lv_obj_t * rect, bool hor_en, bool ver_en); - -/** - * Get the layout of a rectangle - * @param rect pointer to rectangle object - * @return the layout from 'lv_rect_layout_t' - */ -lv_rect_layout_t lv_rect_get_layout(lv_obj_t * rect); - -/** - * Get horizontal fit enable attribute of a rectangle - * @param rect pointer to a rectangle object - * @return true: horizontal padding is enabled - */ -bool lv_rect_get_hfit(lv_obj_t * rect); - -/** - * Get vertical fit enable attribute of a rectangle - * @param obj pointer to a rectangle object - * @return true: vertical padding is enabled - */ -bool lv_rect_get_vfit(lv_obj_t * rect); - -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_rects_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_rects_t style - */ -lv_rects_t * lv_rects_get(lv_rects_builtin_t style, lv_rects_t * copy); - -/********************** - * MACROS - **********************/ - -#endif - -#endif diff --git a/lv_objx/lv_slider.c b/lv_objx/lv_slider.c new file mode 100644 index 000000000..c631f1c64 --- /dev/null +++ b/lv_objx/lv_slider.c @@ -0,0 +1,303 @@ +/** + * @file lv_slider.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#if USE_LV_SLIDER != 0 + +#include "lv_slider.h" +#include "misc/math/math_base.h" +#include "../lv_draw/lv_draw.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static bool lv_slider_design(lv_obj_t * slider, const area_t * mask, lv_design_mode_t mode); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_design_f_t ancestor_design_f; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/*----------------- + * Create function + *-----------------*/ + +/** + * Create a slider objects + * @param par pointer to an object, it will be the parent of the new slider + * @param copy pointer to a slider object, if not NULL then the new object will be copied from it + * @return pointer to the created slider + */ +lv_obj_t * lv_slider_create(lv_obj_t * par, lv_obj_t * copy) +{ + /*Create the ancestor slider*/ + /*TODO modify it to the ancestor create function */ + lv_obj_t * new_slider = lv_bar_create(par, copy); + dm_assert(new_slider); + + /*Allocate the slider type specific extended data*/ + lv_slider_ext_t * ext = lv_obj_alloc_ext(new_slider, sizeof(lv_slider_ext_t)); + dm_assert(ext); + + /*Initialize the allocated 'ext' */ + ext->cb = NULL; + ext->tmp_value = ext->bar.min_value; + ext->style_knob = lv_style_get(LV_STYLE_PRETTY, NULL); + + /* Save the bar design function. + * It will be used in the sllider design function*/ + if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_slider); + + /*The signal and design functions are not copied so set them here*/ + lv_obj_set_signal_f(new_slider, lv_slider_signal); + lv_obj_set_design_f(new_slider, lv_slider_design); + + /*Init the new slider slider*/ + if(copy == NULL) { + lv_obj_set_click(new_slider, true); + lv_slider_set_style_knob(new_slider, ext->style_knob); + } + /*Copy an existing slider*/ + else { + lv_slider_ext_t * copy_ext = lv_obj_get_ext(copy); + ext->style_knob = copy_ext->style_knob; + ext->cb = copy_ext->cb; + /*Refresh the style with new signal function*/ + lv_obj_refr_style(new_slider); + } + + return new_slider; +} + +/** + * Signal function of the slider + * @param slider pointer to a slider object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + * @return true: the object is still valid (not deleted), false: the object become invalid + */ +bool lv_slider_signal(lv_obj_t * slider, lv_signal_t sign, void * param) +{ + bool valid; + + /* Include the ancient signal function */ + /* TODO update it to the ancestor's signal function*/ + valid = lv_bar_signal(slider, sign, param); + + /* The object can be deleted so check its validity and then + * make the object specific signal handling */ + if(valid != false) { + lv_slider_ext_t * ext = lv_obj_get_ext(slider); + point_t p; + cord_t w = lv_obj_get_width(slider); + cord_t h = lv_obj_get_height(slider); + int16_t tmp; + + if(sign == LV_SIGNAL_PRESSED) { + ext->tmp_value = lv_bar_get_value(slider); + } + else if(sign == LV_SIGNAL_PRESSING) { + lv_dispi_get_point(param, &p); + if(w > h) { + p.x -= slider->cords.x1 + h / 2; /*Modify the point to shift with half knob (important on the start and end)*/ + tmp = (int32_t) ((int32_t) p.x * (ext->bar.max_value - ext->bar.min_value + 1)) / (w - h); + } else { + p.y -= slider->cords.y1 + w / 2; /*Modify the point to shift with half knob (important on the start and end)*/ + tmp = (int32_t) ((int32_t) p.y * (ext->bar.max_value - ext->bar.min_value + 1)) / (h - w); + tmp = ext->bar.max_value - tmp; /*Invert he value: small value means higher y*/ + } + + lv_bar_set_value(slider, tmp); + } + else if (sign == LV_SIGNAL_PRESS_LOST) { + lv_bar_set_value(slider, ext->tmp_value); + } + else if (sign == LV_SIGNAL_RELEASED) { + ext->tmp_value = lv_bar_get_value(slider); + lv_bar_set_value(slider, ext->tmp_value); + if(ext->cb != NULL) ext->cb(slider, param); + } + else if(sign == LV_SIGNAL_CORD_CHG) { + /* The knob size depends on slider size. + * During the drawing method the ext. size is used by the knob so refresh the ext. size.*/ + if(lv_obj_get_width(slider) != area_get_width(param) || + lv_obj_get_height(slider) != area_get_height(param)) { + slider->signal_f(slider, LV_SIGNAL_REFR_EXT_SIZE, NULL); + } + } + else if(sign == LV_SIGNAL_REFR_EXT_SIZE) { + cord_t x = MATH_MIN(w, h); + if(slider->ext_size < x) slider->ext_size = x; + } + } + + return valid; +} + +/*===================== + * Setter functions + *====================*/ + +/** + * Set a function which will be called when a new value is set on the slider + * @param slider pointer to slider object + * @param cb a callback function + */ +void lv_slider_set_action(lv_obj_t * slider, lv_action_t cb) +{ + lv_slider_ext_t * ext = lv_obj_get_ext(slider); + ext->cb = cb; +} + +/** + * Set the style of knob on a slider + * @param slider pointer to slider object + * @param style pointer the new knob style + */ +void lv_slider_set_style_knob(lv_obj_t * slider, lv_style_t * style) +{ + lv_slider_ext_t * ext = lv_obj_get_ext(slider); + ext->style_knob = style; + + slider->signal_f(slider, LV_SIGNAL_REFR_EXT_SIZE, NULL); + + lv_obj_inv(slider); +} + + +/*===================== + * Getter functions + *====================*/ + +/** + * Get the slider callback function + * @param slider pointer to slider object + * @return the callback function + */ +lv_action_t lv_slider_get_action(lv_obj_t * slider) +{ + lv_slider_ext_t * ext = lv_obj_get_ext(slider); + return ext->cb; +} +/** + * Get the style of knob on a slider + * @param slider pointer to slider object + * @return pointer the new knob style + */ +lv_style_t * lv_slider_get_style_knob(lv_obj_t * slider) +{ + lv_slider_ext_t * ext = lv_obj_get_ext(slider); + return ext->style_knob; +} + +/********************** + * STATIC FUNCTIONS + **********************/ + + +/** + * Handle the drawing related tasks of the sliders + * @param slider pointer to an object + * @param mask the object will be drawn only in this area + * @param mode LV_DESIGN_COVER_CHK: only check if the object fully covers the 'mask_p' area + * (return 'true' if yes) + * LV_DESIGN_DRAW: draw the object (always return 'true') + * LV_DESIGN_DRAW_POST: drawing after every children are drawn + * @param return true/false, depends on 'mode' + */ +static bool lv_slider_design(lv_obj_t * slider, const area_t * mask, lv_design_mode_t mode) +{ + /*Return false if the object is not covers the mask_p area*/ + if(mode == LV_DESIGN_COVER_CHK) { + return false; + } + /*Draw the object*/ + else if(mode == LV_DESIGN_DRAW_MAIN) { + lv_style_t * style_slider = lv_obj_get_style(slider); + lv_style_t * style_knob = lv_slider_get_style_knob(slider); + lv_style_t * style_indic = lv_bar_get_style_indic(slider); + + area_t area_bar; + + area_cpy(&area_bar, &slider->cords); + area_bar.x1 += style_knob->hpad; + area_bar.x2 -= style_knob->hpad; + area_bar.y1 += style_knob->vpad; + area_bar.y2 -= style_knob->vpad; + lv_draw_rect(&area_bar, mask, style_slider); + + area_t area_indic; + area_cpy(&area_indic, &area_bar); + area_indic.x1 += style_indic->hpad; + area_indic.x2 -= style_indic->hpad; + area_indic.y1 += style_indic->vpad; + area_indic.y2 -= style_indic->vpad; + + cord_t slider_w = area_get_width(&slider->cords); + cord_t slider_h = area_get_height(&slider->cords); + cord_t act_value = lv_bar_get_value(slider); + cord_t min_value = lv_bar_get_min_value(slider); + cord_t max_value = lv_bar_get_max_value(slider); + + if(slider_w >= slider_h) { + area_indic.x2 = (int32_t) ((int32_t)area_get_width(&area_indic) * act_value) / (max_value - min_value); + area_indic.x2 += area_indic.x1; + } else { + area_indic.y1 = (int32_t) ((int32_t)area_get_height(&area_indic) * act_value) / (max_value - min_value); + area_indic.y1 = area_indic.y2 - area_indic.y1; + } + + /*Draw the indicator*/ + lv_draw_rect(&area_indic, mask, style_indic); + + area_t knob_area; + area_cpy(&knob_area, &slider->cords); + + if(slider_w >= slider_h) { + knob_area.x1 = area_indic.x2 - slider_h / 2; + knob_area.x2 = knob_area.x1 + slider_h; + + knob_area.y1 = slider->cords.y1; + knob_area.y2 = slider->cords.y2; + } else { + knob_area.y1 = area_indic.y1 - slider_w / 2; + knob_area.y2 = knob_area.y1 + slider_w; + + knob_area.x1 = slider->cords.x1; + knob_area.x2 = slider->cords.x2; + + } + + lv_draw_rect(&knob_area, mask, style_knob); + + } + /*Post draw when the children are drawn*/ + else if(mode == LV_DESIGN_DRAW_POST) { + + } + + return true; +} + +#endif diff --git a/lv_objx/lv_slider.h b/lv_objx/lv_slider.h new file mode 100644 index 000000000..7c0e61e69 --- /dev/null +++ b/lv_objx/lv_slider.h @@ -0,0 +1,96 @@ +/** + * @file lv_slider.h + * + */ + +#ifndef LV_SLIDER_H +#define LV_SLIDER_H + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#if USE_LV_SLIDER != 0 + +#include "../lv_obj/lv_obj.h" +#include "lv_bar.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ +/*Data of slider*/ +typedef struct +{ + lv_bar_ext_t bar; /*Ext. of ancestor*/ + /*New data for this type */ + lv_action_t cb; /*Function to call when a new value is set*/ + lv_style_t * style_knob; /*Style of the knob*/ + int16_t tmp_value; /*Store a temporal value during press until release (Handled by the library)*/ +}lv_slider_ext_t; + +/*Built-in styles of slider*/ +typedef enum +{ + LV_SLIDERS_DEF, +}lv_sliders_builtin_t; + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create a slider objects + * @param par pointer to an object, it will be the parent of the new slider + * @param copy pointer to a slider object, if not NULL then the new object will be copied from it + * @return pointer to the created slider + */ +lv_obj_t * lv_slider_create(lv_obj_t * par, lv_obj_t * copy); + +/** + * Signal function of the slider + * @param slider pointer to a slider object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + * @return true: the object is still valid (not deleted), false: the object become invalid + */ +bool lv_slider_signal(lv_obj_t * slider, lv_signal_t sign, void * param); + +/** + * Set a function which will be called when a new value is set on the slider + * @param slider pointer to slider object + * @param cb a callback function + */ +void lv_slider_set_action(lv_obj_t * slider, lv_action_t cb); + +/** + * Set the style of knob on a slider + * @param slider pointer to slider object + * @param style pointer the new knob style + */ +void lv_slider_set_style_knob(lv_obj_t * slider, lv_style_t * style); + +/** + * Get the slider callback function + * @param slider pointer to slider object + * @return the callback function + */ +lv_action_t lv_slider_get_action(lv_obj_t * slider); + +/** + * Get the style of knob on a slider + * @param slider pointer to slider object + * @return pointer the new knob style + */ +lv_style_t * lv_slider_get_style_knob(lv_obj_t * slider); + +/********************** + * MACROS + **********************/ + +#endif + +#endif diff --git a/lv_objx/lv_ta.c b/lv_objx/lv_ta.c index 730b39dc7..837d0f967 100644 --- a/lv_objx/lv_ta.c +++ b/lv_objx/lv_ta.c @@ -11,7 +11,7 @@ #if USE_LV_TA != 0 #include "lv_ta.h" -#include "lvgl/lv_misc/anim.h" +#include "misc/gfx/anim.h" #include "../lv_draw/lv_draw.h" /********************* @@ -38,17 +38,12 @@ **********************/ static bool lv_ta_design(lv_obj_t * ta, const area_t * mask, lv_design_mode_t mode); static bool lv_ta_scrling_design(lv_obj_t * scrling, const area_t * mask, lv_design_mode_t mode); -static void lv_ta_hide_cursor(lv_obj_t * ta, uint8_t hide); +static void lv_ta_hide_cursor_anim(lv_obj_t * ta, uint8_t hide); static void lv_ta_save_valid_cursor_x(lv_obj_t * ta); -static void lv_tas_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_tas_t lv_tas_def; -static lv_tas_t lv_tas_simple; -static lv_tas_t lv_tas_transp; - lv_design_f_t ancestor_design_f; lv_design_f_t scrl_design_f; @@ -79,7 +74,8 @@ lv_obj_t * lv_ta_create(lv_obj_t * par, lv_obj_t * copy) /*Allocate the object type specific extended data*/ lv_ta_ext_t * ext = lv_obj_alloc_ext(new_ta, sizeof(lv_ta_ext_t)); dm_assert(ext); - ext->cur_hide = 0; + ext->cursor_show = 1; + ext->cursor_state = 0; ext->cursor_pos = 0; ext->cursor_valid_x = 0; ext->label = NULL; @@ -99,7 +95,9 @@ lv_obj_t * lv_ta_create(lv_obj_t * par, lv_obj_t * copy) lv_label_set_text(ext->label, "Text area"); lv_page_glue_obj(ext->label, true); lv_obj_set_click(ext->label, false); - lv_obj_set_style(new_ta, lv_tas_get(LV_TAS_DEF, NULL)); + lv_obj_set_style(new_ta, lv_style_get(LV_STYLE_PRETTY, NULL)); + lv_page_set_sb_mode(new_ta, LV_PAGE_SB_MODE_AUTO); + lv_obj_set_style(lv_page_get_scrl(new_ta), lv_style_get(LV_STYLE_TRANSP_TIGHT, NULL)); lv_obj_set_size(new_ta, LV_TA_DEF_WIDTH, LV_TA_DEF_HEIGHT); } /*Copy an existing object*/ @@ -116,7 +114,7 @@ lv_obj_t * lv_ta_create(lv_obj_t * par, lv_obj_t * copy) /*Create a cursor blinker animation*/ anim_t a; a.var = new_ta; - a.fp = (anim_fp_t)lv_ta_hide_cursor; + a.fp = (anim_fp_t)lv_ta_hide_cursor_anim; a.time = LV_TA_CUR_BLINK_TIME; a.act_time = 0; a.end_cb = NULL; @@ -150,7 +148,7 @@ bool lv_ta_signal(lv_obj_t * ta, lv_signal_t sign, void * param) * make the object specific signal handling */ if(valid != false) { lv_ta_ext_t * ext = lv_obj_get_ext(ta); - lv_tas_t * style = lv_obj_get_style(ta); + lv_style_t * style = lv_obj_get_style(ta); switch(sign) { case LV_SIGNAL_CLEANUP: /* Nothing to clean up. @@ -158,9 +156,9 @@ bool lv_ta_signal(lv_obj_t * ta, lv_signal_t sign, void * param) break; case LV_SIGNAL_STYLE_CHG: if(ext->label) { - lv_obj_set_style(ext->label, &style->labels); + lv_obj_set_style(ext->label, lv_obj_get_style(ext->page.scrl)); lv_obj_set_width(ext->label, lv_obj_get_width(ta) - 2 * - (style->pages.bg_rects.hpad + style->pages.scrl_rects.hpad)); + (style->hpad + style->hpad)); lv_label_set_text(ext->label, NULL); } break; @@ -168,7 +166,7 @@ bool lv_ta_signal(lv_obj_t * ta, lv_signal_t sign, void * param) case LV_SIGNAL_CORD_CHG: if(ext->label != NULL) { lv_obj_set_width(ext->label, lv_obj_get_width(ta) - 2 * - (style->pages.bg_rects.hpad + style->pages.scrl_rects.hpad)); + (style->hpad + style->hpad)); lv_label_set_text(ext->label, NULL); } break; @@ -301,6 +299,8 @@ void lv_ta_del(lv_obj_t * ta) void lv_ta_set_cursor_pos(lv_obj_t * ta, int16_t pos) { lv_ta_ext_t * ext = lv_obj_get_ext(ta); + lv_obj_t * scrl = lv_page_get_scrl(ta); + lv_style_t * style_scrl = lv_obj_get_style(scrl); uint16_t txt_len = strlen(lv_label_get_text(ext->label)); if(pos < 0) pos = txt_len + pos; @@ -312,8 +312,8 @@ void lv_ta_set_cursor_pos(lv_obj_t * ta, int16_t pos) /*Position the label to make the cursor visible*/ lv_obj_t * label_par = lv_obj_get_parent(ext->label); point_t cur_pos; - lv_tas_t * style = lv_obj_get_style(ta); - const font_t * font_p = font_get(style->labels.font); + lv_style_t * style = lv_obj_get_style(ta); + const font_t * font_p = style->font; area_t label_cords; area_t ta_cords; lv_label_get_letter_pos(ext->label, pos, &cur_pos); @@ -326,9 +326,10 @@ void lv_ta_set_cursor_pos(lv_obj_t * ta, int16_t pos) } /*Check the bottom*/ - if(label_cords.y1 + cur_pos.y + font_get_height(font_p) + style->pages.scrl_rects.vpad > ta_cords.y2) { + cord_t font_h = font_get_height(font_p) >> FONT_ANTIALIAS; + if(label_cords.y1 + cur_pos.y + font_h + style_scrl->vpad > ta_cords.y2) { lv_obj_set_y(label_par, -(cur_pos.y - lv_obj_get_height(ta) + - font_get_height(font_p) + 2 * style->pages.scrl_rects.vpad)); + font_h + 2 * style_scrl->vpad)); } lv_obj_inv(ta); @@ -378,9 +379,10 @@ void lv_ta_cursor_down(lv_obj_t * ta) lv_label_get_letter_pos(ext->label, lv_ta_get_cursor_pos(ta), &pos); /*Increment the y with one line and keep the valid x*/ - lv_labels_t * label_style = lv_obj_get_style(ext->label); - const font_t * font_p = font_get(label_style->font); - pos.y += font_get_height(font_p) + label_style->line_space + 1; + lv_style_t * label_style = lv_obj_get_style(ext->label); + const font_t * font_p = label_style->font; + cord_t font_h = font_get_height(font_p) >> FONT_ANTIALIAS; + pos.y += font_h + label_style->line_space + 1; pos.x = ext->cursor_valid_x; /*Do not go below he last line*/ @@ -404,15 +406,28 @@ void lv_ta_cursor_up(lv_obj_t * ta) lv_label_get_letter_pos(ext->label, lv_ta_get_cursor_pos(ta), &pos); /*Decrement the y with one line and keep the valid x*/ - lv_labels_t * label_style = lv_obj_get_style(ext->label); - const font_t * font = font_get(label_style->font); - pos.y -= font_get_height(font) + label_style->line_space - 1; + lv_style_t * label_style = lv_obj_get_style(ext->label); + const font_t * font = label_style->font; + cord_t font_h = font_get_height(font) >> FONT_ANTIALIAS; + pos.y -= font_h + label_style->line_space - 1; pos.x = ext->cursor_valid_x; /*Get the letter index on the new cursor position and set it*/ uint16_t new_cur_pos = lv_label_get_letter_on(ext->label, &pos); lv_ta_set_cursor_pos(ta, new_cur_pos); } + +/** + * Get the current cursor visibility. + * @param ta pointer to a text area object + * @return show true: show the cursor and blink it, false: hide cursor + */ +void lv_ta_set_cursor_show(lv_obj_t * ta, bool show) +{ + lv_ta_ext_t * ext = lv_obj_get_ext(ta); + ext->cursor_show = show == false ? 0 : 1; +} + /*===================== * Getter functions *====================*/ @@ -440,44 +455,16 @@ uint16_t lv_ta_get_cursor_pos(lv_obj_t * ta) } /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_tas_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_tas_t style + * Get the current cursor visibility. + * @param ta pointer to a text area object + * @return true: the cursor is drawn, false: the cursor is hidden */ -lv_tas_t * lv_tas_get(lv_tas_builtin_t style, lv_tas_t * copy) +bool lv_ta_get_cursor_show(lv_obj_t * ta) { - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_tas_init(); - style_inited = true; - } - - lv_tas_t *style_p; - - switch(style) { - case LV_TAS_DEF: - style_p = &lv_tas_def; - break; - case LV_TAS_SIMPLE: - style_p = &lv_tas_simple; - break; - case LV_TAS_TRANSP: - style_p = &lv_tas_transp; - break; - default: - style_p = &lv_tas_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_tas_t)); - else memcpy(copy, &lv_tas_def, sizeof(lv_tas_t)); - } - - return style_p; + lv_ta_ext_t * ext = lv_obj_get_ext(ta); + return ext->cursor_show; } + /********************** * STATIC FUNCTIONS **********************/ @@ -531,27 +518,27 @@ static bool lv_ta_scrling_design(lv_obj_t * scrling, const area_t * mask, lv_des /*Draw the cursor too*/ lv_obj_t * ta = lv_obj_get_parent(scrling); lv_ta_ext_t * ta_ext = lv_obj_get_ext(ta); - lv_tas_t * ta_style = lv_obj_get_style(ta); + lv_style_t * scrl_style = lv_obj_get_style(lv_page_get_scrl(ta)); - if(ta_style->cursor_show != 0 && ta_ext->cur_hide == 0) { + if(ta_ext->cursor_show != 0 && ta_ext->cursor_state == 0) { uint16_t cur_pos = lv_ta_get_cursor_pos(ta); point_t letter_pos; lv_label_get_letter_pos(ta_ext->label, cur_pos, &letter_pos); area_t cur_area; - lv_labels_t * labels_p = lv_obj_get_style(ta_ext->label); - cur_area.x1 = letter_pos.x + ta_ext->label->cords.x1 - (ta_style->cursor_width >> 1); + lv_style_t * labels_p = lv_obj_get_style(ta_ext->label); + cur_area.x1 = letter_pos.x + ta_ext->label->cords.x1; cur_area.y1 = letter_pos.y + ta_ext->label->cords.y1; - cur_area.x2 = letter_pos.x + ta_ext->label->cords.x1 + (ta_style->cursor_width >> 1); - cur_area.y2 = letter_pos.y + ta_ext->label->cords.y1 + font_get_height(font_get(labels_p->font)); + cur_area.x2 = letter_pos.x + ta_ext->label->cords.x1 + scrl_style->line_width ; + cur_area.y2 = letter_pos.y + ta_ext->label->cords.y1 + (font_get_height(labels_p->font) >> FONT_ANTIALIAS); - lv_rects_t cur_rects; - lv_rects_get(LV_RECTS_DEF, &cur_rects); - cur_rects.round = 0; + lv_style_t cur_rects; + lv_style_get(LV_STYLE_PLAIN, &cur_rects); + cur_rects.radius = 0; cur_rects.bwidth = 0; - cur_rects.objs.color = ta_style->cursor_color; - cur_rects.gcolor = ta_style->cursor_color; - lv_draw_rect(&cur_area, mask, &cur_rects, OPA_COVER); + cur_rects.mcolor = scrl_style->ccolor; + cur_rects.gcolor = scrl_style->ccolor; + lv_draw_rect(&cur_area, mask, &cur_rects); } } @@ -560,16 +547,16 @@ static bool lv_ta_scrling_design(lv_obj_t * scrling, const area_t * mask, lv_des /** - * Set the cursor visibility to make a blinking cursor + * Called to blink the cursor * @param ta pointer to a text area - * @param hide 1: hide the cursor, 0: draw it + * @param hide 1: hide the cursor, 0: show it */ -static void lv_ta_hide_cursor(lv_obj_t * ta, uint8_t hide) +static void lv_ta_hide_cursor_anim(lv_obj_t * ta, uint8_t hide) { lv_ta_ext_t * ta_ext = lv_obj_get_ext(ta); - if(hide != ta_ext->cur_hide) { - ta_ext->cur_hide = hide == 0 ? 0 : 1; - lv_obj_inv(ta); + if(hide != ta_ext->cursor_state) { + ta_ext->cursor_state = hide == 0 ? 0 : 1; + if(ta_ext->cursor_show != 0) lv_obj_inv(ta); } } @@ -585,33 +572,4 @@ static void lv_ta_save_valid_cursor_x(lv_obj_t * ta) ext->cursor_valid_x = cur_pos.x; } -/** - * Initialize the text area styles - */ -static void lv_tas_init(void) -{ - /*Default style*/ - lv_pages_get(LV_PAGES_DEF, &lv_tas_def.pages); - lv_tas_def.pages.sb_mode = LV_PAGE_SB_MODE_DRAG; - - lv_labels_get(LV_LABELS_TXT, &lv_tas_def.labels); - lv_tas_def.labels.objs.color = COLOR_MAKE(0x20, 0x20, 0x20); - - lv_tas_def.cursor_color = COLOR_MAKE(0x10, 0x10, 0x10); - lv_tas_def.cursor_width = 1 * LV_DOWNSCALE; /*>=1 px for visible cursor*/ - lv_tas_def.cursor_show = 1; - - memcpy(&lv_tas_simple, &lv_tas_def, sizeof(lv_tas_t)); - lv_pages_get(LV_PAGES_SIMPLE, &lv_tas_simple.pages); - lv_tas_simple.pages.sb_mode = LV_PAGE_SB_MODE_DRAG; - lv_tas_simple.pages.scrl_rects.objs.transp = 0; /*if transp == 1 the cursor will not be drawn*/ - lv_tas_simple.pages.bg_rects.objs.color = COLOR_WHITE; - lv_tas_simple.pages.bg_rects.gcolor = COLOR_SILVER; - lv_tas_simple.pages.bg_rects.bcolor = COLOR_GRAY; - - memcpy(&lv_tas_transp, &lv_tas_def, sizeof(lv_tas_t)); - lv_pages_get(LV_PAGES_TRANSP, &lv_tas_transp.pages); - lv_tas_transp.pages.scrl_rects.objs.transp = 0; /*if transp == 1 the cursor will not be drawn*/ - -} #endif diff --git a/lv_objx/lv_ta.h b/lv_objx/lv_ta.h index 4a8bbc55c..86baf4264 100644 --- a/lv_objx/lv_ta.h +++ b/lv_objx/lv_ta.h @@ -39,31 +39,13 @@ typedef struct { lv_page_ext_t page; /*Ext. of ancestor*/ /*New data for this type */ - lv_obj_t * label; /*Label of the text area*/ - cord_t cursor_valid_x; /*Used when stepping up/down in text area. Handled by the library*/ - uint16_t cursor_pos; /*The current cursor position (0: before 1. letter, 1: before 2. letter etc.)*/ - uint8_t cur_hide :1; /*Indicates that the cursor is visible now or not*/ + lv_obj_t * label; /*Label of the text area*/ + cord_t cursor_valid_x; /*Used when stepping up/down in text area when stepping to a shorter line. (Handled by the library)*/ + uint16_t cursor_pos; /*The current cursor position (0: before 1. letter; 1: before 2. letter etc.)*/ + uint8_t cursor_show :1; /*Show or hide cursor */ + uint8_t cursor_state :1; /*Indicates that the cursor is visible now or not (Handled by the library)*/ }lv_ta_ext_t; -/*Style of text area*/ -typedef struct -{ - lv_pages_t pages; /*Style of ancestor*/ - /*New style element for this type */ - lv_labels_t labels; - color_t cursor_color; - cord_t cursor_width; - uint8_t cursor_show :1; -}lv_tas_t; - -/*Built-in styles of text area*/ -typedef enum -{ - LV_TAS_DEF, - LV_TAS_SIMPLE, - LV_TAS_TRANSP, -}lv_tas_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -145,6 +127,13 @@ void lv_ta_cursor_down(lv_obj_t * ta); */ void lv_ta_cursor_up(lv_obj_t * ta); +/** + * Get the current cursor visibility. + * @param ta pointer to a text area object + * @return show true: show the cursor and blink it, false: hide cursor + */ +void lv_ta_set_cursor_show(lv_obj_t * ta, bool show); + /** * Get the text of the i the text area * @param ta obj pointer to a text area object @@ -160,12 +149,13 @@ const char * lv_ta_get_txt(lv_obj_t * ta); uint16_t lv_ta_get_cursor_pos(lv_obj_t * ta); /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_tas_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_tas_t style + * Get the current cursor visibility. + * @param ta pointer to a text area object + * @return true: the cursor is drawn, false: the cursor is hidden */ -lv_tas_t * lv_tas_get(lv_tas_builtin_t style, lv_tas_t * copy); +bool lv_ta_get_cursor_show(lv_obj_t * ta); + + /********************** * MACROS diff --git a/lv_objx/lv_win.c b/lv_objx/lv_win.c index 577e883f0..62f672bd3 100644 --- a/lv_objx/lv_win.c +++ b/lv_objx/lv_win.c @@ -25,13 +25,11 @@ #if 0 /*Not used*/ static bool lv_win_design(lv_obj_t * win, const area_t * mask, lv_design_mode_t mode); #endif -static void lv_wins_init(void); static void lv_win_realign(lv_obj_t * win); /********************** * STATIC VARIABLES **********************/ -static lv_wins_t lv_wins_def; /********************** * MACROS @@ -54,66 +52,80 @@ static lv_wins_t lv_wins_def; lv_obj_t * lv_win_create(lv_obj_t * par, lv_obj_t * copy) { /*Create the ancestor object*/ - lv_obj_t * new_win = lv_page_create(par, copy); + lv_obj_t * new_win = lv_obj_create(par, copy); dm_assert(new_win); /*Allocate the object type specific extended data*/ lv_win_ext_t * ext = lv_obj_alloc_ext(new_win, sizeof(lv_win_ext_t)); dm_assert(ext); - ext->ctrl_holder = NULL; + ext->page = NULL; + ext->btnh = NULL; ext->header = NULL; ext->title = NULL; - - lv_obj_set_signal_f(new_win, lv_win_signal); + ext->style_header = lv_style_get(LV_STYLE_PLAIN_COLOR, NULL); + ext->style_cbtn_rel = lv_style_get(LV_STYLE_BTN_REL, NULL); + ext->style_cbtn_pr = lv_style_get(LV_STYLE_BTN_PR, NULL); + ext->cbtn_size = ( LV_DPI) / 2; /*Init the new window object*/ if(copy == NULL) { - - lv_obj_set_size(new_win, lv_obj_get_width(new_win), lv_obj_get_height(new_win)); + lv_obj_set_size(new_win, LV_HOR_RES, LV_VER_RES); lv_obj_set_pos(new_win, 0, 0); + lv_obj_set_style(new_win, lv_style_get(LV_STYLE_PLAIN, NULL)); + + ext->page = lv_page_create(new_win, NULL); + lv_obj_set_protect(ext->page, LV_PROTECT_PARENT); + lv_obj_set_style(ext->page, lv_style_get(LV_STYLE_PLAIN, NULL)); + lv_page_set_sb_mode(ext->page, LV_PAGE_SB_MODE_AUTO); + + lv_obj_t * scrl = lv_page_get_scrl(ext->page); + lv_cont_set_fit(scrl, false, true); + lv_obj_set_style(scrl, lv_style_get(LV_STYLE_TRANSP, NULL)); /*Create a holder for the header*/ - ext->header = lv_rect_create(new_win, NULL); - lv_rect_set_fit(ext->header, false, true); + ext->header = lv_cont_create(new_win, NULL); + lv_cont_set_fit(ext->header, false, true); /*Move back the header because it is automatically moved to the scrollable */ lv_obj_set_protect(ext->header, LV_PROTECT_PARENT); lv_obj_set_parent(ext->header, new_win); + lv_obj_set_style(ext->header, lv_style_get(LV_STYLE_PLAIN_COLOR, NULL)); /*Create a title on the header*/ ext->title = lv_label_create(ext->header, NULL); lv_label_set_text(ext->title,"My title"); /*Create a holder for the control buttons*/ - ext->ctrl_holder = lv_rect_create(ext->header, NULL); - lv_rect_set_fit(ext->ctrl_holder, true, false); - lv_rect_set_layout(ext->ctrl_holder, LV_RECT_LAYOUT_ROW_M); - - lv_obj_set_style(new_win, lv_wins_get(LV_WINS_DEF, NULL)); + ext->btnh = lv_cont_create(ext->header, NULL); + lv_cont_set_fit(ext->btnh, true, false); + lv_obj_set_style(ext->btnh, lv_style_get(LV_STYLE_TRANSP_TIGHT, NULL)); + lv_cont_set_layout(ext->btnh, LV_CONT_LAYOUT_ROW_M); + lv_obj_set_signal_f(new_win, lv_win_signal); lv_obj_set_size(new_win, LV_HOR_RES, LV_VER_RES); } /*Copy an existing object*/ else { lv_win_ext_t * copy_ext = lv_obj_get_ext(copy); /*Create the objects*/ - ext->header = lv_rect_create(new_win, copy_ext->header); + ext->header = lv_cont_create(new_win, copy_ext->header); /*Move back the header because it is automatically moved to the scrollable */ lv_obj_set_protect(ext->header, LV_PROTECT_PARENT); lv_obj_set_parent(ext->header, new_win); ext->title = lv_label_create(ext->header, copy_ext->title); - ext->ctrl_holder = lv_rect_create(ext->header, copy_ext->ctrl_holder); + ext->btnh = lv_cont_create(ext->header, copy_ext->btnh); /*Copy the control buttons*/ lv_obj_t * child; lv_obj_t * cbtn; - child = lv_obj_get_child(copy_ext->ctrl_holder, NULL); + child = lv_obj_get_child(copy_ext->btnh, NULL); while(child != NULL) { - cbtn = lv_btn_create(ext->ctrl_holder, child); + cbtn = lv_btn_create(ext->btnh, child); lv_img_create(cbtn, lv_obj_get_child(child, NULL)); - child = lv_obj_get_child(copy_ext->ctrl_holder, child); + child = lv_obj_get_child(copy_ext->btnh, child); } + lv_obj_set_signal_f(new_win, lv_win_signal); /*Refresh the style with new signal function*/ lv_obj_refr_style(new_win); } @@ -135,49 +147,51 @@ bool lv_win_signal(lv_obj_t * win, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_page_signal(win, sign, param); - lv_win_ext_t * ext = lv_obj_get_ext(win); - lv_wins_t * style = lv_obj_get_style(win); - lv_obj_t * child; + valid = lv_obj_signal(win, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { - switch(sign) { - case LV_SIGNAL_CLEANUP: - /*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/ - break; - case LV_SIGNAL_STYLE_CHG: - lv_obj_set_style(ext->ctrl_holder, &style->ctrl_holder); - lv_obj_set_style(ext->title, &style->title); - lv_obj_set_style(ext->header, &style->header); - lv_obj_set_opa(ext->header, style->header_opa); + if(sign == LV_SIGNAL_CHILD_CHG) { /*Move children to the page*/ + lv_obj_t * page = lv_win_get_page(win); + if(page != NULL) { + lv_obj_t * child; + child = lv_obj_get_child(win, NULL); + while(child != NULL) { + if(lv_obj_is_protected(child, LV_PROTECT_PARENT) == false) { + lv_obj_t * tmp = child; + child = lv_obj_get_child(win, child); /*Get the next child before move this*/ + lv_obj_set_parent(tmp, page); + } else { + child = lv_obj_get_child(win, child); + } + } + } + } + else if(sign == LV_SIGNAL_STYLE_CHG) { + /*Refresh the style of all control buttons*/ +// lv_win_ext_t * ext = lv_obj_get_ext(win); +// lv_style_t * style = lv_obj_get_style(win); +// lv_obj_t * child; +// child = lv_obj_get_child(ext->ctrl_holder, NULL); +// while(child != NULL) { +// lv_obj_set_style(child, &style->ctrl_btn); +// +// /*Refresh the image style too*/ +// lv_obj_set_style(lv_obj_get_child(child, NULL), &style->ctrl_img); +// child = lv_obj_get_child(ext->ctrl_holder, child); +// } - /*Refresh the style of all control buttons*/ - child = lv_obj_get_child(ext->ctrl_holder, NULL); - while(child != NULL) { - lv_obj_set_style(child, &style->ctrl_btn); - lv_obj_set_opa(child, style->ctrl_btn_opa); - - /*Refresh the image style too*/ - lv_obj_set_style(lv_obj_get_child(child, NULL), &style->ctrl_img); - child = lv_obj_get_child(ext->ctrl_holder, child); - } - - lv_win_realign(win); - - break; - case LV_SIGNAL_CORD_CHG: - /*If the size is changed refresh the window*/ - if(area_get_width(param) != lv_obj_get_width(win) || - area_get_height(param) != lv_obj_get_height(win)) { - lv_win_realign(win); - } - break; - default: - break; + lv_win_realign(win); } + else if(sign == LV_SIGNAL_CORD_CHG) { + /*If the size is changed refresh the window*/ + if(area_get_width(param) != lv_obj_get_width(win) || + area_get_height(param) != lv_obj_get_height(win)) { + lv_win_realign(win); + } + } } return valid; @@ -194,20 +208,18 @@ bool lv_win_signal(lv_obj_t * win, lv_signal_t sign, void * param) * @param rel_action a function pointer to call when the button is released * @return pointer to the created button object */ -lv_obj_t * lv_win_add_ctrl_btn(lv_obj_t * win, const char * img_path, lv_action_t rel_action) +lv_obj_t * lv_win_add_cbtn(lv_obj_t * win, const char * img_path, lv_action_t rel_action) { lv_win_ext_t * ext = lv_obj_get_ext(win); - lv_wins_t * style = lv_obj_get_style(win); - lv_obj_t * btn = lv_btn_create(ext->ctrl_holder, NULL); - lv_obj_set_style(btn, &style->ctrl_btn); - lv_obj_set_opa(btn, style->ctrl_btn_opa); - lv_obj_set_size(btn, style->ctrl_btn_w, style->ctrl_btn_h); + lv_obj_t * btn = lv_btn_create(ext->btnh, NULL); + lv_btn_set_styles(btn, ext->style_cbtn_rel, ext->style_cbtn_pr, + NULL, NULL, NULL); + lv_obj_set_size(btn, ext->cbtn_size, ext->cbtn_size); lv_btn_set_rel_action(btn, rel_action); lv_obj_t * img = lv_img_create(btn, NULL); lv_obj_set_click(img, false); - lv_obj_set_style(img, &style->ctrl_img); lv_img_set_file(img, img_path); lv_win_realign(win); @@ -219,15 +231,15 @@ lv_obj_t * lv_win_add_ctrl_btn(lv_obj_t * win, const char * img_path, lv_action_ * A release action which can be assigned to a window control button to close it * @param btn pointer to the released button * @param dispi pointer to the caller display input - * @return always false because the button is deleted with the window + * @return always LV_ACTION_RES_INV because the button is deleted with the window */ -bool lv_win_close_action(lv_obj_t * btn, lv_dispi_t * dispi) +lv_action_res_t lv_win_close_action(lv_obj_t * btn, lv_dispi_t * dispi) { - lv_obj_t * win = lv_win_get_from_ctrl_btn(btn); + lv_obj_t * win = lv_win_get_from_cbtn(btn); lv_obj_del(win); - return false; + return LV_ACTION_RES_INV; } /** @@ -243,9 +255,42 @@ void lv_win_set_title(lv_obj_t * win, const char * title) lv_win_realign(win); } +/** + * Set the control button size of a window + * @param win pointer to a window object + * @return control button size + */ +void lv_win_set_cbtn_size(lv_obj_t * win, cord_t size) +{ + lv_win_ext_t * ext = lv_obj_get_ext(win); + ext->cbtn_size = size; + + lv_win_realign(win); +} + +/** + * Set the styles of the window control buttons in a given state + * @param win pointer to a window object + * @param rel pointer to the style in released state + * @param pr pointer to the style in pressed state + */ +void lv_win_set_styles_cbtn(lv_obj_t * win, lv_style_t * rel, lv_style_t * pr) +{ + lv_win_ext_t * ext = lv_obj_get_ext(win); + ext->style_cbtn_rel = rel; + ext->style_cbtn_pr = pr; + lv_obj_t * cbtn; + cbtn = lv_obj_get_child(ext->btnh, NULL); + while(cbtn != NULL) { + lv_btn_set_styles(cbtn, ext->style_cbtn_rel, ext->style_cbtn_pr, NULL, NULL, NULL); + cbtn = lv_obj_get_child(ext->btnh, cbtn); + } +} + /*===================== * Getter functions *====================*/ + /** * Get the title of a window * @param win pointer to a window object @@ -254,17 +299,63 @@ void lv_win_set_title(lv_obj_t * win, const char * title) const char * lv_win_get_title(lv_obj_t * win) { lv_win_ext_t * ext = lv_obj_get_ext(win); - return lv_label_get_text(ext->title); } +/** + * Get the page of a window + * @param win pointer to a window object + * @return page pointer to the page object of the window + */ +lv_obj_t * lv_win_get_page(lv_obj_t * win) +{ + lv_win_ext_t * ext = lv_obj_get_ext(win); + return ext->page; +} + +/** + * Get the s window header + * @param win pointer to a window object + * @return pointer to the window header object (lv_rect) + */ +lv_obj_t * lv_win_get_header(lv_obj_t * win) +{ + lv_win_ext_t * ext = lv_obj_get_ext(win); + return ext->header; +} + +/** + * Get the control button size of a window + * @param win pointer to a window object + * @return control button size + */ +cord_t lv_win_get_cbtn_size(lv_obj_t * win) +{ + lv_win_ext_t * ext = lv_obj_get_ext(win); + return ext->cbtn_size; +} + +/** + * Get width of the content area (page scrollable) of the window + * @param win pointer to a window object + * @return the width of the content area + */ +cord_t lv_win_get_width(lv_obj_t * win) +{ + lv_win_ext_t * ext = lv_obj_get_ext(win); + lv_obj_t * scrl = lv_page_get_scrl(ext->page); + lv_style_t * style_scrl = lv_obj_get_style(scrl); + + return lv_obj_get_width(scrl) - 2 * style_scrl->hpad; +} + /** * Get the pointer of a widow from one of its control button. * It is useful in the action of the control buttons where only button is known. * @param ctrl_btn pointer to a control button of a window * @return pointer to the window of 'ctrl_btn' */ -lv_obj_t * lv_win_get_from_ctrl_btn(lv_obj_t * ctrl_btn) +lv_obj_t * lv_win_get_from_cbtn(lv_obj_t * ctrl_btn) { lv_obj_t * ctrl_holder = lv_obj_get_parent(ctrl_btn); lv_obj_t * header = lv_obj_get_parent(ctrl_holder); @@ -273,40 +364,6 @@ lv_obj_t * lv_win_get_from_ctrl_btn(lv_obj_t * ctrl_btn) return win; } -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_wins_builtin_t enum - * @param copy_p copy the style to this variable. (NULL if unused) - * @return pointer to an lv_wins_t style - */ -lv_wins_t * lv_wins_get(lv_wins_builtin_t style, lv_wins_t * copy) -{ - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_wins_init(); - style_inited = true; - } - - lv_wins_t *style_p; - - switch(style) { - case LV_WINS_DEF: - style_p = &lv_wins_def; - break; - default: - style_p = &lv_wins_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_wins_t)); - else memcpy(copy, &lv_wins_def, sizeof(lv_wins_t)); - } - - return style_p; -} - /********************** * STATIC FUNCTIONS **********************/ @@ -341,59 +398,6 @@ static bool lv_win_design(lv_obj_t * win, const area_t * mask, lv_design_mode_t } #endif -/** - * Initialize the window styles - */ -static void lv_wins_init(void) -{ - /*Style for the content*/ - lv_pages_get(LV_PAGES_DEF, &lv_wins_def.pages); - lv_wins_def.pages.bg_rects.objs.color = COLOR_WHITE; - lv_wins_def.pages.bg_rects.gcolor = COLOR_WHITE; - lv_wins_def.pages.bg_rects.bwidth = 1 * LV_DOWNSCALE; - lv_wins_def.pages.bg_rects.bcolor = COLOR_GRAY; - lv_wins_def.pages.bg_rects.round = 0; - lv_wins_def.pages.bg_rects.hpad = 0; - lv_wins_def.pages.bg_rects.vpad = 0; - - /*Styles for the header*/ - lv_rects_get(LV_RECTS_DEF, &lv_wins_def.header); - lv_wins_def.header.hpad = 5 * LV_DOWNSCALE; - lv_wins_def.header.vpad = 5 * LV_DOWNSCALE; - lv_wins_def.header.objs.color = COLOR_MAKE(0x30, 0x40, 0x50); - lv_wins_def.header.gcolor = COLOR_MAKE(0x30, 0x40, 0x50); - lv_wins_def.header.bwidth = 0; - lv_wins_def.header.round = 0; - - lv_rects_get(LV_RECTS_TRANSP, &lv_wins_def.ctrl_holder); - lv_wins_def.ctrl_holder.hpad = 0; - lv_wins_def.ctrl_holder.vpad = 0; - lv_wins_def.ctrl_holder.opad = 10 * LV_DOWNSCALE; - - lv_btns_get(LV_BTNS_DEF, &lv_wins_def.ctrl_btn); - lv_wins_def.ctrl_btn.bcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0xD0, 0xE0, 0xF0); - lv_wins_def.ctrl_btn.mcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_wins_def.ctrl_btn.gcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_wins_def.ctrl_btn.rects.bopa = 70; - lv_wins_def.ctrl_btn.rects.bwidth = 2 * LV_DOWNSCALE; - lv_wins_def.ctrl_btn.rects.round = LV_RECT_CIRCLE; - - lv_imgs_get(LV_IMGS_DEF, &lv_wins_def.ctrl_img); - lv_wins_def.ctrl_img.recolor_opa = OPA_50; - lv_wins_def.ctrl_img.objs.color = COLOR_WHITE; - - lv_labels_get(LV_LABELS_TITLE, &lv_wins_def.title); - lv_wins_def.title.objs.color = COLOR_MAKE(0xD0, 0xE0, 0xF0); - lv_wins_def.title.letter_space = 1 * LV_DOWNSCALE; - lv_wins_def.title.line_space = 1 * LV_DOWNSCALE; - - lv_wins_def.ctrl_btn_w = 30 * LV_DOWNSCALE; - lv_wins_def.ctrl_btn_h = 30 * LV_DOWNSCALE; - - lv_wins_def.header_opa = OPA_COVER; - lv_wins_def.ctrl_btn_opa = OPA_COVER; -} - /** * Realign the building elements of a window * @param win pointer to window objectker @@ -401,32 +405,40 @@ static void lv_wins_init(void) static void lv_win_realign(lv_obj_t * win) { lv_win_ext_t * ext = lv_obj_get_ext(win); - lv_wins_t * style = lv_obj_get_style(win); - if(ext->ctrl_holder == NULL || ext->header == NULL || ext->title == NULL) return; + if(ext->page == NULL || ext->btnh == NULL || ext->header == NULL || ext->title == NULL) return; lv_obj_t * cbtn; - /*Refresh the style of all control buttons*/ - cbtn = lv_obj_get_child(ext->ctrl_holder, NULL); + /*Refresh the size of all control buttons*/ + cbtn = lv_obj_get_child(ext->btnh, NULL); while(cbtn != NULL) { - lv_obj_set_size(cbtn, style->ctrl_btn_w, style->ctrl_btn_h); - cbtn = lv_obj_get_child(ext->ctrl_holder, cbtn); + lv_obj_set_size(cbtn, ext->cbtn_size, ext->cbtn_size); + cbtn = lv_obj_get_child(ext->btnh, cbtn); } - lv_obj_set_height(ext->ctrl_holder, style->ctrl_btn_h + 2 * style->ctrl_holder.vpad * 2); + lv_style_t * btnh_style = lv_obj_get_style(ext->btnh); + lv_obj_set_height(ext->btnh, ext->cbtn_size + 2 * btnh_style->vpad * 2); lv_obj_set_width(ext->header, lv_obj_get_width(win)); /*Align the higher object first to make the correct header size first*/ - if(lv_obj_get_height(ext->title) > lv_obj_get_height(ext->ctrl_holder)) { - lv_obj_align(ext->title, NULL, LV_ALIGN_IN_LEFT_MID, style->header.hpad, 0); - lv_obj_align(ext->ctrl_holder, NULL, LV_ALIGN_IN_RIGHT_MID, -style->header.hpad, 0); + if(lv_obj_get_height(ext->title) > lv_obj_get_height(ext->btnh)) { + lv_obj_align(ext->title, NULL, LV_ALIGN_IN_LEFT_MID, ext->style_header->hpad, 0); + lv_obj_align(ext->btnh, NULL, LV_ALIGN_IN_RIGHT_MID, - ext->style_header->hpad, 0); } else { - lv_obj_align(ext->ctrl_holder, NULL, LV_ALIGN_IN_RIGHT_MID, -style->header.hpad, 0); - lv_obj_align(ext->title, NULL, LV_ALIGN_IN_LEFT_MID, style->header.hpad, 0); + lv_obj_align(ext->btnh, NULL, LV_ALIGN_IN_RIGHT_MID, - ext->style_header->hpad, 0); + lv_obj_align(ext->title, NULL, LV_ALIGN_IN_LEFT_MID, ext->style_header->hpad, 0); } lv_obj_set_pos_us(ext->header, 0, 0); + lv_obj_t * page = lv_win_get_page(win); + lv_obj_set_size(page, lv_obj_get_width(win), lv_obj_get_height(win) - lv_obj_get_height(ext->header)); + lv_obj_align(page, ext->header, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 0); + + lv_style_t * style_page = lv_obj_get_style(page); + lv_obj_t * scrl = lv_page_get_scrl(page); + + lv_obj_set_width(scrl, lv_obj_get_width(page) - 2 * style_page->hpad); } #endif diff --git a/lv_objx/lv_win.h b/lv_objx/lv_win.h index c7b615c7d..126a72274 100644 --- a/lv_objx/lv_win.h +++ b/lv_objx/lv_win.h @@ -13,10 +13,6 @@ #if USE_LV_WIN != 0 /*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_win: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " -#endif - #if USE_LV_BTN == 0 #error "lv_win: lv_btn is required. Enable it in lv_conf.h (USE_LV_BTN 1) " #endif @@ -29,16 +25,13 @@ #error "lv_win: lv_img is required. Enable it in lv_conf.h (USE_LV_IMG 1) " #endif -#if USE_LV_PAGE == 0 -#error "lv_win: lv_page is required. Enable it in lv_conf.h (USE_LV_PAGE 1) " -#endif #if USE_LV_PAGE == 0 #error "lv_win: lv_page is required. Enable it in lv_conf.h (USE_LV_PAGE 1) " #endif #include "../lv_obj/lv_obj.h" -#include "lv_rect.h" +#include #include "lv_btn.h" #include "lv_label.h" #include "lv_img.h" @@ -55,36 +48,18 @@ /*Data of window*/ typedef struct { - lv_page_ext_t page; /*Ext. of ancestor*/ + /*Ext. of ancestor*/ /*New data for this type */ - lv_obj_t * header; /*Pointer to the header rectangle of the window*/ - lv_obj_t * title; /*Pointer to the title label of the window*/ - lv_obj_t * ctrl_holder; /*Pointer to the control button holder rectangle of the window*/ + lv_obj_t * page; /*Pointer to a page which holds the content*/ + lv_obj_t * header; /*Pointer to the header container of the window*/ + lv_obj_t * title; /*Pointer to the title label of the window*/ + lv_obj_t * btnh; /*Pointer to the control button holder container of the window*/ + lv_style_t * style_header; /*Style of the header container*/ + lv_style_t * style_cbtn_rel; /*Control button releases style*/ + lv_style_t * style_cbtn_pr; /*Control button pressed style*/ + cord_t cbtn_size; /*Size of the control buttons (square)*/ }lv_win_ext_t; -/*Style of window*/ -typedef struct -{ - lv_pages_t pages; /*Style of ancestor*/ - /*New style element for this type */ - /*Header settings*/ - lv_rects_t header; /*Style of the header rectangle*/ - lv_labels_t title; /*Style of the window title*/ - lv_rects_t ctrl_holder; /*Style of holder of the control buttons*/ - lv_btns_t ctrl_btn; /*Style of the control buttons*/ - lv_imgs_t ctrl_img; /*Style of the image on the control buttons*/ - cord_t ctrl_btn_w; /*Width of the control buttons*/ - cord_t ctrl_btn_h; /*Height of the control buttons*/ - opa_t ctrl_btn_opa; /*Width of the control buttons in the percentage of object opacity (0..100)*/ - opa_t header_opa; /*Opacity of the header in the percentage of object opacity (0..100)*/ -}lv_wins_t; - -/*Built-in styles of window*/ -typedef enum -{ - LV_WINS_DEF, -}lv_wins_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -113,15 +88,15 @@ bool lv_win_signal(lv_obj_t * win, lv_signal_t sign, void * param); * @param rel_action a function pointer to call when the button is released * @return pointer to the created button object */ -lv_obj_t * lv_win_add_ctrl_btn(lv_obj_t * win, const char * img_path, lv_action_t rel_action); +lv_obj_t * lv_win_add_cbtn(lv_obj_t * win, const char * img_path, lv_action_t rel_action); /** * A release action which can be assigned to a window control button to close it * @param btn pointer to the released button * @param dispi pointer to the caller display input - * @return always false because the button is deleted with the window + * @return always LV_ACTION_RES_INV because the button is deleted with the window */ -bool lv_win_close_action(lv_obj_t * btn, lv_dispi_t * dispi); +lv_action_res_t lv_win_close_action(lv_obj_t * btn, lv_dispi_t * dispi); /** * Set the title of a window @@ -130,6 +105,21 @@ bool lv_win_close_action(lv_obj_t * btn, lv_dispi_t * dispi); */ void lv_win_set_title(lv_obj_t * win, const char * title); +/** + * Set the control button size of a window + * @param win pointer to a window object + * @return control button size + */ +void lv_win_set_cbtn_size(lv_obj_t * win, cord_t size); + +/** + * Set the styles of the window control buttons in a given state + * @param win pointer to a window object + * @param rel pointer to the style in released state + * @param pr pointer to the style in pressed state + */ +void lv_win_set_styles_cbtn(lv_obj_t * win, lv_style_t * rel, lv_style_t * pr); + /** * Get the title of a window * @param win pointer to a window object @@ -137,21 +127,41 @@ void lv_win_set_title(lv_obj_t * win, const char * title); */ const char * lv_win_get_title(lv_obj_t * win); +/** + * Get the page of a window + * @param win pointer to a window object + * @return page pointer to the page object of the window + */ +lv_obj_t * lv_win_get_page(lv_obj_t * win); + +/** + * Get the s window header + * @param win pointer to a window object + * @return pointer to the window header object (lv_rect) + */ +lv_obj_t * lv_win_get_header(lv_obj_t * win); + +/** + * Get the control button size of a window + * @param win pointer to a window object + * @return control button size + */ +cord_t lv_win_get_cbtn_size(lv_obj_t * win); + +/** + * Get width of the content area (page scrollable) of the window + * @param win pointer to a window object + * @return the width of the content area + */ +cord_t lv_win_get_width(lv_obj_t * win); + /** * Get the pointer of a widow from one of its control button. * It is useful in the action of the control buttons where only button is known. * @param ctrl_btn pointer to a control button of a window * @return pointer to the window of 'ctrl_btn' */ -lv_obj_t * lv_win_get_from_ctrl_btn(lv_obj_t * ctrl_btn); - -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_wins_builtin_t enum - * @param copy_p copy the style to this variable. (NULL if unused) - * @return pointer to an lv_wins_t style - */ -lv_wins_t * lv_wins_get(lv_wins_builtin_t style, lv_wins_t * copy); +lv_obj_t * lv_win_get_from_cbtn(lv_obj_t * ctrl_btn); /********************** * MACROS diff --git a/lvgl.h b/lvgl.h index 850121bf2..4f3aead70 100644 --- a/lvgl.h +++ b/lvgl.h @@ -3,8 +3,8 @@ * Include all LittleV GL related headers */ -#ifndef LV_GL_H -#define LV_GL_H +#ifndef LVGL_H +#define LVGL_H /********************* * INCLUDES @@ -28,23 +28,26 @@ #error "LV: incompatible misc. module version! See lvgl.h" #endif -#include #include "lv_obj/lv_obj.h" #include "lv_objx/lv_btn.h" #include "lv_objx/lv_img.h" #include "lv_objx/lv_label.h" #include "lv_objx/lv_line.h" #include "lv_objx/lv_page.h" -#include "lv_objx/lv_rect.h" +#include "lv_objx/lv_cont.h" #include "lv_objx/lv_list.h" +#include "lv_objx/lv_chart.h" #include "lv_objx/lv_cb.h" -#include "lv_objx/lv_pb.h" +#include "lv_objx/lv_bar.h" +#include "lv_objx/lv_slider.h" #include "lv_objx/lv_led.h" #include "lv_objx/lv_btnm.h" +#include "lv_objx/lv_ddlist.h" #include "lv_objx/lv_ta.h" #include "lv_objx/lv_win.h" #include "lv_objx/lv_mbox.h" #include "lv_objx/lv_gauge.h" +#include "lv_objx/lv_lmeter.h" #include "lv_app/lv_app.h"