From 4936508008fb4995cb4ab08b8e1dc3314b1314ee Mon Sep 17 00:00:00 2001 From: patricklaf Date: Sun, 1 Nov 2020 11:44:28 +0100 Subject: [PATCH] Version initiale 1.0.0 --- LEP.h | 134 ++ NucleoLEP.ino | 1234 ++++++++++++++++ README.md | 155 ++ Stack.h | 200 +++ font_nucleo_14.c | 3230 +++++++++++++++++++++++++++++++++++++++++ images/file.png | Bin 0 -> 688 bytes images/folder.png | Bin 0 -> 652 bytes images/fr/about.png | Bin 0 -> 10606 bytes images/fr/eof.png | Bin 0 -> 9397 bytes images/fr/file.png | Bin 0 -> 6055 bytes images/fr/files.png | Bin 0 -> 7369 bytes images/fr/folders.png | Bin 0 -> 3681 bytes images/fr/play.png | Bin 0 -> 6068 bytes images/fr/played.png | Bin 0 -> 6157 bytes images/fr/record.png | Bin 0 -> 4715 bytes images/fr/root.png | Bin 0 -> 6192 bytes images/home.png | Bin 0 -> 1242 bytes images/play.png | Bin 0 -> 1066 bytes images/record.png | Bin 0 -> 1069 bytes images/settings.png | Bin 0 -> 1191 bytes images/stop.png | Bin 0 -> 944 bytes images/up.png | Bin 0 -> 1006 bytes lv_conf.h | 766 ++++++++++ 23 files changed, 5719 insertions(+) create mode 100644 LEP.h create mode 100644 NucleoLEP.ino create mode 100644 README.md create mode 100644 Stack.h create mode 100644 font_nucleo_14.c create mode 100644 images/file.png create mode 100644 images/folder.png create mode 100644 images/fr/about.png create mode 100644 images/fr/eof.png create mode 100644 images/fr/file.png create mode 100644 images/fr/files.png create mode 100644 images/fr/folders.png create mode 100644 images/fr/play.png create mode 100644 images/fr/played.png create mode 100644 images/fr/record.png create mode 100644 images/fr/root.png create mode 100644 images/home.png create mode 100644 images/play.png create mode 100644 images/record.png create mode 100644 images/settings.png create mode 100644 images/stop.png create mode 100644 images/up.png create mode 100644 lv_conf.h diff --git a/LEP.h b/LEP.h new file mode 100644 index 0000000..a401e46 --- /dev/null +++ b/LEP.h @@ -0,0 +1,134 @@ +// LEP +// © 2019 Patrick Lafarguette +// +// LEP file structure +// +// See http://dcmoto.free.fr/bricolage/sdlep-reader/index.html + +#ifndef LEP_H +#define LEP_H + +#include + +#define LEP_DEFAULT 0 + +// Header +typedef struct lep_header { + uint32_t magic; + uint32_t version; + // Computer + uint8_t brand; + uint8_t family; + uint32_t compatibily; + // Loading + uint8_t period; // µs + uint8_t method; + uint32_t duration; // ms + // Block + uint8_t blocks; +} __attribute__((packed)) lep_header; + +// Block +typedef struct lep_block { + uint32_t size; // Up to 4 GB + uint32_t duration; +} __attribute__((packed)) lep_block; + +// Magic +#define LEP_MAGIC 0x4650454C // LEPF + +// Version +#define LEP_VERSION_MAJOR 1 +#define LEP_VERSION_MINOR 0 +#define LEP_VERSION_REVISION 0 + +#define LEP_VERSION ((LEP_VERSION_MAJOR << 16) | (LEP_VERSION_MINOR << 8) | LEP_VERSION_REVISION) + +// Period +#define LEP_PERIOD 50 + +// Method +#define LEP_RUN 0 // RUN " +#define LEP_LOADM 1 // LOADM +#define LEP_LOADMR 2 // LOADM"",,R + +// Brand +#define LEP_ACORN 1 +#define LEP_AMSTRAD 2 +#define LEP_APOLLO_7 3 +#define LEP_APPLE 4 +#define LEP_APPLIED_TECHNOLOGIES 5 +#define LEP_ATARI 6 +#define LEP_CAMPUTERS 7 +#define LEP_CANON 8 +#define LEP_COMMODORE 9 +#define LEP_DRAGON 10 +#define LEP_ENTERPRISE 11 +#define LEP_EPSON 12 +#define LEP_EXELVISION 13 +#define LEP_EXIDY 14 +#define LEP_GRUNDY 15 +#define LEP_HANIMEX 16 +#define LEP_INDATA 17 +#define LEP_JUPITER_CANTAB 18 +#define LEP_KYOCERA 19 +#define LEP_MATRA 20 +#define LEP_MATSUSHITA 21 +#define LEP_MATTEL_ELECTRONICS 22 +#define LEP_MEMOTECH 23 +#define LEP_MICRONIQUE 24 +#define LEP_MSX 41 +#define LEP_NEC 25 +#define LEP_OLIVETTI 26 +#define LEP_ORIC 27 +#define LEP_PHILIPS 28 +#define LEP_PROTEUS_INTERNATIONAL 29 +#define LEP_SANYO 30 +#define LEP_SEGA 31 +#define LEP_SHARP 32 +#define LEP_SINCLAIR 33 +#define LEP_SMT 34 +#define LEP_SORD 35 +#define LEP_SPECTRAVIDEO 36 +#define LEP_TANDY 37 +#define LEP_TEXAS_INSTRUMENTS 38 +#define LEP_THOMSON 39 +#define LEP_VIDEO_TECHNOLOGY 40 + +// Family +// 0 LEP_DEFAULT +// 1..127 brand +// 128..255 multi brands families +#define LEP_MSX1 128 +#define LEP_MSX2 129 +#define LEP_MSX2PLUS 130 + +// Amstrad +#define LEP_CPC464 (1 << 0) +#define LEP_CPC664 (1 << 1) +#define LEP_CPC6128 (1 << 2) +#define LEP_464PLUS (1 << 3) +#define LEP_6128PLUS (1 << 4) + +// Thomson +#define LEP_MO 1 +#define LEP_TO 2 + +// MO +#define LEP_MO5 (1 << 0) +#define LEP_MO6 (1 << 1) + +// TO +#define LEP_TO7 (1 << 0) +#define LEP_TO7_16K (1 << 1) +#define LEP_TO770 (1 << 2) +#define LEP_TO770_64K (1 << 3) +#define LEP_TO8 (1 << 4) +#define LEP_TO8_256K (1 << 5) +#define LEP_TO8D (1 << 6) +#define LEP_TO8D_256K (1 << 7) +#define LEP_TO9 (1 << 8) +#define LEP_TO9_64K (1 << 9) +#define LEP_TO9PLUS (1 << 10) + +#endif /* LEP_H */ diff --git a/NucleoLEP.ino b/NucleoLEP.ino new file mode 100644 index 0000000..759a746 --- /dev/null +++ b/NucleoLEP.ino @@ -0,0 +1,1234 @@ +// Nucleo LEP +// © 2019-2020 Patrick Lafarguette +// +// LEP file reader/writer for Nucleo-F429ZI +// +// 27/10/2020 STM32Duino core 1.9.0 +// http://github.com/stm32duino/Arduino_Core_STM32/pull/1209 +// http://github.com/stm32duino/Arduino_Core_STM32/pull/1212 +// GFX 1.10.2 +// lvgl 7.7.0 +// Read and write MO5LEP file (1.9.0 API) +// +// 07/10/2020 STM32Duino core 1.9.0 +// GFX 1.10.1 +// TouchScreen 1.1.0 +// lvgl 7.6.0 +// MCUFRIEND_kbv 2.9.9 +// SdFat 1.1.4 +// +// 22/05/2020 STM32Duino core 1.9.0 +// GFX 1.10.1 +// TouchScreen 1.1.0 +// lv_arduino 2.0.3 +// MCUFRIEND_kbv 2.9.9 +// SdFat 1.1.4 +// +// 20/02/2020 STM32Duino core 1.6.1 +// +// 11/11/2019 lv_arduino 2.0.3 +// +// 05/10/2019 Read and write MO5LEP file +// +// 25/09/2019 STM32Duino core 1.6.1 +// GFX 1.5.7 +// TouchScreen 1.0.3 +// LittlevGL 2.0.1 +// MCUFRIEND_kbv development +// SdFat 1.1.0 + +#include +#include +#include +#include +#include + +#include "LEP.h" +#include "Stack.h" + +// TFT calibration +// See TouchScreen_Calibr_native example in MCUFRIEND_kbv library +const int XP = 8, XM = A2, YP = A3, YM = 9; +const int TS_LEFT = 908, TS_RT = 122, TS_TOP = 85, TS_BOT = 905; + +MCUFRIEND_kbv tft; +// XP (LCD_RS), XM (LCD_D0) resistance is 345 Ω +TouchScreen ts = TouchScreen(XP, YP, XM, YM, 345); + +SdFat fat; +SdFile directory; +SdFile file; + +Stack folders; + +// Timers +HardwareTimer* readTimer = NULL; +HardwareTimer* writeTimer = NULL; + +#if 0 +#elif defined(ARDUINO_NUCLEO_F429ZI) +#define PIN_ACTIVITY LED_BUILTIN +#define PIN_MOTOR PD0 +#define PIN_OUTPUT PF7 // TIM6 +#define PIN_INPUT PF8 // TIM13, channel 1 +#elif defined(ARDUINO_NUCLEO_L476RG) +#define PIN_ACTIVITY LED_BUILTIN +#define PIN_MOTOR PC8 +#define PIN_OUTPUT PC6 +#endif + +#define DEBUG 1 // 1 to enable serial debug messages, 0 to disable +#define CAPTURE 1 // 1 to enable screen captures, 0 to disable + +#if DEBUG +#define Debug(...) Serial.print(__VA_ARGS__) +#define Debugln(...) Serial.println(__VA_ARGS__) +#else +#define Debug(...) +#define Debugln(...) +#endif + +// Buffer +// Minimum buffer play time is PERIOD * BUFFER_SIZE µs +// Buffer should be loaded in less time +// +// 1024 bytes RAM, 512 bytes buffers +// 25600 µs, 25,600 ms at 50 µs +// 8192 µs, 8,192 ms at 16 µs +// +// 2048 bytes RAM, 1024 bytes buffers +// 51200 µs, 51,200 ms at 50 µs +// 16384 µs, 16,384 ms at 16 µs +#define BUFFER_COUNT 2 +#define BUFFER_SIZE 1024 + +typedef enum states { + state_idle, + state_hide, + state_media, + state_root, + state_up, + state_folder, + state_file, + state_play, + state_record, + state_read, + state_write, + state_eob, + state_eof, + state_stop, + state_settings, +} states_t; + +typedef enum actions { + action_idle, + action_play, + action_record, +} actions_t; + +typedef enum buttons { + button_root, + button_up, + button_action, + button_stop, + button_settings, +} buttons_t; + +#define UI_NONE 0 +#define UI_MOTOR (1 << 0) +#define UI_PLAY (1 << 1) +#define UI_RECORD (1 << 2) +#define UI_CAPTURE (1 << 3) + +typedef struct Box { + uint8_t state; + const char* message; +} Box; + +typedef struct Block { + uint32_t read; // Read count + uint32_t write; // Write count + uint32_t size; // Size + uint32_t available; + uint32_t count; +} Block; + +typedef struct Worker { + // State + uint8_t state; + uint8_t action; + uint8_t ui; + // Box + Box box; + // Folders + char* filename; + // Buffers + int8_t buffers[BUFFER_COUNT][BUFFER_SIZE]; + int8_t buffer; + uint16_t index; + // File + bool eof; + uint32_t size; + // Block + Block block; + // Play or record + bool motor; + bool remote; + uint8_t active; // Active LOW or HIGH + uint8_t output; // Initial output LOW or HIGH + uint8_t input; + uint8_t period; // Default 50 µs + uint32_t counter; + uint32_t overflow; + uint32_t overcapture; + unsigned long start; + unsigned long stop; +} Worker; + +Worker worker; + +// User interface +#define LV_SYMBOL_RECORD "\xef\x84\x91" + +static lv_disp_buf_t lvgl_disp_buf; +static lv_color_t lvgl_buf[LV_HOR_RES_MAX * 10]; + +lv_obj_t* lvgl_files = NULL; +lv_obj_t* lvgl_toolbar = NULL; +lv_obj_t* lvgl_box = NULL; +lv_obj_t* lvgl_play = NULL; +lv_obj_t* lvgl_bar = NULL; +lv_obj_t* lvgl_filename = NULL; +lv_obj_t* lvgl_size = NULL; +lv_obj_t* lvgl_motor = NULL; + +#define TOOLBAR_NONE 0 +#define TOOLBAR_PLAY (1 << 0) +#define TOOLBAR_ACTION (1 << 1) +#define TOOLBAR_STOP (1 << 2) + +////////// +// LVGL // +////////// + +// Log to serial +#if LV_USE_LOG != 0 +void lvgl_print(lv_log_level_t level, const char* file, uint32_t line, const char* function, const char* description) { + UNUSED(level); + UNUSED(function); + Debug(file); + Debug("@"); + Debug(line); + Debug("->"); + Debugln(description); + Serial.flush(); + delay(100); +} +#endif + +// Display +void lvgl_disp_flush(lv_disp_drv_t* display, const lv_area_t* area, lv_color_t* color_p) { + tft.setAddrWindow(area->x1, area->y1, area->x2, area->y2); + tft.pushColors((uint16_t*)color_p, (area->x2 - area->x1 + 1) * (area->y2 - area->y1 + 1), true); + lv_disp_flush_ready(display); +} + +// Input +#define TS_MIN 10 +#define TS_MAX 1000 + +bool lvgl_input_read(lv_indev_drv_t* driver, lv_indev_data_t* data) { + UNUSED(driver); + static lv_indev_data_t last = { { 0, 0 }, 0, 0, 0, LV_INDEV_STATE_REL }; + TSPoint point = ts.getPoint(); + pinMode(YP, OUTPUT); + pinMode(XM, OUTPUT); + digitalWrite(YP, HIGH); + digitalWrite(XM, HIGH); + if (point.z == 0) { + // Invalid, no change + data->point = last.point; + data->state = last.state; + } else { + // Valid, change + // TODO adapt code to your display + data->point.x = map(point.x, TS_LEFT, TS_RT, 0, tft.width());; + data->point.y = map(point.y, TS_TOP, TS_BOT, 0, tft.height()); + if ((point.z > TS_MIN) && (point.z < TS_MAX)) { + data->state = LV_INDEV_STATE_PR; + } else { + data->point = last.point; + data->state = LV_INDEV_STATE_REL; + } + } + last.point = data->point; + last.state = data->state; + return false; +} + +// Initialize +void lvgl_init(void) { +#if LV_USE_LOG != 0 + lv_log_register_print_cb(lvgl_print); +#endif + // Initialize the library + lv_init(); + lv_disp_buf_init(&lvgl_disp_buf, lvgl_buf, NULL, LV_HOR_RES_MAX * 10); + // Initialize the display driver + lv_disp_drv_t disp_drv; + lv_disp_drv_init(&disp_drv); + disp_drv.hor_res = LV_HOR_RES_MAX; + disp_drv.ver_res = LV_VER_RES_MAX; + disp_drv.flush_cb = lvgl_disp_flush; + disp_drv.buffer = &lvgl_disp_buf; + lv_disp_drv_register(&disp_drv); + // Initialize the touch pad driver + lv_indev_drv_t indev_drv; + lv_indev_drv_init(&indev_drv); + indev_drv.type = LV_INDEV_TYPE_POINTER; + indev_drv.read_cb = lvgl_input_read; + lv_indev_drv_register(&indev_drv); +} + +// Setup the UI elements +void lvgl_setup(void) { + // Toolbar zone + { + lvgl_toolbar = lv_btnmatrix_create(lv_scr_act(), NULL); + lv_obj_set_event_cb(lvgl_toolbar, lvgl_button_action); + lv_obj_set_size(lvgl_toolbar, LV_HOR_RES, 40); + lv_obj_align(lvgl_toolbar, NULL, LV_ALIGN_IN_TOP_MID, 0, 0); + } + // Files zone + { + // Create the list + lvgl_files = lv_list_create(lv_scr_act(), NULL); + lv_obj_set_size(lvgl_files, tft.width(), tft.height() - 40); + lv_obj_align(lvgl_files, lvgl_toolbar, LV_ALIGN_OUT_BOTTOM_MID, 0, 0); + lv_list_set_scrollbar_mode(lvgl_files, LV_SCRLBAR_MODE_AUTO); + } + // Play zone + { + // Create the container + lvgl_play = lv_cont_create(lv_scr_act(), NULL); + lv_obj_set_size(lvgl_play, tft.width(), tft.height() - 40); + lv_obj_align(lvgl_play, lvgl_toolbar, LV_ALIGN_OUT_BOTTOM_MID, 0, 0); + lv_obj_set_hidden(lvgl_play, true); + lvgl_filename = lv_label_create(lvgl_play, NULL); + lv_label_set_long_mode(lvgl_filename, LV_LABEL_LONG_SROLL); + lv_obj_set_width(lvgl_filename, tft.width() - 20); + lv_obj_align(lvgl_filename, NULL, LV_ALIGN_IN_TOP_LEFT, 10, 10); + lvgl_size = lv_label_create(lvgl_play, NULL); + lv_label_set_long_mode(lvgl_size, LV_LABEL_LONG_SROLL); + lv_obj_set_width(lvgl_size, tft.width() - 20); + lv_obj_align(lvgl_size, lvgl_filename, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 10); + lvgl_motor = lv_checkbox_create(lvgl_play, NULL); + lv_checkbox_set_text(lvgl_motor, "Moteur"); + lv_obj_align(lvgl_motor, lvgl_size, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 10); + // Create a bar + lvgl_bar = lv_bar_create(lvgl_play, NULL); + lv_obj_set_size(lvgl_bar, tft.width() - 20, 30); + lv_obj_align(lvgl_bar, NULL, LV_ALIGN_IN_BOTTOM_MID, 0, -10); + } +} + +// Update the UI from application state +void lvgl_update(const uint16_t state) { + static const char* lvgl_buttons[] = { + LV_SYMBOL_HOME, + LV_SYMBOL_UP, + LV_SYMBOL_RECORD, + LV_SYMBOL_STOP, + LV_SYMBOL_SETTINGS, + "" + }; + lv_btnmatrix_ctrl_t controls[] = { 0, 0, 0, 0, 0 }; + // Display play or record + if (worker.action == action_play) { + lvgl_buttons[button_action] = LV_SYMBOL_PLAY; + } else { + lvgl_buttons[button_action] = LV_SYMBOL_RECORD; + } + // Disable root and up buttons + if ((folders.count() < 2) | (state & TOOLBAR_STOP)) { + controls[button_root] = controls[button_up] = LV_BTNMATRIX_CTRL_DISABLED; + } + // Disable action button, play or record + if (~state & TOOLBAR_ACTION) { + controls[button_action] = LV_BTNMATRIX_CTRL_DISABLED; + } + // Disable stop button + if (~state & TOOLBAR_STOP) { + controls[button_stop] = LV_BTNMATRIX_CTRL_DISABLED; + } + lv_btnmatrix_set_map(lvgl_toolbar, lvgl_buttons); + lv_btnmatrix_set_ctrl_map(lvgl_toolbar, controls); +} + +// Display a message box +void lvgl_box_display() { + if (lvgl_box == NULL) { + // Set colors to styles + switch (worker.box.state) { + case state_media: + // TODO Alarm, red + break; + case state_eob: + case state_eof: + case state_settings: + // TODO Information, green + break; + } + // Create the message box + static const char* buttons[] = { "Fermer", "" }; + lvgl_box = lv_msgbox_create(lv_scr_act(), NULL); + lv_msgbox_set_text(lvgl_box, worker.box.message); + lv_msgbox_add_btns(lvgl_box, buttons); + lv_obj_set_event_cb(lvgl_box, lvgl_box_action); + lv_obj_set_width(lvgl_box, 200); + lv_obj_align(lvgl_box, NULL, LV_ALIGN_CENTER, 0, 0); + // TODO Apply styles + } +} + +// Handle box action +void lvgl_box_action(lv_obj_t* box, lv_event_t event) { + UNUSED(box); + if (event == LV_EVENT_VALUE_CHANGED) { + switch (worker.box.state) { + case state_media: + if (fat.begin()) { + worker.state = state_hide; + worker.box.state = state_root; + } + break; + case state_eob: + case state_eof: + case state_settings: + worker.state = state_hide; + worker.box.state = state_idle; + break; + } + } +} + +// Compare function to sort folders and files stacks +bool compare(String*& a, String*& b) { + return *a > *b; +} + +#define FILENAME_SIZE 256 + +// Load list with folders and files names +void lvgl_files_load(void) { + char buffer[FILENAME_SIZE]; + Stack folders; + Stack files; + // Clean the list + lv_list_clean(lvgl_files); + // Build the list + fat.vwd()->rewind(); + fat.vwd()->getName(buffer, FILENAME_SIZE); + // Loop files + while (file.openNext(fat.vwd(), O_RDONLY)) { + file.getName(buffer, FILENAME_SIZE); + if (!file.isHidden()) { + if (file.isDir()) { + folders.push(new String(buffer)); + } else { + files.push(new String(buffer)); + } + } + file.close(); + } + // Sort, folders then files, alphabetical order + folders.sort(compare); + files.sort(compare); + // Load + for (unsigned int index = 0; index < folders.count(); ++index) { + lv_obj_t* button = lv_list_add_btn(lvgl_files, LV_SYMBOL_DIRECTORY, folders[index]->c_str()); + lv_obj_set_event_cb(button, lvgl_folder_action); + } + for (unsigned int index = 0; index < files.count(); ++index) { + lv_obj_t* button = lv_list_add_btn(lvgl_files, LV_SYMBOL_FILE, files[index]->c_str()); + lv_obj_set_event_cb(button, lvgl_file_action); + } +} + +// Handle folder action, open folder +void lvgl_folder_action(lv_obj_t* button, lv_event_t event) { + if (event == LV_EVENT_CLICKED) { + worker.filename = (char*)lv_list_get_btn_text(button); + if (file.open(worker.filename, O_RDONLY)) { + worker.state = state_folder; + file.close(); + } + } +} + +// Handle file action, open file +void lvgl_file_action(lv_obj_t* button, lv_event_t event) { + if (event == LV_EVENT_CLICKED) { + worker.filename = (char*)lv_list_get_btn_text(button); + if (file.open(worker.filename, O_RDONLY)) { + worker.state = state_file; + } + } +} + +// Handle buttons action +void lvgl_button_action(lv_obj_t* toolbar, lv_event_t event) { + uint16_t button = lv_btnmatrix_get_active_btn(toolbar); + if (event == LV_EVENT_CLICKED) { + if (!lv_btnmatrix_get_btn_ctrl(toolbar, button, LV_BTNMATRIX_CTRL_DISABLED)) { + switch (button) { + case button_root: + worker.state = state_root; + Debugln("root button clicked"); + break; + case button_up: + worker.state = state_up; + Debugln("up button clicked"); + break; + case button_action: // Record or play + if (worker.action == action_play) { + worker.state = state_play; + Debugln("play button clicked"); + } else { + worker.state = state_record; + Debugln("record button clicked"); + } + break; + case button_stop: + worker.state = state_stop; + Debugln("stop button clicked"); + break; + case button_settings: + worker.state = state_settings; + Debugln("settings button clicked"); + break; + default: + break; + } + } + } +} + +/////////////////////// +// Interrupt handler // +/////////////////////// + +// Tick UI every millisecond +void HAL_SYSTICK_Callback(void) { + lv_tick_inc(1); +} + +// Timer output sample to computer +void readIRQHandler(void) { + // One pulse + // TODO TIM_SR_UIF not cleared by HardwareTimer class + TIM6->SR = ~TIM_SR_UIF; + lep_output(); +} + +// Timer capture input sample from computer +void writeIRQHandler(void) { + // Edge detection + // TODO assume TIM_SR_CC1IF cleared by HardwareTimer class + TIM13->CNT = 0; + lep_input(); +} + +void rolloverIRQHandler(void) { + // TODO assume TIM_SR_CC1OF not cleared by HardwareTimer class + // Overcapture + if (TIM13->SR & TIM_SR_CC1OF) { + TIM13->SR = ~TIM_SR_CC1OF; + worker.overcapture++; + } + // TODO assume TIM_SR_UIF cleared by HardwareTimer class + worker.overflow++; +} + +// Motor +void motorIRQHandler() { + worker.motor = digitalRead(PIN_MOTOR) == worker.active; + if (worker.action == action_record) { + if (worker.motor) { + worker.input = digitalRead(PIN_INPUT); + // Counter reset + TIM13->CNT = 0; + // Enable interrupts + TIM13->DIER |= TIM_DIER_CC1IE | TIM_DIER_UIE; + // Enable timer + TIM13->CR1 |= TIM_CR1_CEN; + } else { + // Disable timer + TIM13->CR1 &= ~TIM_CR1_CEN; + // Disable interrupts + TIM13->DIER &= ~(TIM_DIER_CC1IE | TIM_DIER_UIE); + // Input + lep_input(); + } + } else { + if (worker.motor) { + // TODO check something to be done? + } else { + // TODO Thomson LEP presence is output high + // TODO not sure if needed + digitalWrite(PIN_OUTPUT, HIGH); + } + } + worker.ui |= UI_MOTOR; +} + +// User button +void userButtonIRQHandler() { + worker.ui |= UI_CAPTURE; +} + +///////////// +// SD card // +///////////// + +#if CAPTURE + +void sd_screen_capture() { + char filename[14]; + unsigned int index = 0; + do { + sprintf(filename, "%08d.data", ++index); + } while (fat.exists(filename)); + Serial.print("Save "); + Serial.print(filename); + uint16_t* pixels = (uint16_t*)malloc(sizeof(uint16_t) * tft.width()); + if (pixels) { + SdFile file; + if (file.open(filename, O_CREAT | O_RDWR)) { + for (int y = 0; y < tft.height(); ++y) { + tft.readGRAM(0, y, pixels, tft.width(), 1); + file.write(pixels, sizeof(uint16_t) * tft.width()); + } + } + file.close(); + } else { + Serial.println(" failed"); + } + free(pixels); + Serial.println(" done"); +} + +#endif + +///////// +// LEP // +///////// + +// Initialize IO pins +void lep_init() { + // Activity + pinMode(PIN_ACTIVITY, OUTPUT); + digitalWrite(PIN_ACTIVITY, LOW); + // Motor + pinMode(PIN_MOTOR, INPUT_PULLUP); + // Output + pinMode(PIN_OUTPUT, OUTPUT); + // TODO change default OUTPUT + digitalWrite(PIN_OUTPUT, HIGH); + // Input + pinMode(PIN_INPUT, INPUT); + pin_function(digitalPinToPinName(PIN_INPUT), STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF9_TIM13, 1, 0)); +} + +// Open file to play +void lep_file() { + lep_header header; + lep_block block; + // Worker + worker.eof = false; + worker.size = file.fileSize(); + // Header + file.read(&header, sizeof(header)); + if (header.magic == LEP_MAGIC) { + // LEP structured file + worker.period = header.period; + switch (header.brand) { + case LEP_EXELVISION: + case LEP_MATRA: + case LEP_MATTEL_ELECTRONICS: + worker.remote = false; + break; + default: + worker.remote = true; + worker.active = LOW; + break; + } + // Read block + file.read(&block, sizeof(block)); + worker.block.size = worker.block.available = worker.block.count = block.size; + } else { + // LEP raw file + worker.period = LEP_PERIOD; + worker.remote = true; + worker.active = LOW; + // Default block + file.rewind(); + worker.block.size = worker.block.available = worker.block.count = worker.size; + } + worker.block.read = 0; + // Action + worker.action = action_play; + // Debug + Debugln("File opened "); + Debug(worker.size); + Debugln(" bytes"); +} + +// Create file to record +void lep_create() { + static char filename[13]; + unsigned int index = 0; + lep_header header; + lep_block block; + worker.filename = NULL; + do { + sprintf(filename, "%08d.lep", ++index); + } while (fat.exists(filename)); + worker.filename = filename; + worker.block.write = 0; + if (file.open(worker.filename, O_CREAT | O_RDWR)) { + // Header + header.magic = LEP_MAGIC; + header.version = LEP_VERSION; + header.period = worker.period; + header.blocks = 1; + file.write(&header, sizeof(header)); + // Block + file.write(&block, sizeof(block)); + } + worker.block.size = worker.block.count = 0; +} + +// Motor +void lep_motor() { + // Debug + Debug("Motor "); + Debugln(worker.motor ? "on" : "off"); +} + +// Play +void lep_play() { + // Worker + worker.start = millis(); + worker.index = 0; + worker.output = HIGH; + // Read buffers + worker.buffer = 1; // Buffer #0 + lep_read(); + worker.buffer = 0; // Buffer #1 + lep_read(); + // Motor + if (worker.remote) { + worker.motor = digitalRead(PIN_MOTOR) == worker.active; + attachInterrupt(digitalPinToInterrupt(PIN_MOTOR), motorIRQHandler, CHANGE); + } else { + worker.motor = true; + } + worker.ui |= UI_MOTOR; + // Disable all interrupts + noInterrupts(); + // Initialize Timer 6 + // - enable TIM6 clock + // - set prescaler for 1 µs resolution + // - one pulse mode + // - force update + RCC->APB1ENR |= RCC_APB1ENR_TIM6EN; + TIM6->PSC = (uint32_t)(readTimer->getTimerClkFreq() / (1000000)) - 1; + TIM6->CR1 = TIM_CR1_OPM; + // Clear the update flag + TIM6->SR = ~TIM_SR_UIF; + // Enable interrupt on update event + TIM6->DIER |= TIM_DIER_UIE; + // Enable TIM6 IRQ handler + HAL_NVIC_SetPriority(TIM6_IRQn, 0, 0); + HAL_NVIC_EnableIRQ(TIM6_IRQn); + // Output + lep_output(); + // Enable all interrupts + interrupts(); +} + +// Record +void lep_record() { + // Worker + worker.start = millis(); + worker.buffer = 0; + worker.index = 0; + worker.remote = true; + worker.period = LEP_PERIOD; + worker.overflow = 0; + worker.overcapture = 0; + // Create file + lep_create(); + // Clear buffers + memset(worker.buffers[0], 0, BUFFER_SIZE); + memset(worker.buffers[1], 0, BUFFER_SIZE); + // Motor + if (worker.remote) { + worker.motor = digitalRead(PIN_MOTOR) == worker.active; + attachInterrupt(digitalPinToInterrupt(PIN_MOTOR), motorIRQHandler, CHANGE); + } else { + worker.motor = true; +// worker.input = digitalRead(PIN_INPUT); + } + worker.ui |= UI_MOTOR | UI_RECORD; + // Disable all interrupts + noInterrupts(); + // Initialize Timer 13 + // - enable TIM13 clock + // - set prescaler for 1 µs resolution + // - capture mode + RCC->APB1ENR |= RCC_APB1ENR_TIM13EN; + TIM13->PSC = (uint32_t)(writeTimer->getTimerClkFreq() / (1000000)) - 1; + // Reset counter + TIM13->CNT = 0; + // Configured as input + TIM13->CCMR1 |= TIM_CCMR1_CC1S_0; + // Both edges, capture enabled + TIM13->CCER |= TIM_CCER_CC1NP | TIM_CCER_CC1P | TIM_CCER_CC1E; + // Clear the update and channel 1 flags + TIM13->SR = ~(TIM_SR_CC1OF | TIM_SR_CC1IF | TIM_SR_UIF); + // Enable TIM13 IRQ handler + HAL_NVIC_SetPriority(TIM13_IRQn, 0, 0); + HAL_NVIC_EnableIRQ(TIM13_IRQn); +// if (worker.motor) { +// writeTimer->resume(); +// } + // Enable all interrupts + interrupts(); +} + +// Output LEP sample to computer +void lep_output() { + if (worker.motor) { + // Motor on + if (worker.block.count--) { + int8_t byte = worker.buffers[worker.buffer][worker.index++]; + if (byte == 0) { + // 127 * 50 µs + TIM6->ARR = 127 * worker.period - 1; + TIM6->CR1 |= TIM_CR1_CEN; + } else { + // |byte| * 50 µs + TIM6->ARR = abs(byte) * worker.period - 1; + TIM6->CR1 |= TIM_CR1_CEN; + worker.output = byte > 0 ? HIGH : LOW; + } + digitalWrite(PIN_OUTPUT, worker.output); + // Buffers + if (worker.index == BUFFER_SIZE) { + worker.buffer ^= 1; + worker.index = 0; + worker.state = state_read; + } + } else { + // Worker + worker.stop = millis(); + worker.state = worker.eof ? state_eof : state_eob; + } + } else { + // Motor off, delay 50 µs + // TODO restart timer on motor change + TIM6->ARR = worker.period - 1; + TIM6->CR1 |= TIM_CR1_CEN; + } +} + +// Input LEP sample from computer +void lep_input() { + uint32_t counter; + uint16_t zeros; + int8_t byte; + counter = (TIM13->CCR1 + (worker.overflow << 16)) / worker.period; + worker.overflow = 0; + zeros = counter / 127; + byte = counter % 127; + if (byte == 0) { + byte++; + } + // Toggle + worker.input ^= HIGH; + if (worker.input == LOW) { + byte = -byte; + } + // Byte + worker.buffers[worker.buffer][worker.index++] = byte; + // Zeros + worker.block.count += (zeros + 1); + worker.index += zeros; + // Buffers + if (worker.index >= BUFFER_SIZE) { + worker.buffer ^= 1; + worker.index -= BUFFER_SIZE; + worker.state = state_write; + } + worker.ui |= UI_RECORD; +} + +// Read buffer from file +void lep_read() { +#ifdef DEBUG + unsigned long start = micros(); +#endif + unsigned int count = MIN(worker.block.available, BUFFER_SIZE); + int read = file.read(worker.buffers[worker.buffer ^ 1], count); + worker.eof = !file.available(); + worker.block.read++; + worker.block.available -= read; + // Toggle LED + digitalWrite(PIN_ACTIVITY, digitalRead(PIN_ACTIVITY) ^ 1); + // Debug + Debug(worker.block.read); + Debug(" read "); + Debug(read); + Debug(" bytes in buffer "); + Debug(worker.buffer ^ 1); + Debug(" count "); + Debug(worker.block.count); + Debug(" time "); + Debug(micros() - start); + Debugln(" µs"); + if (worker.eof) { + Debugln("EOF "); + } +} + +// Write buffer to file +void lep_write() { +#ifdef DEBUG + unsigned long start = micros(); +#endif + int write = file.write(worker.buffers[worker.buffer ^ 1], BUFFER_SIZE); + memset(worker.buffers[worker.buffer ^ 1], 0, BUFFER_SIZE); + worker.block.write++; + worker.block.size += write; + // Toggle LED + digitalWrite(PIN_ACTIVITY, digitalRead(PIN_ACTIVITY) ^ 1); + // Debug + Debug(worker.block.write); + Debug(" write "); + Debug(write); + Debug(" bytes in buffer "); + Debug(worker.buffer ^ 1); + Debug(" count "); + Debug(worker.block.count); + Debug(" time "); + Debug(micros() - start); + Debugln(" µs"); +} + +// End of block play +void lep_eob() { + lep_block block; + // Motor + if (worker.remote) { + worker.motor = digitalRead(PIN_MOTOR) == worker.active; + detachInterrupt(digitalPinToInterrupt(PIN_MOTOR)); + } else { + worker.motor = false; + } + worker.ui |= UI_MOTOR; + // Read block + file.read(&block, sizeof(block)); + worker.block.size = worker.block.available = worker.block.count = block.size; + worker.block.read = 0; + // Debug + Debug("Total time "); + Debug(worker.stop - worker.start); + Debugln(" ms"); +} + +// End of file play +void lep_eof() { + // Debug + Debug("Total time "); + Debug(worker.stop - worker.start); + Debugln(" ms"); +} + +// Stop play or record +void lep_stop() { + lep_header header; + lep_block block; + // TODO Thomson LEP presence is output high + digitalWrite(PIN_OUTPUT, HIGH); + // Motor + if (worker.remote) { + worker.motor = digitalRead(PIN_MOTOR) == worker.active; + detachInterrupt(digitalPinToInterrupt(PIN_MOTOR)); + } else { + worker.motor = false; + } + // Action + switch (worker.action) { + case action_play: + // Disable timer + TIM6->CR1 &= ~TIM_CR1_CEN; + // Close file + file.close(); + break; + case action_record: + // Disable timer + TIM13->CR1 &= ~TIM_CR1_CEN; + // Buffer + if (worker.index > 1) { + --worker.index; // Remove unused last byte +#ifdef DEBUG + unsigned long start = micros(); +#endif + int write = file.write(worker.buffers[worker.buffer], worker.index); + worker.block.write++; + worker.block.size += write; + // Debug + Debug(worker.block.write); + Debug(" write "); + Debug(write); + Debug(" bytes in buffer "); + Debug(worker.buffer); + Debug(" count "); + Debug(worker.block.count); + Debug(" time "); + Debug(micros() - start); + Debugln(" µs"); + } + // Block + block.size = worker.block.size; + // Write + file.rewind(); + file.read(&header, sizeof(header)); + file.rewind(); + file.write(&header, sizeof(header)); + file.write(&block, sizeof(block)); + file.close(); + // UI + lvgl_files_load(); + break; + } + digitalWrite(PIN_ACTIVITY, LOW); + // Action + worker.action = action_record; +} + +///////////// +// Arduino // +///////////// + +void setup() { + Serial.begin(115200); + Serial.println(F("Nucleo LEP 1.0.0")); + Serial.println(F(__DATE__)); + Serial.println(F(__TIME__)); + Serial.print(F("CPU frequency ")); + Serial.print(0.000001 * F_CPU); +#if defined(__OPTIMIZE_SIZE__) + Serial.println(F("MHz -Os")); +#else + Serial.println(F("MHz")); +#endif + Serial.println(F("Setup")); + // Timer + readTimer = new HardwareTimer(TIM6); + readTimer->attachInterrupt(readIRQHandler); + writeTimer = new HardwareTimer(TIM13); + writeTimer->attachInterrupt(1, writeIRQHandler); + writeTimer->attachInterrupt(rolloverIRQHandler); + Serial.println(F("Timer")); + // User button + attachInterrupt(USER_BTN, userButtonIRQHandler, LOW); + // TFT + tft.reset(); + uint16_t identifier = tft.readID(); + tft.begin(identifier); + Serial.print(F("TFT 0x")); + Serial.println(identifier, HEX); + // LVGL + lvgl_init(); + lvgl_setup(); + lvgl_update(TOOLBAR_NONE); + // LEP + lep_init(); + // SD card + worker.state = fat.begin() ? state_root : state_media; +} + +void loop() { + // User interface + if (worker.ui) { + if (worker.ui & UI_MOTOR) { + lep_motor(); + lv_checkbox_set_checked(lvgl_motor, worker.motor); + } + if (worker.ui & UI_PLAY) { + // TODO UI play update + } + if (worker.ui & UI_RECORD) { + String format(worker.block.count); + format += " octets"; + lv_label_set_text(lvgl_size, format.c_str()); + } + if (worker.ui & UI_CAPTURE) { + sd_screen_capture(); + } + worker.ui = UI_NONE; + } + lv_task_handler(); + // Worker + switch (worker.state) { + case state_idle: // Nothing + break; + case state_hide: // Hide the message box + // UI + lv_obj_del(lvgl_box); + lvgl_box = NULL; + // State + worker.state = worker.box.state; + break; + case state_media: // Ask user to insert a µSD Card + // UI + lvgl_update(TOOLBAR_NONE); + worker.box.state = worker.state; + worker.box.message = "Insérez une carte\nmicro SD."; + lvgl_box_display(); + // State + worker.state = state_idle; + // Action + worker.action = action_idle; + break; + case state_root: // Move to root and browse directory + folders.clear(); + folders.push(new String("/")); + fat.chdir(); + // Action + worker.action = action_record; + // UI + lvgl_files_load(); + lvgl_update(TOOLBAR_ACTION); + // State + worker.state = state_idle; + break; + case state_up: // Open parent folder and browse directory + folders.pop(); + fat.chdir(); + for (unsigned int index = 0; index < folders.count(); ++index) { + fat.chdir(folders[index]->c_str()); + } + // UI + lvgl_files_load(); + lvgl_update(TOOLBAR_ACTION); + // State + worker.state = state_idle; + break; + case state_folder: // Open a folder and browse directory + folders.push(new String(worker.filename)); + fat.chdir(worker.filename, true); + // UI + lvgl_files_load(); + lvgl_update(TOOLBAR_ACTION); + // State + worker.state = state_idle; + break; + case state_file: // Open file + lep_file(); + // UI + lvgl_update(TOOLBAR_PLAY | TOOLBAR_ACTION | TOOLBAR_STOP); + lv_label_set_text(lvgl_filename, worker.filename); + { + String format(worker.size); + format += " octets"; + lv_label_set_text(lvgl_size, format.c_str()); + } + lv_checkbox_set_checked(lvgl_motor, worker.motor); + lv_bar_set_value(lvgl_bar, 0, LV_ANIM_OFF); + lv_obj_set_hidden(lvgl_files, true); + lv_obj_set_hidden(lvgl_bar, false); + lv_obj_set_hidden(lvgl_play, false); + // State + worker.state = state_idle; + break; + case state_play: // Play file + lep_play(); + // UI + lvgl_update(TOOLBAR_PLAY | TOOLBAR_STOP); + lv_bar_set_range(lvgl_bar, 0, worker.block.size / BUFFER_SIZE); + lv_bar_set_value(lvgl_bar, 0, LV_ANIM_ON); + // State + worker.state = state_idle; + break; + case state_record: // Record file + lep_record(); + // UI + lvgl_update(TOOLBAR_STOP); + lv_label_set_text(lvgl_filename, worker.filename); + lv_label_set_text(lvgl_size, "0 octets"); + lv_checkbox_set_checked(lvgl_motor, worker.motor); + lv_bar_set_value(lvgl_bar, 0, LV_ANIM_OFF); + lv_obj_set_hidden(lvgl_files, true); + lv_obj_set_hidden(lvgl_bar, true); + lv_obj_set_hidden(lvgl_play, false); + // State + worker.state = state_idle; + break; + case state_read: // Read buffer from file + lep_read(); + // UI + lv_bar_set_value(lvgl_bar, worker.block.read, LV_ANIM_ON); + // State + worker.state = state_idle; + break; + case state_write: // Write buffer to file + lep_write(); + // State + worker.state = state_idle; + break; + case state_eob: // End of block + lep_eob(); + // UI + lvgl_update(TOOLBAR_PLAY | TOOLBAR_ACTION | TOOLBAR_STOP); + worker.box.state = worker.state; + worker.box.message = "La lecture du bloc\nest terminée."; + lvgl_box_display(); + // State + worker.state = state_idle; + break; + case state_eof: // End of file + lep_eof(); + // UI + worker.box.state = worker.state; + worker.box.message = "La lecture du fichier\nest terminée."; + lvgl_box_display(); + // State + worker.state = state_idle; + break; + case state_stop: // Stop file operation and display directory + lep_stop(); + // UI + lvgl_update(TOOLBAR_ACTION); + lv_checkbox_set_checked(lvgl_motor, worker.motor); + lv_bar_set_value(lvgl_bar, 0, LV_ANIM_OFF); + lv_obj_set_hidden(lvgl_files, false); + lv_obj_set_hidden(lvgl_play, true); + // State + worker.state = state_idle; + break; + case state_settings: // Display settings + // UI + worker.box.state = worker.state; + worker.box.message = "Nucleo LEP\n1.0.0\nCore 1.9.0\n" __DATE__ "\n" __TIME__; + lvgl_box_display(); + // State + worker.state = state_idle; + break; + default: + break; + } +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..fa1ec44 --- /dev/null +++ b/README.md @@ -0,0 +1,155 @@ +# Nucleo LEP +Nucleo LEP est un lecteur enregistreur de fichiers LEP basé sur une carte Nucleo. + +## Présentation +Nucleo LEP permet de lire et écrire des fichiers LEP sur un micro-ordinateur. + +Le format de fichier LEP créé par Daniel Coulom est documenté sur cette [page](http://dcmoto.free.fr/bricolage/sdlep-reader/index.html). + +Ce système constitue une alternative à l'utilisation d'un lecteur enregistreur de cassette analogique, utilisé comme mémoire de masse. + +## Installation +Nucleo LEP est constitué de plusieurs éléments. En fonction du micro-ordinateur utilisé, une connectique spécifique sera utilisée. + +### Matériel +* Une carte [Nucleo-F429ZI](https://www.st.com/en/evaluation-tools/nucleo-f429zi.html). +* Un écran TFT tactile avec lecteur de micro carte SD intégré. +* Une carte micro SD. + +En ce qui concerne l'écran, il existe de nombreux modèles avec différents contrôleurs. Il faudra en conséquence adapter la gestion de l'écran. +L'écran utilisé est parfaitement géré par la librairie MCUFRIEND_kbv pour l'affichage et la librairie Adafruit TouchScreen pour le tactile. + +Les fichiers **.LEP** doivent être copiés sur la carte SD. Les sous-répertoires sont autorisés. + +### Câblage +La première étape consiste à installer l'écran tactile sur la carte Nucleo. +Le connecteur CN9 de la carte Nucleo est utilisé pour la liaison avec le micro-ordinateur utilisé : + +CN9|NucleoLEP|Direction|Ordinateur|Remarque +:---:|:---|:---:|:---|:--- +GND|ground|<->|ground|Masse commune +PF8|input|<-|output|Ecriture +PD0|motor|<-|remote|Commande de moteur. +PF7|output|->|input|Lecture + +## Logiciel +Pour développer l'application, l'IDE Eclipse, le plugin Sloeber et le core officiel de STMicroelectronics sont utilisés : +* [Eclipse CDT](https://www.eclipse.org/cdt/) 2020-06 +* [Sloeber](https://eclipse.baeyens.it/) 4.3.3 +* Core officiel [Arduino STM32](https://github.com/stm32duino/Arduino_Core_STM32) 1.9.0. + +### Librairies +L'application utilise plusieurs librairies : +* Adafruit BusIO 1.6.0 +* Adafruit GFX Library 1.10.2 +* Adafruit TouchScreen 1.1.1 +* LVGL 7.7.0 +* MCUFRIEND_kbv 2.9.9 +* SdFat 1.1.4 + +### Modifications +Il est nécessaire de modifier le core Arduino. Ces modifications sont [intégrées](http://github.com/stm32duino/Arduino_Core_STM32/pull/1209) à la version de développement du core. +Dans le fichier **core/HardwareTimer.h**, remplacer +```cpp +#if defined(STM32F1xx) || defined(STM32F2xx) ||defined(STM32F4xx) || defined(STM32F7xx) || defined(STM32H7xx) +#if defined(TIMER13_BASE) + if (HardwareTimer_Handle[TIMER13_INDEX]) { + HAL_TIM_IRQHandler(&HardwareTimer_Handle[TIMER13_INDEX]->handle); + } +#endif // TIMER13_BASE +#endif +``` +par +```cpp +#if defined(STM32F1xx) || defined(STM32F2xx) ||defined(STM32F4xx) || defined(STM32F7xx) || defined(STM32H7xx) +#if defined(TIM13_BASE) + if (HardwareTimer_Handle[TIMER13_INDEX]) { + HAL_TIM_IRQHandler(&HardwareTimer_Handle[TIMER13_INDEX]->handle); + } +#endif // TIM13_BASE +#endif +``` +Pour pouvoir compiler la librairie LVGL, il faut ajouter une directive de compilation pour indiquer comment configurer la librairie. +```makefile +-DLV_CONF_INCLUDE_SIMPLE +``` +Si votre écran utilise un composant HX8347, il est nécessaire de décommenter une ligne du fichier **MCUFRIEND_kbv.cpp** pour activer le support de ce composant. +```cpp +#define SUPPORT_8347D +``` +La modification du paramètre **NUMSAMPLES** du fichier **TouchScreen.cpp** de la librairie permet d'améliorer la gestion du tactile. +```cpp +#define NUMSAMPLES 4 +``` +## Utilisation +### Interface +La capture d'écran suivante présente l'écran de démarrage de l'application. + +![Ecran de démarrage](images/fr/root.png) + +L'écran est divisé en deux parties : +- Une barre de boutons. +- Une zone de travail. + +|Bouton|Action| +|--|--| +|![Racine](images/home.png)|Accès à la racine de la carte SD| +|![Parent](images/up.png)|Accès au répertoire parent de la carte SD| +|![Lecture](images/play.png)|Lecture de fichier| +|![Ecriture](images/record.png)|Ecriture de fichier| +|![Arrêt](images/stop.png)|Arrêt de l'opération et retour au mode navigation| +|![Configuration](images/settings.png)|Affichage des informations de version| + +|Icône|Type de fichier| +|--|--| +|![Répertoire](images/folder.png)|Répertoire| +|![Fichier](images/file.png)|Fichier| +### Navigation +A partir de l'écran de démarrage, la sélection d'un répertoire (par exemple **Thomson**) permet d'afficher le contenu du répertoire. + +![Ecran de navigation](images/fr/folders.png) + +Les boutons ![Racine](images/home.png) et ![Parent](images/up.png) sont alors actifs. + +La sélection du répertoire **MO** affiche le contenu du répertoire. + +![Ecran de navigation](images/fr/files.png) + +Une barre de défilement permet d'accèder aux éléments du système de fichiers qui ne sont pas affichés. + +Si le nom d'un élément est trop long pour être affiché en totalité, une animation le fait défiler horizontalement (par exemple **La mine aux diamants.mo5.lep**). + +### Lecture +Pour lire un fichier, il faut naviguer dans le système de fichiers pour sélectionner le fichier à lire. L'écran de lecture est affiché. + +![Ecran de lecture](images/fr/file.png) + +Le nom et la taille du fichier à lire sont affichés, ainsi que l'état de la commande du moteur du lecteur et une barre de progression de lecture. + +|Bouton|Action| +|--|--| +|![Lecture](images/play.png)|Lecture| +|![Arrêt](images/stop.png)|Arrêt de l'opération et retour au mode navigation| + +L'appui sur le bouton lecture démarre la lecture. + +L'appui sur le bouton d'arrêt permet d'arrêter ou d'annuler la lecture et de retourner en mode navigation. + +### Ecriture +L'écriture d'un fichier se fait dans le répertoire courant. Pour écrire un fichier, il faut naviguer dans le système de fichiers puis appuyer sur le bouton écriture. L'écran d'écriture est affiché. + +![Ecran d'écriture](images/fr/record.png) + +Le nom et la taille du fichier à écrire sont affichés, ainsi que l'état de la commande du moteur du lecteur. Le nom du fichier est déterminé par le l'application. La taille du fchier est actualisée pendant l'écriture. + +|Bouton|Action| +|--|--| +|![Arrêt](images/stop.png)|Arrêt de l'opération et retour au mode navigation| + +L'appui sur le bouton d'arrêt permet d'arrêter l'écriture et de retourner en mode navigation. + +### Information de version +L'appui sur le bouton de configuration affiche une fenêtre qui comporte des informations de version. +![Ecran d'écriture](images/fr/about.png) + +Pour fermer la fenêtre, il faut appuyer sur le bouton Fermer. \ No newline at end of file diff --git a/Stack.h b/Stack.h new file mode 100644 index 0000000..fc14944 --- /dev/null +++ b/Stack.h @@ -0,0 +1,200 @@ +// Stack +// © 2019 Patrick Lafarguette +// +// See https://github.com/zacsketches/Arduino_Vector +// and https://en.wikipedia.org/wiki/Bubble_sort + +#ifndef STACK_H +#define STACK_H + +#include + +#ifndef UNUSED +#define UNUSED(X) (void)X +#endif + +template +void* operator new(size_t size, T* item) { + UNUSED(size); + return item; +} + +template struct Allocator { + + Allocator() {}; + + T* allocate(unsigned int count) { + return reinterpret_cast(new char[count * sizeof(T)]); + } + + void deallocate(T* item) { + delete[] reinterpret_cast(item); + } + + void create(T* pointer, const T& item) { + new (pointer) T(item); + } + void destroy(T* item) { + item->~T(); + } +}; + +template > +class Stack { +private: + unsigned int _count; + unsigned int _capacity; + + A _allocator; + T* _items; + + Stack(const Stack&); + +public: + Stack() : + _count(0), _capacity(0), _items(0) { + } + + Stack(const int capacity) : + _count(0) { + reserve(capacity); + } + + Stack& operator=(const Stack&); + + ~Stack() { + for (unsigned int index = 0; index < _count; ++index) { + _allocator.destroy(&_items[index]); + } + } + + T& operator[](unsigned int index) { + return _items[index]; + } + + const T& operator[](unsigned int index) const { + return _items[index]; + } + + unsigned int count() const { + return _count; + } + + unsigned int capacity() const { + return _capacity; + } + + void reserve(unsigned int capacity); + void push(const T& item); + void pop(); + void clear(); + void sort(bool (*Compare)(T& a, T& b)); + void dump(); + +private: + void swap(const unsigned int a, const unsigned int b); +}; + +template Stack& Stack::operator=(const Stack& stack) { + if (this == &stack) { + return *this; + } + if (stack.count() <= _capacity) { + for (unsigned int index = 0; index < stack._count(); ++index) { + _items[index] = stack[index]; + } + _count = stack._count(); + return *this; + } + + T* items = _allocator.allocate(stack.count()); + for (unsigned int index = 0; index < stack.count(); ++index) { + _allocator.create(&items[index], stack[index]); + } + for (unsigned int index = 0; index < _count; ++index) { + _allocator.destroy(&_items[index]); + } + _capacity = _count = stack.count(); + _items = items; + return *this; +} + +template void Stack::reserve(unsigned int capacity) { + if (capacity <= _capacity) { + return; + } + T* pointer = _allocator.allocate(capacity); + for (unsigned int index = 0; index < _count; ++index) { + _allocator.create(&pointer[index], _items[index]); + } + for (unsigned int index = 0; index < _count; ++index) { + _allocator.destroy(&_items[index]); + } + _allocator.deallocate(_items); + _items = pointer; + _capacity = capacity; +} + +template +void Stack::push(const T& item) { + if (_capacity == 0) { + reserve(4); + } else if (_count == _capacity) { + reserve(2 * _capacity); + } + _allocator.create(&_items[_count], item); + ++_count; +} + +template +void Stack::pop() { + if (_count > 0) { + _allocator.destroy(&_items[--_count]); + } +} + +template +void Stack::clear() { + for (unsigned int index = 0; index < _count; ++index) { + _allocator.destroy(&_items[index]); + } + _count = 0; +} + +template +void Stack::sort(bool (*Compare)(T& a, T& b)) { + if (_count) { + unsigned int last = _count; + do { + unsigned int next = 0; + for (unsigned int index = 1; index < last; ++index) { + if (Compare(_items[index - 1], _items[index])) { + // Swap + swap(index - 1, index); + next = index; + } + } + last = next; + } while (last > 1); + } +} + +template +void Stack::swap(const unsigned int a, const unsigned int b) { + T swap = _items[a]; + _items[a] = _items[b]; + _items[b] = swap; +} + +template +void Stack::dump() { + for (unsigned int index = 0; index < _count; ++index) { + Serial.print(index); + Serial.print(" : "); + Serial.println(*_items[index]); + } + Serial.println(); + Serial.flush(); +} + +#endif /* STACK_H */ diff --git a/font_nucleo_14.c b/font_nucleo_14.c new file mode 100644 index 0000000..d862d7d --- /dev/null +++ b/font_nucleo_14.c @@ -0,0 +1,3230 @@ +#include + +/******************************************************************************* + * Size: 14 px + * Bpp: 4 + * Opts: + ******************************************************************************/ + +#ifndef FONT_NUCLEO_14 +#define FONT_NUCLEO_14 1 +#endif + +#if FONT_NUCLEO_14 + +/*----------------- + * BITMAPS + *----------------*/ + +/*Store the image of the glyphs*/ +static LV_ATTRIBUTE_LARGE_CONST const uint8_t gylph_bitmap[] = { + /* U+20 " " */ + + /* U+21 "!" */ + 0xc6, 0xb5, 0xb5, 0xa4, 0xa4, 0xa4, 0x93, 0x31, + 0x0, 0x52, 0xb5, + + /* U+22 "\"" */ + 0xd, 0xa, 0x30, 0xd0, 0x93, 0xc, 0x9, 0x30, + 0xc0, 0x92, + + /* U+23 "#" */ + 0x0, 0xc, 0x0, 0x29, 0x0, 0x0, 0xc, 0x0, + 0x38, 0x0, 0x0, 0xb, 0x0, 0x56, 0x0, 0x1d, + 0xdf, 0xdd, 0xee, 0xd4, 0x0, 0x38, 0x0, 0x92, + 0x0, 0x0, 0x56, 0x0, 0xb1, 0x0, 0x0, 0x75, + 0x0, 0xc0, 0x0, 0x7d, 0xed, 0xdd, 0xfd, 0xb0, + 0x0, 0xa1, 0x0, 0xb0, 0x0, 0x0, 0xc0, 0x2, + 0xa0, 0x0, 0x0, 0xc0, 0x3, 0x80, 0x0, + + /* U+24 "$" */ + 0x0, 0x0, 0x50, 0x0, 0x0, 0x0, 0xb0, 0x0, + 0x0, 0x8e, 0xfe, 0x91, 0xa, 0xa1, 0xb1, 0x74, + 0xf, 0x0, 0xb0, 0x0, 0xf, 0x10, 0xb0, 0x0, + 0xa, 0xd4, 0xb0, 0x0, 0x0, 0x7d, 0xfa, 0x40, + 0x0, 0x0, 0xc7, 0xe6, 0x0, 0x0, 0xb0, 0x4d, + 0x0, 0x0, 0xb0, 0x2e, 0x2c, 0x40, 0xb1, 0xb8, + 0x4, 0xce, 0xfe, 0x80, 0x0, 0x0, 0xb0, 0x0, + 0x0, 0x0, 0xb0, 0x0, + + /* U+25 "%" */ + 0x6, 0xbb, 0x20, 0x0, 0x94, 0x0, 0x29, 0x1, + 0xa0, 0x3, 0xa0, 0x0, 0x55, 0x0, 0xb0, 0xb, + 0x10, 0x0, 0x55, 0x0, 0xb0, 0x66, 0x0, 0x0, + 0x1a, 0x2, 0xa1, 0xb0, 0x0, 0x0, 0x4, 0xa9, + 0x19, 0x34, 0xa9, 0x10, 0x0, 0x0, 0x39, 0x1a, + 0x2, 0xa0, 0x0, 0x0, 0xb1, 0x55, 0x0, 0xb0, + 0x0, 0x6, 0x60, 0x55, 0x0, 0xb0, 0x0, 0x1b, + 0x0, 0x29, 0x0, 0xa0, 0x0, 0xa3, 0x0, 0x6, + 0xaa, 0x20, + + /* U+26 "&" */ + 0x0, 0x3c, 0xcb, 0x10, 0x0, 0x0, 0xd2, 0x6, + 0x80, 0x0, 0x0, 0xe0, 0x4, 0x90, 0x0, 0x0, + 0xc4, 0x1c, 0x30, 0x0, 0x0, 0x2e, 0xd4, 0x0, + 0x0, 0x0, 0xab, 0xd1, 0x0, 0x0, 0xb, 0x70, + 0x6c, 0x4, 0x70, 0x2c, 0x0, 0x8, 0xa9, 0x50, + 0x4b, 0x0, 0x0, 0xae, 0x0, 0xe, 0x50, 0x3, + 0xdd, 0x60, 0x2, 0xbe, 0xeb, 0x31, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+27 "'" */ + 0xd, 0xd, 0xc, 0xc, + + /* U+28 "(" */ + 0x2, 0xc0, 0x9, 0x50, 0xe, 0x0, 0x2c, 0x0, + 0x59, 0x0, 0x78, 0x0, 0x87, 0x0, 0x87, 0x0, + 0x78, 0x0, 0x59, 0x0, 0x2c, 0x0, 0xe, 0x0, + 0x9, 0x50, 0x2, 0xc0, + + /* U+29 ")" */ + 0x3c, 0x0, 0xc, 0x30, 0x7, 0x80, 0x2, 0xc0, + 0x0, 0xe0, 0x0, 0xe1, 0x0, 0xd2, 0x0, 0xd2, + 0x0, 0xe1, 0x0, 0xf0, 0x2, 0xc0, 0x6, 0x80, + 0xc, 0x30, 0x3c, 0x0, + + /* U+2A "*" */ + 0x0, 0x90, 0x0, 0x66, 0xa3, 0xa0, 0x7, 0xfb, + 0x10, 0x4b, 0xca, 0x90, 0x20, 0x90, 0x20, 0x0, + 0x40, 0x0, + + /* U+2B "+" */ + 0x0, 0x2, 0x30, 0x0, 0x0, 0x6, 0x70, 0x0, + 0x0, 0x6, 0x70, 0x0, 0xe, 0xee, 0xee, 0xe0, + 0x0, 0x6, 0x70, 0x0, 0x0, 0x6, 0x70, 0x0, + 0x0, 0x6, 0x70, 0x0, + + /* U+2C "," */ + 0x1a, 0x1, 0xe2, 0xc, 0x1, 0x90, + + /* U+2D "-" */ + 0x2f, 0xff, 0x70, + + /* U+2E "." */ + 0x8, 0x2, 0xe1, + + /* U+2F "/" */ + 0x0, 0x0, 0xd, 0x0, 0x0, 0x3, 0xb0, 0x0, + 0x0, 0x85, 0x0, 0x0, 0xd, 0x0, 0x0, 0x3, + 0xb0, 0x0, 0x0, 0x85, 0x0, 0x0, 0xd, 0x10, + 0x0, 0x3, 0xb0, 0x0, 0x0, 0x86, 0x0, 0x0, + 0xd, 0x10, 0x0, 0x3, 0xb0, 0x0, 0x0, 0x86, + 0x0, 0x0, 0xd, 0x10, 0x0, 0x2, 0xb0, 0x0, + 0x0, + + /* U+30 "0" */ + 0x0, 0x3c, 0xfd, 0x60, 0x0, 0x3e, 0x50, 0x3d, + 0x60, 0xb, 0x60, 0x0, 0x2e, 0x0, 0xf0, 0x0, + 0x0, 0xb4, 0x3d, 0x0, 0x0, 0x8, 0x73, 0xc0, + 0x0, 0x0, 0x88, 0x3d, 0x0, 0x0, 0x8, 0x70, + 0xf0, 0x0, 0x0, 0xb4, 0xb, 0x60, 0x0, 0x2e, + 0x0, 0x3e, 0x50, 0x3d, 0x60, 0x0, 0x3c, 0xfd, + 0x60, 0x0, + + /* U+31 "1" */ + 0xdf, 0xf7, 0x0, 0x97, 0x0, 0x97, 0x0, 0x97, + 0x0, 0x97, 0x0, 0x97, 0x0, 0x97, 0x0, 0x97, + 0x0, 0x97, 0x0, 0x97, 0x0, 0x97, + + /* U+32 "2" */ + 0x7, 0xdf, 0xe8, 0x0, 0x7b, 0x20, 0x2b, 0x90, + 0x0, 0x0, 0x2, 0xe0, 0x0, 0x0, 0x2, 0xe0, + 0x0, 0x0, 0x7, 0xa0, 0x0, 0x0, 0x3e, 0x10, + 0x0, 0x2, 0xe4, 0x0, 0x0, 0x1d, 0x50, 0x0, + 0x0, 0xd6, 0x0, 0x0, 0xc, 0x80, 0x0, 0x0, + 0x6f, 0xff, 0xff, 0xf6, + + /* U+33 "3" */ + 0x7f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xc, 0x50, + 0x0, 0x0, 0x7b, 0x0, 0x0, 0x2, 0xe1, 0x0, + 0x0, 0xc, 0x60, 0x0, 0x0, 0x2e, 0xda, 0x10, + 0x0, 0x0, 0x8, 0xc0, 0x0, 0x0, 0x0, 0xe1, + 0x0, 0x0, 0x0, 0xe2, 0xa8, 0x20, 0x19, 0xc0, + 0x18, 0xdf, 0xe9, 0x10, + + /* U+34 "4" */ + 0x0, 0x0, 0x9, 0x80, 0x0, 0x0, 0x0, 0x5c, + 0x0, 0x0, 0x0, 0x1, 0xe2, 0x0, 0x0, 0x0, + 0xc, 0x50, 0x0, 0x0, 0x0, 0x7a, 0x0, 0x20, + 0x0, 0x3, 0xd0, 0x0, 0xe1, 0x0, 0xd, 0x30, + 0x0, 0xe1, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0xe1, 0x0, 0x0, 0x0, 0x0, 0xe1, 0x0, + + /* U+35 "5" */ + 0x8, 0xff, 0xff, 0xd0, 0xa, 0x50, 0x0, 0x0, + 0xb, 0x30, 0x0, 0x0, 0xc, 0x20, 0x0, 0x0, + 0xe, 0x10, 0x0, 0x0, 0xf, 0xff, 0xea, 0x20, + 0x0, 0x0, 0x17, 0xe0, 0x0, 0x0, 0x0, 0xc4, + 0x0, 0x0, 0x0, 0xb4, 0x79, 0x30, 0x17, 0xe0, + 0x7, 0xdf, 0xeb, 0x20, + + /* U+36 "6" */ + 0x0, 0x2a, 0xef, 0xd3, 0x0, 0x1e, 0x70, 0x3, + 0x20, 0xa, 0x80, 0x0, 0x0, 0x0, 0xf1, 0x0, + 0x0, 0x0, 0x2d, 0x0, 0x0, 0x0, 0x3, 0xc2, + 0xbe, 0xd8, 0x0, 0x3d, 0xc3, 0x1, 0xaa, 0x1, + 0xf3, 0x0, 0x0, 0xf0, 0xc, 0x30, 0x0, 0xf, + 0x0, 0x4c, 0x20, 0x1a, 0xa0, 0x0, 0x4c, 0xee, + 0x90, 0x0, + + /* U+37 "7" */ + 0x8f, 0xff, 0xff, 0xfa, 0x87, 0x0, 0x0, 0xb5, + 0x87, 0x0, 0x2, 0xe0, 0x0, 0x0, 0x8, 0x80, + 0x0, 0x0, 0xe, 0x20, 0x0, 0x0, 0x5b, 0x0, + 0x0, 0x0, 0xb5, 0x0, 0x0, 0x2, 0xe0, 0x0, + 0x0, 0x8, 0x80, 0x0, 0x0, 0xe, 0x20, 0x0, + 0x0, 0x5b, 0x0, 0x0, + + /* U+38 "8" */ + 0x0, 0x7d, 0xed, 0x70, 0x0, 0x8b, 0x10, 0x2c, + 0x70, 0xe, 0x20, 0x0, 0x3d, 0x0, 0xe2, 0x0, + 0x3, 0xd0, 0x8, 0xb1, 0x1, 0xc6, 0x0, 0x1d, + 0xfe, 0xfc, 0x0, 0xc, 0x80, 0x1, 0x9b, 0x4, + 0xc0, 0x0, 0x0, 0xe2, 0x3c, 0x0, 0x0, 0xe, + 0x30, 0xd7, 0x0, 0x19, 0xc0, 0x1, 0x9e, 0xee, + 0x91, 0x0, + + /* U+39 "9" */ + 0x2, 0xbe, 0xe9, 0x10, 0x1e, 0x50, 0x8, 0xc0, + 0x6a, 0x0, 0x0, 0xc4, 0x87, 0x0, 0x0, 0x99, + 0x6a, 0x0, 0x0, 0xdb, 0x1e, 0x60, 0x9, 0xbc, + 0x2, 0xbe, 0xd7, 0x4b, 0x0, 0x0, 0x0, 0x78, + 0x0, 0x0, 0x0, 0xd3, 0x3, 0x0, 0x2b, 0x80, + 0x9, 0xef, 0xd6, 0x0, + + /* U+3A ":" */ + 0x2e, 0x10, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0x2, 0xe1, + + /* U+3B ";" */ + 0x2e, 0x10, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1a, 0x1, 0xe2, 0xc, 0x1, 0x90, + + /* U+3C "<" */ + 0x0, 0x0, 0x0, 0x20, 0x0, 0x0, 0x4b, 0xc0, + 0x0, 0x7d, 0x93, 0x0, 0xf, 0x81, 0x0, 0x0, + 0x7, 0xd9, 0x20, 0x0, 0x0, 0x4, 0xbc, 0x50, + 0x0, 0x0, 0x2, 0x90, + + /* U+3D "=" */ + 0xe, 0xee, 0xee, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xee, 0xee, 0xe0, + + /* U+3E ">" */ + 0x3, 0x0, 0x0, 0x0, 0xc, 0xc5, 0x0, 0x0, + 0x0, 0x29, 0xd7, 0x10, 0x0, 0x0, 0x18, 0xf0, + 0x0, 0x2, 0x9d, 0x70, 0x4, 0xbc, 0x50, 0x0, + 0x9, 0x30, 0x0, 0x0, + + /* U+3F "?" */ + 0x7, 0xdf, 0xe8, 0x8, 0xa2, 0x2, 0xc8, 0x0, + 0x0, 0x3, 0xd0, 0x0, 0x0, 0x4c, 0x0, 0x0, + 0x1d, 0x50, 0x0, 0xc, 0x70, 0x0, 0x6, 0xa0, + 0x0, 0x0, 0x74, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x52, 0x0, 0x0, 0xb, 0x50, 0x0, + + /* U+40 "@" */ + 0x0, 0x0, 0x6b, 0xcc, 0xc9, 0x20, 0x0, 0x0, + 0x1c, 0x71, 0x0, 0x3, 0xb7, 0x0, 0x0, 0xc3, + 0x0, 0x0, 0x0, 0x9, 0x50, 0x7, 0x60, 0x9, + 0xed, 0x93, 0xb0, 0xc0, 0xc, 0x0, 0xa8, 0x0, + 0x4d, 0xb0, 0x66, 0x1a, 0x2, 0xd0, 0x0, 0x8, + 0xb0, 0x29, 0x38, 0x6, 0x80, 0x0, 0x3, 0xb0, + 0xb, 0x38, 0x6, 0x80, 0x0, 0x3, 0xb0, 0xb, + 0x1a, 0x2, 0xc0, 0x0, 0x7, 0xb0, 0x29, 0xc, + 0x0, 0xa8, 0x0, 0x4c, 0xd0, 0x84, 0x7, 0x60, + 0x9, 0xed, 0xa0, 0xae, 0x90, 0x0, 0xc3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x71, 0x0, + 0x4, 0x0, 0x0, 0x0, 0x0, 0x6b, 0xcc, 0xc8, + 0x0, 0x0, + + /* U+41 "A" */ + 0x0, 0x0, 0xbb, 0x0, 0x0, 0x0, 0x0, 0x1d, + 0xd2, 0x0, 0x0, 0x0, 0x8, 0x77, 0x80, 0x0, + 0x0, 0x0, 0xe1, 0x1e, 0x0, 0x0, 0x0, 0x5a, + 0x0, 0xa5, 0x0, 0x0, 0xb, 0x40, 0x4, 0xc0, + 0x0, 0x2, 0xd0, 0x0, 0xd, 0x20, 0x0, 0x8f, + 0xee, 0xee, 0xf9, 0x0, 0xe, 0x10, 0x0, 0x1, + 0xe0, 0x5, 0xa0, 0x0, 0x0, 0xa, 0x60, 0xc4, + 0x0, 0x0, 0x0, 0x4c, 0x0, + + /* U+42 "B" */ + 0x6f, 0xee, 0xee, 0xa2, 0x6, 0xa0, 0x0, 0x7, + 0xd0, 0x6a, 0x0, 0x0, 0xd, 0x36, 0xa0, 0x0, + 0x0, 0xd2, 0x6a, 0x0, 0x0, 0x8c, 0x6, 0xfe, + 0xee, 0xff, 0x50, 0x6a, 0x0, 0x0, 0x3d, 0x46, + 0xa0, 0x0, 0x0, 0x5b, 0x6a, 0x0, 0x0, 0x5, + 0xb6, 0xa0, 0x0, 0x2, 0xd6, 0x6f, 0xee, 0xee, + 0xd6, 0x0, + + /* U+43 "C" */ + 0x0, 0x6, 0xcf, 0xeb, 0x30, 0x0, 0xac, 0x40, + 0x15, 0xe3, 0x7, 0xc0, 0x0, 0x0, 0x10, 0xe, + 0x20, 0x0, 0x0, 0x0, 0x2d, 0x0, 0x0, 0x0, + 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x2d, 0x0, + 0x0, 0x0, 0x0, 0xe, 0x20, 0x0, 0x0, 0x0, + 0x7, 0xc0, 0x0, 0x0, 0x10, 0x0, 0xbc, 0x40, + 0x15, 0xe3, 0x0, 0x6, 0xcf, 0xfb, 0x30, + + /* U+44 "D" */ + 0x6f, 0xff, 0xfe, 0xa2, 0x0, 0x6a, 0x0, 0x1, + 0x7e, 0x40, 0x6a, 0x0, 0x0, 0x3, 0xe1, 0x6a, + 0x0, 0x0, 0x0, 0x97, 0x6a, 0x0, 0x0, 0x0, + 0x4b, 0x6a, 0x0, 0x0, 0x0, 0x3d, 0x6a, 0x0, + 0x0, 0x0, 0x4b, 0x6a, 0x0, 0x0, 0x0, 0x97, + 0x6a, 0x0, 0x0, 0x3, 0xe1, 0x6a, 0x0, 0x1, + 0x7e, 0x40, 0x6f, 0xff, 0xfe, 0xa2, 0x0, + + /* U+45 "E" */ + 0x6f, 0xff, 0xff, 0xf4, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xa0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0xff, 0xf8, + + /* U+46 "F" */ + 0x6f, 0xff, 0xff, 0xf4, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0xff, 0xa0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, + + /* U+47 "G" */ + 0x0, 0x6, 0xcf, 0xfb, 0x40, 0x0, 0xac, 0x40, + 0x5, 0xd4, 0x7, 0xc0, 0x0, 0x0, 0x0, 0xe, + 0x30, 0x0, 0x0, 0x0, 0x2d, 0x0, 0x0, 0x0, + 0x0, 0x3c, 0x0, 0x0, 0x0, 0x43, 0x2d, 0x0, + 0x0, 0x0, 0x87, 0xe, 0x30, 0x0, 0x0, 0x87, + 0x7, 0xc0, 0x0, 0x0, 0x87, 0x0, 0xac, 0x40, + 0x15, 0xd6, 0x0, 0x6, 0xcf, 0xfb, 0x50, + + /* U+48 "H" */ + 0x6a, 0x0, 0x0, 0x3, 0xc6, 0xa0, 0x0, 0x0, + 0x3c, 0x6a, 0x0, 0x0, 0x3, 0xc6, 0xa0, 0x0, + 0x0, 0x3c, 0x6a, 0x0, 0x0, 0x3, 0xc6, 0xff, + 0xff, 0xff, 0xfc, 0x6a, 0x0, 0x0, 0x3, 0xc6, + 0xa0, 0x0, 0x0, 0x3c, 0x6a, 0x0, 0x0, 0x3, + 0xc6, 0xa0, 0x0, 0x0, 0x3c, 0x6a, 0x0, 0x0, + 0x3, 0xc0, + + /* U+49 "I" */ + 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, + 0x6a, 0x6a, 0x6a, + + /* U+4A "J" */ + 0x1, 0xff, 0xff, 0x80, 0x0, 0x0, 0x88, 0x0, + 0x0, 0x8, 0x80, 0x0, 0x0, 0x88, 0x0, 0x0, + 0x8, 0x80, 0x0, 0x0, 0x88, 0x0, 0x0, 0x8, + 0x80, 0x0, 0x0, 0x87, 0x1, 0x0, 0xa, 0x60, + 0xd5, 0x3, 0xe1, 0x3, 0xcf, 0xd5, 0x0, + + /* U+4B "K" */ + 0x6a, 0x0, 0x0, 0x2d, 0x36, 0xa0, 0x0, 0x1d, + 0x40, 0x6a, 0x0, 0xc, 0x70, 0x6, 0xa0, 0xa, + 0x90, 0x0, 0x6a, 0x8, 0xb0, 0x0, 0x6, 0xa6, + 0xfb, 0x0, 0x0, 0x6d, 0xe3, 0xd7, 0x0, 0x6, + 0xf3, 0x2, 0xe3, 0x0, 0x6a, 0x0, 0x5, 0xe1, + 0x6, 0xa0, 0x0, 0x8, 0xb0, 0x6a, 0x0, 0x0, + 0xb, 0x70, + + /* U+4C "L" */ + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0xff, 0xf1, + + /* U+4D "M" */ + 0x6b, 0x0, 0x0, 0x0, 0x5, 0xc6, 0xf3, 0x0, + 0x0, 0x0, 0xdc, 0x6d, 0xc0, 0x0, 0x0, 0x5d, + 0xc6, 0x9c, 0x40, 0x0, 0xd, 0x5c, 0x69, 0x3c, + 0x0, 0x6, 0x93, 0xc6, 0x90, 0xb5, 0x0, 0xd1, + 0x3c, 0x69, 0x3, 0xd0, 0x78, 0x3, 0xc6, 0x90, + 0xa, 0x6d, 0x10, 0x3c, 0x69, 0x0, 0x2f, 0x80, + 0x3, 0xc6, 0x90, 0x0, 0x60, 0x0, 0x3c, 0x69, + 0x0, 0x0, 0x0, 0x3, 0xc0, + + /* U+4E "N" */ + 0x6c, 0x0, 0x0, 0x3, 0xc6, 0xf8, 0x0, 0x0, + 0x3c, 0x6c, 0xe3, 0x0, 0x3, 0xc6, 0xa5, 0xd0, + 0x0, 0x3c, 0x6a, 0xa, 0xa0, 0x3, 0xc6, 0xa0, + 0x1e, 0x50, 0x3c, 0x6a, 0x0, 0x4e, 0x13, 0xc6, + 0xa0, 0x0, 0x8b, 0x3c, 0x6a, 0x0, 0x0, 0xcb, + 0xc6, 0xa0, 0x0, 0x2, 0xfc, 0x6a, 0x0, 0x0, + 0x6, 0xc0, + + /* U+4F "O" */ + 0x0, 0x6, 0xcf, 0xeb, 0x30, 0x0, 0x0, 0xac, + 0x40, 0x15, 0xe6, 0x0, 0x7, 0xc0, 0x0, 0x0, + 0x1e, 0x30, 0xe, 0x20, 0x0, 0x0, 0x7, 0xa0, + 0x2d, 0x0, 0x0, 0x0, 0x2, 0xe0, 0x3c, 0x0, + 0x0, 0x0, 0x0, 0xf0, 0x2d, 0x0, 0x0, 0x0, + 0x2, 0xe0, 0xe, 0x20, 0x0, 0x0, 0x7, 0xa0, + 0x7, 0xc0, 0x0, 0x0, 0x1e, 0x30, 0x0, 0xac, + 0x40, 0x15, 0xe6, 0x0, 0x0, 0x6, 0xcf, 0xeb, + 0x40, 0x0, + + /* U+50 "P" */ + 0x6f, 0xff, 0xfd, 0x60, 0x6, 0xa0, 0x0, 0x3d, + 0x80, 0x6a, 0x0, 0x0, 0x2f, 0x6, 0xa0, 0x0, + 0x0, 0xd3, 0x6a, 0x0, 0x0, 0xd, 0x36, 0xa0, + 0x0, 0x2, 0xf0, 0x6a, 0x0, 0x3, 0xd8, 0x6, + 0xff, 0xff, 0xd6, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6, 0xa0, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, + 0x0, 0x0, + + /* U+51 "Q" */ + 0x0, 0x6, 0xcf, 0xeb, 0x30, 0x0, 0x0, 0xac, + 0x40, 0x16, 0xe6, 0x0, 0x7, 0xc0, 0x0, 0x0, + 0x1e, 0x30, 0xe, 0x20, 0x0, 0x0, 0x7, 0xa0, + 0x2d, 0x0, 0x0, 0x0, 0x2, 0xe0, 0x3c, 0x0, + 0x0, 0x0, 0x0, 0xf0, 0x2d, 0x0, 0x0, 0x0, + 0x2, 0xe0, 0xe, 0x20, 0x0, 0x0, 0x7, 0xa0, + 0x7, 0xc0, 0x0, 0x0, 0x1e, 0x30, 0x0, 0xbc, + 0x40, 0x15, 0xe7, 0x0, 0x0, 0x6, 0xdf, 0xfb, + 0x40, 0x0, 0x0, 0x0, 0x0, 0xb9, 0x10, 0x73, + 0x0, 0x0, 0x0, 0x7, 0xdd, 0x90, + + /* U+52 "R" */ + 0x6f, 0xff, 0xfd, 0x60, 0x6, 0xa0, 0x0, 0x3d, + 0x80, 0x6a, 0x0, 0x0, 0x2f, 0x6, 0xa0, 0x0, + 0x0, 0xd3, 0x6a, 0x0, 0x0, 0xd, 0x36, 0xa0, + 0x0, 0x2, 0xf0, 0x6a, 0x0, 0x3, 0xc8, 0x6, + 0xff, 0xff, 0xf7, 0x0, 0x6a, 0x0, 0x8, 0x90, + 0x6, 0xa0, 0x0, 0xc, 0x50, 0x6a, 0x0, 0x0, + 0x2e, 0x10, + + /* U+53 "S" */ + 0x0, 0x8e, 0xfd, 0x91, 0xa, 0xa1, 0x2, 0x84, + 0xf, 0x0, 0x0, 0x0, 0xf, 0x10, 0x0, 0x0, + 0xa, 0xd5, 0x0, 0x0, 0x0, 0x6c, 0xfb, 0x40, + 0x0, 0x0, 0x17, 0xe6, 0x0, 0x0, 0x0, 0x3d, + 0x0, 0x0, 0x0, 0x2e, 0x2d, 0x50, 0x2, 0xb8, + 0x4, 0xbe, 0xfd, 0x70, + + /* U+54 "T" */ + 0xef, 0xff, 0xff, 0xff, 0x0, 0x8, 0x80, 0x0, + 0x0, 0x8, 0x80, 0x0, 0x0, 0x8, 0x80, 0x0, + 0x0, 0x8, 0x80, 0x0, 0x0, 0x8, 0x80, 0x0, + 0x0, 0x8, 0x80, 0x0, 0x0, 0x8, 0x80, 0x0, + 0x0, 0x8, 0x80, 0x0, 0x0, 0x8, 0x80, 0x0, + 0x0, 0x8, 0x80, 0x0, + + /* U+55 "U" */ + 0x78, 0x0, 0x0, 0x7, 0x97, 0x80, 0x0, 0x0, + 0x79, 0x78, 0x0, 0x0, 0x7, 0x97, 0x80, 0x0, + 0x0, 0x79, 0x78, 0x0, 0x0, 0x7, 0x97, 0x80, + 0x0, 0x0, 0x79, 0x79, 0x0, 0x0, 0x7, 0x86, + 0xb0, 0x0, 0x0, 0x97, 0x2f, 0x10, 0x0, 0xe, + 0x30, 0x9c, 0x30, 0x2b, 0xa0, 0x0, 0x7d, 0xfe, + 0x80, 0x0, + + /* U+56 "V" */ + 0xc5, 0x0, 0x0, 0x0, 0x88, 0x5b, 0x0, 0x0, + 0x0, 0xe2, 0xe, 0x20, 0x0, 0x4, 0xc0, 0x9, + 0x80, 0x0, 0xb, 0x50, 0x2, 0xe0, 0x0, 0x1e, + 0x0, 0x0, 0xc5, 0x0, 0x79, 0x0, 0x0, 0x6b, + 0x0, 0xe2, 0x0, 0x0, 0xf, 0x14, 0xc0, 0x0, + 0x0, 0x9, 0x7a, 0x60, 0x0, 0x0, 0x3, 0xee, + 0x0, 0x0, 0x0, 0x0, 0xd9, 0x0, 0x0, + + /* U+57 "W" */ + 0x5b, 0x0, 0x0, 0xd, 0x70, 0x0, 0x1, 0xe0, + 0xf, 0x0, 0x0, 0x2f, 0xc0, 0x0, 0x6, 0x90, + 0xb, 0x50, 0x0, 0x68, 0xe1, 0x0, 0xb, 0x40, + 0x6, 0x90, 0x0, 0xb3, 0xa5, 0x0, 0xe, 0x0, + 0x2, 0xe0, 0x1, 0xe0, 0x5a, 0x0, 0x4b, 0x0, + 0x0, 0xd3, 0x5, 0x90, 0xe, 0x0, 0x96, 0x0, + 0x0, 0x88, 0xa, 0x40, 0xb, 0x40, 0xe1, 0x0, + 0x0, 0x3d, 0xe, 0x0, 0x6, 0x93, 0xc0, 0x0, + 0x0, 0xe, 0x6a, 0x0, 0x1, 0xe8, 0x70, 0x0, + 0x0, 0xa, 0xe5, 0x0, 0x0, 0xce, 0x30, 0x0, + 0x0, 0x5, 0xf1, 0x0, 0x0, 0x7e, 0x0, 0x0, + + /* U+58 "X" */ + 0x3e, 0x10, 0x0, 0xc, 0x50, 0x8a, 0x0, 0x6, + 0xb0, 0x0, 0xd4, 0x1, 0xe1, 0x0, 0x3, 0xe1, + 0xb6, 0x0, 0x0, 0x9, 0xdb, 0x0, 0x0, 0x0, + 0x3f, 0x60, 0x0, 0x0, 0xc, 0x8e, 0x10, 0x0, + 0x7, 0xb0, 0x8a, 0x0, 0x2, 0xe1, 0x0, 0xd4, + 0x0, 0xc6, 0x0, 0x3, 0xe1, 0x6b, 0x0, 0x0, + 0x9, 0x90, + + /* U+59 "Y" */ + 0xb6, 0x0, 0x0, 0x6, 0x92, 0xe0, 0x0, 0x0, + 0xe1, 0xa, 0x70, 0x0, 0x88, 0x0, 0x1e, 0x10, + 0x1e, 0x0, 0x0, 0x89, 0x9, 0x60, 0x0, 0x1, + 0xe4, 0xd0, 0x0, 0x0, 0x7, 0xf5, 0x0, 0x0, + 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1, 0xf0, 0x0, + 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1, 0xf0, + 0x0, 0x0, + + /* U+5A "Z" */ + 0x4f, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x4, + 0xe1, 0x0, 0x0, 0x1, 0xe4, 0x0, 0x0, 0x0, + 0xa9, 0x0, 0x0, 0x0, 0x5d, 0x0, 0x0, 0x0, + 0x1e, 0x30, 0x0, 0x0, 0xb, 0x70, 0x0, 0x0, + 0x7, 0xc0, 0x0, 0x0, 0x2, 0xe2, 0x0, 0x0, + 0x0, 0xd6, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, + 0xff, 0xa0, + + /* U+5B "[" */ + 0x6f, 0xe2, 0x69, 0x0, 0x69, 0x0, 0x69, 0x0, + 0x69, 0x0, 0x69, 0x0, 0x69, 0x0, 0x69, 0x0, + 0x69, 0x0, 0x69, 0x0, 0x69, 0x0, 0x69, 0x0, + 0x69, 0x0, 0x6f, 0xe2, + + /* U+5C "\\" */ + 0x59, 0x0, 0x0, 0x0, 0xd0, 0x0, 0x0, 0xa, + 0x30, 0x0, 0x0, 0x59, 0x0, 0x0, 0x0, 0xd0, + 0x0, 0x0, 0xa, 0x30, 0x0, 0x0, 0x59, 0x0, + 0x0, 0x0, 0xd0, 0x0, 0x0, 0xb, 0x30, 0x0, + 0x0, 0x58, 0x0, 0x0, 0x0, 0xd0, 0x0, 0x0, + 0xb, 0x30, 0x0, 0x0, 0x58, 0x0, 0x0, 0x1, + 0xd0, + + /* U+5D "]" */ + 0xae, 0xd0, 0x2d, 0x2, 0xd0, 0x2d, 0x2, 0xd0, + 0x2d, 0x2, 0xd0, 0x2d, 0x2, 0xd0, 0x2d, 0x2, + 0xd0, 0x2d, 0x2, 0xda, 0xed, + + /* U+5E "^" */ + 0x0, 0x34, 0x0, 0x0, 0xbc, 0x0, 0x2, 0xa9, + 0x30, 0x8, 0x43, 0x90, 0xc, 0x0, 0xc0, 0x48, + 0x0, 0x75, 0xa2, 0x0, 0x1b, + + /* U+5F "_" */ + 0xbb, 0xbb, 0xbb, 0xb0, + + /* U+60 "`" */ + 0x9, 0xa0, 0x0, 0x7, 0x90, + + /* U+61 "a" */ + 0x4, 0xcf, 0xea, 0x0, 0x83, 0x0, 0x99, 0x0, + 0x0, 0x1, 0xd0, 0x3b, 0xcc, 0xce, 0xe, 0x20, + 0x0, 0xf3, 0xc0, 0x0, 0x2f, 0xe, 0x20, 0xa, + 0xf0, 0x4c, 0xcc, 0x4f, + + /* U+62 "b" */ + 0x96, 0x0, 0x0, 0x0, 0x96, 0x0, 0x0, 0x0, + 0x96, 0x0, 0x0, 0x0, 0x96, 0x8e, 0xeb, 0x20, + 0x9e, 0x80, 0x5, 0xe1, 0x9b, 0x0, 0x0, 0x79, + 0x96, 0x0, 0x0, 0x3c, 0x96, 0x0, 0x0, 0x3c, + 0x9b, 0x0, 0x0, 0x79, 0x9d, 0x80, 0x5, 0xe1, + 0x95, 0x8e, 0xfb, 0x20, + + /* U+63 "c" */ + 0x0, 0x7d, 0xfd, 0x50, 0x8, 0xb1, 0x3, 0xd1, + 0x1e, 0x0, 0x0, 0x0, 0x4b, 0x0, 0x0, 0x0, + 0x4b, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, + 0x8, 0xb2, 0x3, 0xd1, 0x0, 0x7d, 0xfd, 0x50, + + /* U+64 "d" */ + 0x0, 0x0, 0x0, 0xe, 0x10, 0x0, 0x0, 0x0, + 0xe1, 0x0, 0x0, 0x0, 0xe, 0x10, 0x7, 0xee, + 0xc3, 0xe1, 0x9, 0xb1, 0x3, 0xcf, 0x11, 0xe0, + 0x0, 0x3, 0xf1, 0x4b, 0x0, 0x0, 0xe, 0x14, + 0xb0, 0x0, 0x0, 0xe1, 0x1e, 0x0, 0x0, 0x3f, + 0x10, 0x9a, 0x10, 0x2c, 0xe1, 0x0, 0x7d, 0xec, + 0x3d, 0x10, + + /* U+65 "e" */ + 0x0, 0x8e, 0xec, 0x30, 0x9, 0x90, 0x3, 0xd2, + 0x1c, 0x0, 0x0, 0x5a, 0x4e, 0xcc, 0xcc, 0xcb, + 0x4c, 0x0, 0x0, 0x0, 0x1f, 0x20, 0x0, 0x0, + 0x8, 0xd3, 0x2, 0xc2, 0x0, 0x7d, 0xfd, 0x60, + + /* U+66 "f" */ + 0x0, 0xae, 0xd1, 0x5, 0xb0, 0x10, 0x7, 0x80, + 0x0, 0xbf, 0xfe, 0xb0, 0x7, 0x80, 0x0, 0x7, + 0x80, 0x0, 0x7, 0x80, 0x0, 0x7, 0x80, 0x0, + 0x7, 0x80, 0x0, 0x7, 0x80, 0x0, 0x7, 0x80, + 0x0, + + /* U+67 "g" */ + 0x0, 0x7d, 0xec, 0x3c, 0x30, 0x9b, 0x10, 0x2c, + 0xe3, 0x1e, 0x0, 0x0, 0x2f, 0x34, 0xb0, 0x0, + 0x0, 0xd3, 0x4b, 0x0, 0x0, 0xd, 0x31, 0xe0, + 0x0, 0x2, 0xf3, 0x9, 0xb2, 0x2, 0xce, 0x30, + 0x7, 0xef, 0xc3, 0xd2, 0x0, 0x0, 0x0, 0xe, + 0x0, 0x96, 0x10, 0x1a, 0xa0, 0x2, 0xae, 0xfd, + 0x80, 0x0, + + /* U+68 "h" */ + 0x96, 0x0, 0x0, 0x0, 0x96, 0x0, 0x0, 0x0, + 0x96, 0x0, 0x0, 0x0, 0x96, 0x9e, 0xea, 0x10, + 0x9e, 0x60, 0x19, 0xb0, 0x9a, 0x0, 0x0, 0xf0, + 0x96, 0x0, 0x0, 0xd2, 0x96, 0x0, 0x0, 0xd2, + 0x96, 0x0, 0x0, 0xd2, 0x96, 0x0, 0x0, 0xd2, + 0x96, 0x0, 0x0, 0xd2, + + /* U+69 "i" */ + 0xa7, 0x42, 0x0, 0x96, 0x96, 0x96, 0x96, 0x96, + 0x96, 0x96, 0x96, + + /* U+6A "j" */ + 0x0, 0x9, 0x80, 0x0, 0x43, 0x0, 0x0, 0x0, + 0x0, 0x87, 0x0, 0x8, 0x70, 0x0, 0x87, 0x0, + 0x8, 0x70, 0x0, 0x87, 0x0, 0x8, 0x70, 0x0, + 0x87, 0x0, 0x8, 0x70, 0x0, 0x87, 0x1, 0xc, + 0x41, 0xde, 0x90, + + /* U+6B "k" */ + 0x96, 0x0, 0x0, 0x0, 0x96, 0x0, 0x0, 0x0, + 0x96, 0x0, 0x0, 0x0, 0x96, 0x0, 0xb, 0x80, + 0x96, 0x0, 0xb9, 0x0, 0x96, 0xb, 0x90, 0x0, + 0x96, 0xbf, 0x10, 0x0, 0x9e, 0x98, 0xb0, 0x0, + 0x9a, 0x0, 0xc7, 0x0, 0x96, 0x0, 0x1e, 0x30, + 0x96, 0x0, 0x4, 0xd0, + + /* U+6C "l" */ + 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, + 0x96, 0x96, 0x96, + + /* U+6D "m" */ + 0x96, 0x9e, 0xe9, 0x4, 0xde, 0xd4, 0x9, 0xe5, + 0x0, 0xbc, 0xc2, 0x3, 0xe1, 0x99, 0x0, 0x2, + 0xf3, 0x0, 0x9, 0x69, 0x60, 0x0, 0xf, 0x0, + 0x0, 0x78, 0x96, 0x0, 0x0, 0xf0, 0x0, 0x7, + 0x89, 0x60, 0x0, 0xf, 0x0, 0x0, 0x78, 0x96, + 0x0, 0x0, 0xf0, 0x0, 0x7, 0x89, 0x60, 0x0, + 0xf, 0x0, 0x0, 0x78, + + /* U+6E "n" */ + 0x96, 0x9e, 0xea, 0x10, 0x9e, 0x50, 0x9, 0xb0, + 0x9a, 0x0, 0x0, 0xf0, 0x96, 0x0, 0x0, 0xd2, + 0x96, 0x0, 0x0, 0xd2, 0x96, 0x0, 0x0, 0xd2, + 0x96, 0x0, 0x0, 0xd2, 0x96, 0x0, 0x0, 0xd2, + + /* U+6F "o" */ + 0x0, 0x7d, 0xec, 0x50, 0x0, 0x8b, 0x10, 0x3d, + 0x50, 0x1e, 0x0, 0x0, 0x3d, 0x4, 0xb0, 0x0, + 0x0, 0xe1, 0x4b, 0x0, 0x0, 0xe, 0x11, 0xe0, + 0x0, 0x3, 0xd0, 0x8, 0xb2, 0x3, 0xd5, 0x0, + 0x7, 0xdf, 0xc5, 0x0, + + /* U+70 "p" */ + 0x95, 0x8d, 0xeb, 0x20, 0x9e, 0x70, 0x5, 0xe1, + 0x9b, 0x0, 0x0, 0x79, 0x96, 0x0, 0x0, 0x3c, + 0x96, 0x0, 0x0, 0x3c, 0x9b, 0x0, 0x0, 0x89, + 0x9e, 0x80, 0x6, 0xe2, 0x96, 0x8e, 0xfb, 0x20, + 0x96, 0x0, 0x0, 0x0, 0x96, 0x0, 0x0, 0x0, + 0x96, 0x0, 0x0, 0x0, + + /* U+71 "q" */ + 0x0, 0x7e, 0xec, 0x3d, 0x10, 0x9b, 0x10, 0x3c, + 0xe1, 0x1e, 0x0, 0x0, 0x3f, 0x14, 0xb0, 0x0, + 0x0, 0xe1, 0x4b, 0x0, 0x0, 0xe, 0x11, 0xe0, + 0x0, 0x3, 0xf1, 0x9, 0xb2, 0x3, 0xcf, 0x10, + 0x7, 0xef, 0xc3, 0xe1, 0x0, 0x0, 0x0, 0xe, + 0x10, 0x0, 0x0, 0x0, 0xe1, 0x0, 0x0, 0x0, + 0xe, 0x10, + + /* U+72 "r" */ + 0x96, 0x9e, 0x19, 0xe7, 0x10, 0x9a, 0x0, 0x9, + 0x60, 0x0, 0x96, 0x0, 0x9, 0x60, 0x0, 0x96, + 0x0, 0x9, 0x60, 0x0, + + /* U+73 "s" */ + 0x6, 0xde, 0xd9, 0x3, 0xd2, 0x1, 0x60, 0x5b, + 0x0, 0x0, 0x0, 0xcb, 0x73, 0x0, 0x0, 0x48, + 0xcc, 0x0, 0x0, 0x0, 0xb5, 0x56, 0x10, 0x1d, + 0x32, 0xae, 0xfd, 0x60, + + /* U+74 "t" */ + 0x7, 0x80, 0x0, 0x7, 0x80, 0x0, 0xbf, 0xfe, + 0xb0, 0x7, 0x80, 0x0, 0x7, 0x80, 0x0, 0x7, + 0x80, 0x0, 0x7, 0x80, 0x0, 0x7, 0x80, 0x0, + 0x5, 0xc0, 0x10, 0x0, 0xae, 0xd1, + + /* U+75 "u" */ + 0xb5, 0x0, 0x0, 0xf0, 0xb5, 0x0, 0x0, 0xf0, + 0xb5, 0x0, 0x0, 0xf0, 0xb5, 0x0, 0x0, 0xf0, + 0xa5, 0x0, 0x0, 0xf0, 0x97, 0x0, 0x3, 0xf0, + 0x3e, 0x20, 0x1b, 0xf0, 0x5, 0xde, 0xc3, 0xf0, + + /* U+76 "v" */ + 0xc3, 0x0, 0x0, 0x95, 0x5a, 0x0, 0x0, 0xe0, + 0xe, 0x10, 0x6, 0x80, 0x8, 0x70, 0xd, 0x20, + 0x2, 0xd0, 0x3b, 0x0, 0x0, 0xb4, 0xa5, 0x0, + 0x0, 0x5c, 0xd0, 0x0, 0x0, 0xe, 0x80, 0x0, + + /* U+77 "w" */ + 0xb3, 0x0, 0x7, 0xc0, 0x0, 0xd, 0x5, 0x90, + 0x0, 0xce, 0x10, 0x3, 0xa0, 0xd, 0x0, 0x2c, + 0x77, 0x0, 0x95, 0x0, 0xa4, 0x7, 0x62, 0xc0, + 0xd, 0x0, 0x5, 0x90, 0xc1, 0xc, 0x24, 0x90, + 0x0, 0xd, 0x3b, 0x0, 0x68, 0x94, 0x0, 0x0, + 0xac, 0x50, 0x1, 0xdd, 0x0, 0x0, 0x4, 0xf0, + 0x0, 0xb, 0x90, 0x0, + + /* U+78 "x" */ + 0x3d, 0x0, 0x6, 0xa0, 0x8, 0x90, 0x2d, 0x10, + 0x0, 0xc4, 0xc4, 0x0, 0x0, 0x2f, 0x80, 0x0, + 0x0, 0x4e, 0xb0, 0x0, 0x1, 0xd2, 0xa6, 0x0, + 0xa, 0x70, 0x1d, 0x20, 0x6b, 0x0, 0x4, 0xc0, + + /* U+79 "y" */ + 0xc, 0x40, 0x0, 0x9, 0x50, 0x5a, 0x0, 0x0, + 0xe0, 0x0, 0xe1, 0x0, 0x68, 0x0, 0x8, 0x70, + 0xd, 0x20, 0x0, 0x2d, 0x3, 0xb0, 0x0, 0x0, + 0xb4, 0xa4, 0x0, 0x0, 0x4, 0xcd, 0x0, 0x0, + 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0xe1, 0x0, + 0x0, 0x30, 0x79, 0x0, 0x0, 0x1c, 0xeb, 0x0, + 0x0, 0x0, + + /* U+7A "z" */ + 0x4e, 0xee, 0xef, 0x70, 0x0, 0x3, 0xd0, 0x0, + 0x0, 0xd3, 0x0, 0x0, 0xa7, 0x0, 0x0, 0x6b, + 0x0, 0x0, 0x2e, 0x10, 0x0, 0xc, 0x40, 0x0, + 0x5, 0xfe, 0xee, 0xe8, + + /* U+7B "{" */ + 0x0, 0x7e, 0x50, 0xf, 0x10, 0x0, 0xf0, 0x0, + 0xf, 0x0, 0x0, 0xf0, 0x0, 0x2e, 0x0, 0x2f, + 0x90, 0x0, 0x2e, 0x0, 0x0, 0xf0, 0x0, 0xf, + 0x0, 0x0, 0xf0, 0x0, 0xf, 0x0, 0x0, 0xf1, + 0x0, 0x6, 0xe5, + + /* U+7C "|" */ + 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, + 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, + + /* U+7D "}" */ + 0xad, 0x30, 0x6, 0xa0, 0x4, 0xb0, 0x4, 0xb0, + 0x4, 0xb0, 0x3, 0xc0, 0x0, 0xec, 0x3, 0xd0, + 0x4, 0xb0, 0x4, 0xb0, 0x4, 0xb0, 0x4, 0xb0, + 0x6, 0xa0, 0xad, 0x30, + + /* U+7E "~" */ + 0x7, 0xdb, 0x30, 0x91, 0x9, 0x3, 0xac, 0x70, + + /* U+A0 " " */ + + /* U+A1 "¡" */ + 0xb5, 0x52, 0x0, 0x93, 0x93, 0xa4, 0xa4, 0xb5, + 0xb5, 0xc6, 0x0, + + /* U+A2 "¢" */ + 0x0, 0x0, 0xb0, 0x0, 0x0, 0x0, 0xb0, 0x0, + 0x0, 0x7e, 0xfd, 0x50, 0x9, 0xb1, 0xb3, 0xd1, + 0x1e, 0x10, 0xb0, 0x0, 0x4b, 0x0, 0xb0, 0x0, + 0x4b, 0x0, 0xb0, 0x0, 0x1e, 0x10, 0xb0, 0x0, + 0x9, 0xb2, 0xb3, 0xd1, 0x0, 0x7e, 0xfd, 0x50, + 0x0, 0x0, 0xb0, 0x0, 0x0, 0x0, 0xb0, 0x0, + + /* U+A3 "£" */ + 0x0, 0x5, 0xcf, 0xeb, 0x30, 0x4, 0xe4, 0x1, + 0x55, 0x0, 0xc4, 0x0, 0x0, 0x0, 0xf, 0x10, + 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x6, 0xcf, + 0xcc, 0xca, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, + 0xf, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, + 0x0, 0xf, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, + 0xff, 0x70, + + /* U+A4 "¤" */ + 0x24, 0x0, 0x0, 0x0, 0x51, 0x2d, 0x49, 0xdd, + 0x86, 0xc0, 0x4, 0xf5, 0x0, 0x7f, 0x10, 0x9, + 0x50, 0x0, 0x8, 0x60, 0xc, 0x0, 0x0, 0x2, + 0xa0, 0xc, 0x0, 0x0, 0x2, 0xa0, 0x9, 0x50, + 0x0, 0x8, 0x60, 0x4, 0xe5, 0x0, 0x7f, 0x10, + 0x1d, 0x5a, 0xdd, 0x87, 0xc0, 0x34, 0x0, 0x0, + 0x0, 0x61, + + /* U+A5 "¥" */ + 0xa6, 0x0, 0x0, 0x0, 0xa6, 0x1e, 0x20, 0x0, + 0x5, 0xb0, 0x5, 0xb0, 0x0, 0x1d, 0x20, 0x0, + 0xb6, 0x0, 0x97, 0x0, 0x0, 0x2e, 0x14, 0xc0, + 0x0, 0x0, 0x6, 0xbd, 0x20, 0x0, 0x7, 0xaa, + 0xfd, 0xaa, 0x40, 0x0, 0x0, 0xa6, 0x0, 0x0, + 0x7, 0xaa, 0xec, 0xaa, 0x40, 0x0, 0x0, 0xa6, + 0x0, 0x0, 0x0, 0x0, 0xa6, 0x0, 0x0, + + /* U+A6 "¦" */ + 0x68, 0x68, 0x68, 0x68, 0x68, 0x12, 0x0, 0x0, + 0x12, 0x68, 0x68, 0x68, 0x68, 0x68, + + /* U+A7 "§" */ + 0x3, 0xbd, 0xdb, 0x20, 0xd2, 0x0, 0x41, 0x1d, + 0x0, 0x0, 0x0, 0xaa, 0x40, 0x0, 0x1c, 0x79, + 0xd7, 0x6, 0x70, 0x0, 0xc3, 0x5a, 0x0, 0x9, + 0x40, 0x7c, 0x87, 0xb0, 0x0, 0x3, 0xa9, 0x0, + 0x0, 0x0, 0xe0, 0x56, 0x10, 0x4c, 0x1, 0x9d, + 0xdb, 0x20, + + /* U+A8 "¨" */ + 0x0, 0x0, 0x8, 0x71, 0xe0, 0x10, 0x2, 0x0, + + /* U+A9 "©" */ + 0x0, 0x3, 0x89, 0x96, 0x0, 0x0, 0x7, 0x60, + 0x0, 0x39, 0x10, 0x5, 0x40, 0x8c, 0xc3, 0x9, + 0x0, 0x80, 0x97, 0x1, 0x80, 0x53, 0x25, 0xc, + 0x0, 0x0, 0x0, 0x73, 0x41, 0xb0, 0x0, 0x0, + 0x8, 0x25, 0xc, 0x0, 0x0, 0x0, 0x70, 0x80, + 0x97, 0x1, 0x80, 0x53, 0x6, 0x40, 0x8c, 0xc3, + 0x19, 0x0, 0x7, 0x60, 0x0, 0x39, 0x10, 0x0, + 0x3, 0x89, 0x95, 0x0, 0x0, + + /* U+AA "ª" */ + 0x19, 0x9b, 0x20, 0x0, 0x39, 0x18, 0x89, 0xa5, + 0x50, 0x4a, 0x8, 0x76, 0x70, + + /* U+AB "«" */ + 0x0, 0x64, 0x19, 0x0, 0x2c, 0xa, 0x40, 0xc, + 0x25, 0x90, 0x1, 0xd0, 0x86, 0x0, 0x5, 0x90, + 0xc2, 0x0, 0x9, 0x42, 0xb0, + + /* U+AC "¬" */ + 0xe, 0xee, 0xee, 0xf0, 0x0, 0x0, 0x0, 0xd1, + 0x0, 0x0, 0x0, 0xd1, 0x0, 0x0, 0x0, 0x50, + + /* U+AD "­" */ + 0x2f, 0xff, 0x70, + + /* U+AE "®" */ + 0x0, 0x3, 0x89, 0x96, 0x0, 0x0, 0x7, 0x60, + 0x0, 0x39, 0x10, 0x5, 0x43, 0xba, 0xa3, 0x9, + 0x0, 0x80, 0x47, 0x0, 0xb0, 0x53, 0x25, 0x4, + 0x70, 0x9, 0x10, 0x73, 0x40, 0x47, 0x0, 0xc0, + 0x8, 0x25, 0x4, 0xda, 0xd4, 0x0, 0x70, 0x80, + 0x47, 0x4, 0x70, 0x53, 0x6, 0x42, 0x40, 0x7, + 0x19, 0x0, 0x7, 0x60, 0x0, 0x39, 0x10, 0x0, + 0x3, 0x89, 0x95, 0x0, 0x0, + + /* U+AF "¯" */ + 0xab, 0xbb, 0x40, + + /* U+B0 "°" */ + 0x3, 0xaa, 0x20, 0x19, 0x0, 0xa0, 0x45, 0x0, + 0x72, 0x19, 0x0, 0xa0, 0x3, 0xaa, 0x20, + + /* U+B1 "±" */ + 0x0, 0x6, 0x70, 0x0, 0x0, 0x6, 0x70, 0x0, + 0x0, 0x6, 0x70, 0x0, 0xe, 0xef, 0xfe, 0xe0, + 0x0, 0x6, 0x70, 0x0, 0x0, 0x6, 0x70, 0x0, + 0x0, 0x2, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0xee, 0xee, 0xe0, + + /* U+B2 "²" */ + 0x2a, 0xaa, 0x70, 0x0, 0x0, 0xc0, 0x0, 0x8, + 0x40, 0x2, 0x92, 0x0, 0x3e, 0xaa, 0xa2, + + /* U+B3 "³" */ + 0x4a, 0xac, 0xa0, 0x0, 0x7b, 0x50, 0x0, 0x0, + 0xa2, 0x20, 0x0, 0xa2, 0x3b, 0xaa, 0x70, + + /* U+B4 "´" */ + 0x4, 0xd2, 0x4b, 0x10, + + /* U+B5 "µ" */ + 0x96, 0x0, 0x0, 0xe1, 0x96, 0x0, 0x0, 0xe1, + 0x96, 0x0, 0x0, 0xe1, 0x96, 0x0, 0x0, 0xe1, + 0x96, 0x0, 0x0, 0xe1, 0x98, 0x0, 0x2, 0xf1, + 0x9e, 0x30, 0x1b, 0xf1, 0x98, 0xce, 0xd5, 0xd1, + 0x96, 0x0, 0x0, 0x0, 0x96, 0x0, 0x0, 0x0, + 0x96, 0x0, 0x0, 0x0, + + /* U+B6 "¶" */ + 0x7, 0xef, 0xdd, 0xe4, 0x6f, 0xff, 0x0, 0x94, + 0xaf, 0xff, 0x0, 0x94, 0x8f, 0xff, 0x0, 0x94, + 0x1c, 0xff, 0x0, 0x94, 0x0, 0x3e, 0x0, 0x94, + 0x0, 0xd, 0x0, 0x94, 0x0, 0xd, 0x0, 0x94, + 0x0, 0xd, 0x0, 0x94, 0x0, 0xd, 0x0, 0x94, + 0x0, 0xd, 0x0, 0x94, 0x0, 0xd, 0x0, 0x94, + 0x0, 0xb, 0x0, 0x83, + + /* U+B7 "·" */ + 0x72, 0xc5, + + /* U+B8 "¸" */ + 0x0, 0x0, 0x4, 0x60, 0x1, 0xa4, 0x0, 0x56, + 0x1a, 0xa0, + + /* U+B9 "¹" */ + 0x7a, 0xa0, 0x0, 0x2a, 0x0, 0x2, 0xa0, 0x0, + 0x2a, 0x0, 0x8a, 0xda, 0x10, + + /* U+BA "º" */ + 0x7, 0xaa, 0x50, 0x57, 0x0, 0xa2, 0x83, 0x0, + 0x74, 0x49, 0x0, 0xb1, 0x5, 0xaa, 0x30, + + /* U+BB "»" */ + 0x28, 0x8, 0x20, 0x9, 0x52, 0xc0, 0x0, 0xc1, + 0x68, 0x0, 0xb3, 0x3b, 0x6, 0x80, 0xc1, 0x2c, + 0x9, 0x40, + + /* U+BC "¼" */ + 0x7a, 0x80, 0x0, 0x0, 0x18, 0x0, 0x0, 0x2a, + 0x0, 0x0, 0xb, 0x20, 0x0, 0x2, 0xa0, 0x0, + 0x6, 0x60, 0x0, 0x0, 0x2a, 0x0, 0x1, 0xb0, + 0x0, 0x0, 0x2, 0xa0, 0x0, 0xa2, 0x0, 0xa2, + 0x9, 0xbc, 0xb1, 0x67, 0x0, 0x57, 0x0, 0x0, + 0x0, 0x1b, 0x0, 0x1b, 0x4, 0x0, 0x0, 0xa, + 0x20, 0xa, 0x20, 0xa0, 0x0, 0x5, 0x70, 0x2, + 0xca, 0xae, 0xa0, 0x1, 0xb0, 0x0, 0x0, 0x0, + 0xb0, 0x0, 0x21, 0x0, 0x0, 0x0, 0x3, 0x0, + + /* U+BD "½" */ + 0x7a, 0x80, 0x0, 0x0, 0x19, 0x0, 0x0, 0x2a, + 0x0, 0x0, 0xa, 0x20, 0x0, 0x2, 0xa0, 0x0, + 0x5, 0x80, 0x0, 0x0, 0x2a, 0x0, 0x0, 0xb0, + 0x0, 0x0, 0x2, 0xa0, 0x0, 0x93, 0x5b, 0xb7, + 0x0, 0x2a, 0x0, 0x39, 0xb, 0x0, 0x94, 0x9b, + 0xcb, 0x2b, 0x10, 0x0, 0x8, 0x30, 0x0, 0x7, + 0x50, 0x0, 0x3, 0xb0, 0x0, 0x2, 0xb0, 0x0, + 0x3, 0xb0, 0x0, 0x0, 0xb2, 0x0, 0x3, 0xb0, + 0x0, 0x0, 0x46, 0x0, 0x0, 0xbb, 0xaa, 0x70, + + /* U+BE "¾" */ + 0x4a, 0xaa, 0xb0, 0x0, 0x1, 0x80, 0x0, 0x0, + 0x19, 0x20, 0x0, 0xb, 0x20, 0x0, 0x0, 0x8b, + 0x60, 0x0, 0x66, 0x0, 0x0, 0x0, 0x0, 0xa2, + 0x1, 0xb0, 0x1, 0x10, 0x32, 0x0, 0xb1, 0xa, + 0x20, 0xb, 0x10, 0x29, 0xba, 0x50, 0x67, 0x0, + 0x76, 0x0, 0x0, 0x0, 0x1, 0xb0, 0x2, 0xb0, + 0x40, 0x0, 0x0, 0xa, 0x20, 0xb, 0x20, 0xa0, + 0x0, 0x0, 0x57, 0x0, 0x2c, 0xaa, 0xea, 0x0, + 0x1, 0xb0, 0x0, 0x0, 0x0, 0xb0, 0x0, 0x2, + 0x10, 0x0, 0x0, 0x0, 0x30, + + /* U+BF "¿" */ + 0x0, 0x6a, 0x0, 0x0, 0x3, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0x70, 0x0, 0x1, 0xd3, + 0x0, 0x1, 0xd5, 0x0, 0x0, 0xb6, 0x0, 0x0, + 0xe, 0x20, 0x0, 0x0, 0xba, 0x10, 0x2a, 0x71, + 0x9e, 0xed, 0x70, + + /* U+C0 "À" */ + 0x0, 0x7, 0x20, 0x0, 0x0, 0x0, 0x0, 0x3c, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x25, 0x0, 0x0, + 0x0, 0x0, 0xb, 0xb0, 0x0, 0x0, 0x0, 0x1, + 0xdd, 0x20, 0x0, 0x0, 0x0, 0x87, 0x78, 0x0, + 0x0, 0x0, 0xe, 0x11, 0xe0, 0x0, 0x0, 0x5, + 0xa0, 0xa, 0x50, 0x0, 0x0, 0xb4, 0x0, 0x4c, + 0x0, 0x0, 0x2d, 0x0, 0x0, 0xd2, 0x0, 0x8, + 0xfe, 0xee, 0xef, 0x90, 0x0, 0xe1, 0x0, 0x0, + 0x1e, 0x0, 0x5a, 0x0, 0x0, 0x0, 0xa6, 0xc, + 0x40, 0x0, 0x0, 0x4, 0xc0, + + /* U+C1 "Á" */ + 0x0, 0x0, 0x1, 0x70, 0x0, 0x0, 0x0, 0x1, + 0xc4, 0x0, 0x0, 0x0, 0x0, 0x53, 0x0, 0x0, + 0x0, 0x0, 0xb, 0xb0, 0x0, 0x0, 0x0, 0x1, + 0xdd, 0x20, 0x0, 0x0, 0x0, 0x87, 0x78, 0x0, + 0x0, 0x0, 0xe, 0x11, 0xe0, 0x0, 0x0, 0x5, + 0xa0, 0xa, 0x50, 0x0, 0x0, 0xb4, 0x0, 0x4c, + 0x0, 0x0, 0x2d, 0x0, 0x0, 0xd2, 0x0, 0x8, + 0xfe, 0xee, 0xef, 0x90, 0x0, 0xe1, 0x0, 0x0, + 0x1e, 0x0, 0x5a, 0x0, 0x0, 0x0, 0xa6, 0xc, + 0x40, 0x0, 0x0, 0x4, 0xc0, + + /* U+C2 "Â" */ + 0x0, 0x0, 0x56, 0x0, 0x0, 0x0, 0x0, 0x6a, + 0x96, 0x0, 0x0, 0x0, 0x6, 0x0, 0x61, 0x0, + 0x0, 0x0, 0xb, 0xb0, 0x0, 0x0, 0x0, 0x1, + 0xdd, 0x20, 0x0, 0x0, 0x0, 0x87, 0x78, 0x0, + 0x0, 0x0, 0xe, 0x11, 0xe0, 0x0, 0x0, 0x5, + 0xa0, 0xa, 0x50, 0x0, 0x0, 0xb4, 0x0, 0x4c, + 0x0, 0x0, 0x2d, 0x0, 0x0, 0xd2, 0x0, 0x8, + 0xfe, 0xee, 0xef, 0x90, 0x0, 0xe1, 0x0, 0x0, + 0x1e, 0x0, 0x5a, 0x0, 0x0, 0x0, 0xa6, 0xc, + 0x40, 0x0, 0x0, 0x4, 0xc0, + + /* U+C3 "Ã" */ + 0x0, 0x9, 0xa1, 0x62, 0x0, 0x0, 0x1, 0x71, + 0x98, 0x0, 0x0, 0x0, 0x0, 0xbb, 0x0, 0x0, + 0x0, 0x0, 0x1d, 0xd2, 0x0, 0x0, 0x0, 0x8, + 0x77, 0x80, 0x0, 0x0, 0x0, 0xe1, 0x1e, 0x0, + 0x0, 0x0, 0x5a, 0x0, 0xa5, 0x0, 0x0, 0xb, + 0x40, 0x4, 0xc0, 0x0, 0x2, 0xd0, 0x0, 0xd, + 0x20, 0x0, 0x8f, 0xee, 0xee, 0xf9, 0x0, 0xe, + 0x10, 0x0, 0x1, 0xe0, 0x5, 0xa0, 0x0, 0x0, + 0xa, 0x60, 0xc4, 0x0, 0x0, 0x0, 0x4c, 0x0, + + /* U+C4 "Ä" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb4, + 0x3c, 0x0, 0x0, 0x0, 0x1, 0x0, 0x10, 0x0, + 0x0, 0x0, 0xb, 0xb0, 0x0, 0x0, 0x0, 0x1, + 0xdd, 0x20, 0x0, 0x0, 0x0, 0x87, 0x78, 0x0, + 0x0, 0x0, 0xe, 0x11, 0xe0, 0x0, 0x0, 0x5, + 0xa0, 0xa, 0x50, 0x0, 0x0, 0xb4, 0x0, 0x4c, + 0x0, 0x0, 0x2d, 0x0, 0x0, 0xd2, 0x0, 0x8, + 0xfe, 0xee, 0xef, 0x90, 0x0, 0xe1, 0x0, 0x0, + 0x1e, 0x0, 0x5a, 0x0, 0x0, 0x0, 0xa6, 0xc, + 0x40, 0x0, 0x0, 0x4, 0xc0, + + /* U+C5 "Å" */ + 0x0, 0x0, 0x88, 0x0, 0x0, 0x0, 0x0, 0x53, + 0x26, 0x0, 0x0, 0x0, 0x5, 0x32, 0x60, 0x0, + 0x0, 0x0, 0x7, 0x70, 0x0, 0x0, 0x0, 0x0, + 0xbb, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xd2, 0x0, + 0x0, 0x0, 0x8, 0x77, 0x80, 0x0, 0x0, 0x0, + 0xe1, 0x1e, 0x0, 0x0, 0x0, 0x5a, 0x0, 0xa5, + 0x0, 0x0, 0xb, 0x40, 0x4, 0xc0, 0x0, 0x2, + 0xd0, 0x0, 0xd, 0x20, 0x0, 0x8f, 0xee, 0xee, + 0xf9, 0x0, 0xe, 0x10, 0x0, 0x1, 0xe0, 0x5, + 0xa0, 0x0, 0x0, 0xa, 0x60, 0xc4, 0x0, 0x0, + 0x0, 0x4c, 0x0, + + /* U+C6 "Æ" */ + 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xf6, 0x0, + 0x0, 0xc, 0x8b, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5a, 0x4b, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd2, + 0x4b, 0x0, 0x0, 0x0, 0x0, 0x7, 0x90, 0x4b, + 0x0, 0x0, 0x0, 0x0, 0xd, 0x10, 0x4f, 0xff, + 0xff, 0xc0, 0x0, 0x87, 0x0, 0x4b, 0x0, 0x0, + 0x0, 0x1, 0xfe, 0xee, 0xeb, 0x0, 0x0, 0x0, + 0x9, 0x60, 0x0, 0x4b, 0x0, 0x0, 0x0, 0x2d, + 0x0, 0x0, 0x4b, 0x0, 0x0, 0x0, 0xb5, 0x0, + 0x0, 0x4f, 0xff, 0xff, 0xf9, + + /* U+C7 "Ç" */ + 0x0, 0x6, 0xcf, 0xeb, 0x30, 0x0, 0xac, 0x40, + 0x15, 0xe3, 0x7, 0xc0, 0x0, 0x0, 0x10, 0xe, + 0x20, 0x0, 0x0, 0x0, 0x2d, 0x0, 0x0, 0x0, + 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x2d, 0x0, + 0x0, 0x0, 0x0, 0xe, 0x20, 0x0, 0x0, 0x0, + 0x7, 0xc0, 0x0, 0x0, 0x10, 0x0, 0xbc, 0x40, + 0x15, 0xe3, 0x0, 0x6, 0xcf, 0xfb, 0x30, 0x0, + 0x0, 0xb, 0x10, 0x0, 0x0, 0x0, 0x3, 0xc0, + 0x0, 0x0, 0x0, 0x7a, 0x90, 0x0, + + /* U+C8 "È" */ + 0x0, 0x71, 0x0, 0x0, 0x0, 0x4c, 0x10, 0x0, + 0x0, 0x3, 0x50, 0x0, 0x6f, 0xff, 0xff, 0xf4, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0xff, 0xa0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xf8, + + /* U+C9 "É" */ + 0x0, 0x0, 0x27, 0x0, 0x0, 0x1, 0xc3, 0x0, + 0x0, 0x5, 0x20, 0x0, 0x6f, 0xff, 0xff, 0xf4, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0xff, 0xa0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xf8, + + /* U+CA "Ê" */ + 0x0, 0x6, 0x50, 0x0, 0x0, 0x69, 0xa6, 0x0, + 0x1, 0x60, 0x6, 0x0, 0x6f, 0xff, 0xff, 0xf4, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0xff, 0xa0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xf8, + + /* U+CB "Ë" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc3, 0x4b, 0x0, + 0x0, 0x10, 0x1, 0x0, 0x6f, 0xff, 0xff, 0xf4, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0xff, 0xa0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xf8, + + /* U+CC "Ì" */ + 0x7, 0x20, 0x0, 0x3c, 0x20, 0x0, 0x16, 0x0, + 0x6, 0xa0, 0x0, 0x6a, 0x0, 0x6, 0xa0, 0x0, + 0x6a, 0x0, 0x6, 0xa0, 0x0, 0x6a, 0x0, 0x6, + 0xa0, 0x0, 0x6a, 0x0, 0x6, 0xa0, 0x0, 0x6a, + 0x0, 0x6, 0xa0, + + /* U+CD "Í" */ + 0x1, 0x71, 0xc, 0x50, 0x43, 0x0, 0x6a, 0x0, + 0x6a, 0x0, 0x6a, 0x0, 0x6a, 0x0, 0x6a, 0x0, + 0x6a, 0x0, 0x6a, 0x0, 0x6a, 0x0, 0x6a, 0x0, + 0x6a, 0x0, 0x6a, 0x0, + + /* U+CE "Î" */ + 0x0, 0x46, 0x0, 0x4, 0xb8, 0x80, 0x6, 0x0, + 0x61, 0x0, 0x6a, 0x0, 0x0, 0x6a, 0x0, 0x0, + 0x6a, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x6a, 0x0, + 0x0, 0x6a, 0x0, 0x0, 0x6a, 0x0, 0x0, 0x6a, + 0x0, 0x0, 0x6a, 0x0, 0x0, 0x6a, 0x0, 0x0, + 0x6a, 0x0, + + /* U+CF "Ï" */ + 0x0, 0x0, 0x95, 0x2d, 0x10, 0x1, 0x6, 0xa0, + 0x6, 0xa0, 0x6, 0xa0, 0x6, 0xa0, 0x6, 0xa0, + 0x6, 0xa0, 0x6, 0xa0, 0x6, 0xa0, 0x6, 0xa0, + 0x6, 0xa0, 0x6, 0xa0, + + /* U+D0 "Ð" */ + 0x5, 0xff, 0xff, 0xea, 0x30, 0x0, 0x5b, 0x0, + 0x1, 0x6e, 0x50, 0x5, 0xb0, 0x0, 0x0, 0x2e, + 0x20, 0x5b, 0x0, 0x0, 0x0, 0x88, 0x5, 0xb0, + 0x0, 0x0, 0x3, 0xcb, 0xff, 0xee, 0x80, 0x0, + 0x2e, 0x5, 0xb0, 0x0, 0x0, 0x3, 0xc0, 0x5b, + 0x0, 0x0, 0x0, 0x88, 0x5, 0xb0, 0x0, 0x0, + 0x2e, 0x20, 0x5b, 0x0, 0x1, 0x6e, 0x50, 0x5, + 0xff, 0xff, 0xea, 0x30, 0x0, + + /* U+D1 "Ñ" */ + 0x0, 0x1b, 0x70, 0x80, 0x0, 0x6, 0x23, 0xa5, + 0x0, 0x6c, 0x0, 0x0, 0x3, 0xc6, 0xf8, 0x0, + 0x0, 0x3c, 0x6c, 0xe3, 0x0, 0x3, 0xc6, 0xa5, + 0xd0, 0x0, 0x3c, 0x6a, 0xa, 0xa0, 0x3, 0xc6, + 0xa0, 0x1e, 0x50, 0x3c, 0x6a, 0x0, 0x4e, 0x13, + 0xc6, 0xa0, 0x0, 0x8b, 0x3c, 0x6a, 0x0, 0x0, + 0xcb, 0xc6, 0xa0, 0x0, 0x2, 0xfc, 0x6a, 0x0, + 0x0, 0x6, 0xc0, + + /* U+D2 "Ò" */ + 0x0, 0x1, 0x71, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x40, + 0x0, 0x0, 0x0, 0x6, 0xcf, 0xeb, 0x30, 0x0, + 0x0, 0xac, 0x40, 0x15, 0xe6, 0x0, 0x7, 0xc0, + 0x0, 0x0, 0x1e, 0x30, 0xe, 0x20, 0x0, 0x0, + 0x7, 0xa0, 0x2d, 0x0, 0x0, 0x0, 0x2, 0xe0, + 0x3c, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x2d, 0x0, + 0x0, 0x0, 0x2, 0xe0, 0xe, 0x20, 0x0, 0x0, + 0x7, 0xa0, 0x7, 0xc0, 0x0, 0x0, 0x1e, 0x30, + 0x0, 0xac, 0x40, 0x15, 0xe6, 0x0, 0x0, 0x6, + 0xcf, 0xeb, 0x40, 0x0, + + /* U+D3 "Ó" */ + 0x0, 0x0, 0x0, 0x27, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xc3, 0x0, 0x0, 0x0, 0x0, 0x6, 0x10, + 0x0, 0x0, 0x0, 0x6, 0xcf, 0xeb, 0x30, 0x0, + 0x0, 0xac, 0x40, 0x15, 0xe6, 0x0, 0x7, 0xc0, + 0x0, 0x0, 0x1e, 0x30, 0xe, 0x20, 0x0, 0x0, + 0x7, 0xa0, 0x2d, 0x0, 0x0, 0x0, 0x2, 0xe0, + 0x3c, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x2d, 0x0, + 0x0, 0x0, 0x2, 0xe0, 0xe, 0x20, 0x0, 0x0, + 0x7, 0xa0, 0x7, 0xc0, 0x0, 0x0, 0x1e, 0x30, + 0x0, 0xac, 0x40, 0x15, 0xe6, 0x0, 0x0, 0x6, + 0xcf, 0xeb, 0x40, 0x0, + + /* U+D4 "Ô" */ + 0x0, 0x0, 0x6, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x88, 0xb4, 0x0, 0x0, 0x0, 0x1, 0x60, 0x6, + 0x0, 0x0, 0x0, 0x6, 0xcf, 0xeb, 0x30, 0x0, + 0x0, 0xac, 0x40, 0x15, 0xe6, 0x0, 0x7, 0xc0, + 0x0, 0x0, 0x1e, 0x30, 0xe, 0x20, 0x0, 0x0, + 0x7, 0xa0, 0x2d, 0x0, 0x0, 0x0, 0x2, 0xe0, + 0x3c, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x2d, 0x0, + 0x0, 0x0, 0x2, 0xe0, 0xe, 0x20, 0x0, 0x0, + 0x7, 0xa0, 0x7, 0xc0, 0x0, 0x0, 0x1e, 0x30, + 0x0, 0xac, 0x40, 0x15, 0xe6, 0x0, 0x0, 0x6, + 0xcf, 0xeb, 0x40, 0x0, + + /* U+D5 "Õ" */ + 0x0, 0x0, 0xa9, 0x8, 0x0, 0x0, 0x0, 0x3, + 0x52, 0x97, 0x0, 0x0, 0x0, 0x6, 0xcf, 0xeb, + 0x30, 0x0, 0x0, 0xac, 0x40, 0x15, 0xe6, 0x0, + 0x7, 0xc0, 0x0, 0x0, 0x1e, 0x30, 0xe, 0x20, + 0x0, 0x0, 0x7, 0xa0, 0x2d, 0x0, 0x0, 0x0, + 0x2, 0xe0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0xf0, + 0x2d, 0x0, 0x0, 0x0, 0x2, 0xe0, 0xe, 0x20, + 0x0, 0x0, 0x7, 0xa0, 0x7, 0xc0, 0x0, 0x0, + 0x1e, 0x30, 0x0, 0xac, 0x40, 0x15, 0xe6, 0x0, + 0x0, 0x6, 0xcf, 0xeb, 0x40, 0x0, + + /* U+D6 "Ö" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd2, 0x59, 0x0, 0x0, 0x0, 0x0, 0x10, 0x1, + 0x0, 0x0, 0x0, 0x6, 0xcf, 0xeb, 0x30, 0x0, + 0x0, 0xac, 0x40, 0x15, 0xe6, 0x0, 0x7, 0xc0, + 0x0, 0x0, 0x1e, 0x30, 0xe, 0x20, 0x0, 0x0, + 0x7, 0xa0, 0x2d, 0x0, 0x0, 0x0, 0x2, 0xe0, + 0x3c, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x2d, 0x0, + 0x0, 0x0, 0x2, 0xe0, 0xe, 0x20, 0x0, 0x0, + 0x7, 0xa0, 0x7, 0xc0, 0x0, 0x0, 0x1e, 0x30, + 0x0, 0xac, 0x40, 0x15, 0xe6, 0x0, 0x0, 0x6, + 0xcf, 0xeb, 0x40, 0x0, + + /* U+D7 "×" */ + 0x28, 0x0, 0x83, 0xa, 0x76, 0xb0, 0x0, 0xcd, + 0x0, 0x4, 0xcc, 0x50, 0x2d, 0x11, 0xd3, 0x1, + 0x0, 0x10, + + /* U+D8 "Ø" */ + 0x0, 0x0, 0x0, 0x0, 0x3, 0x30, 0x0, 0x6, + 0xcf, 0xeb, 0x4b, 0x0, 0x0, 0xac, 0x40, 0x15, + 0xfa, 0x0, 0x7, 0xc0, 0x0, 0x5, 0xae, 0x30, + 0xe, 0x20, 0x0, 0x1b, 0x7, 0xa0, 0x2d, 0x0, + 0x0, 0xa2, 0x2, 0xe0, 0x3c, 0x0, 0x5, 0x70, + 0x0, 0xf0, 0x2d, 0x0, 0x1b, 0x0, 0x2, 0xe0, + 0xe, 0x20, 0xa2, 0x0, 0x7, 0xa0, 0x7, 0xc6, + 0x70, 0x0, 0x1e, 0x30, 0x0, 0xcf, 0x40, 0x15, + 0xe6, 0x0, 0x0, 0xb8, 0xcf, 0xeb, 0x40, 0x0, + 0x7, 0x60, 0x0, 0x0, 0x0, 0x0, + + /* U+D9 "Ù" */ + 0x0, 0x46, 0x0, 0x0, 0x0, 0x0, 0xa7, 0x0, + 0x0, 0x0, 0x0, 0x61, 0x0, 0x7, 0x80, 0x0, + 0x0, 0x79, 0x78, 0x0, 0x0, 0x7, 0x97, 0x80, + 0x0, 0x0, 0x79, 0x78, 0x0, 0x0, 0x7, 0x97, + 0x80, 0x0, 0x0, 0x79, 0x78, 0x0, 0x0, 0x7, + 0x97, 0x90, 0x0, 0x0, 0x78, 0x6b, 0x0, 0x0, + 0x9, 0x72, 0xf1, 0x0, 0x0, 0xe3, 0x9, 0xc3, + 0x2, 0xba, 0x0, 0x7, 0xdf, 0xe8, 0x0, + + /* U+DA "Ú" */ + 0x0, 0x0, 0x5, 0x40, 0x0, 0x0, 0x6, 0xb0, + 0x0, 0x0, 0x1, 0x60, 0x0, 0x7, 0x80, 0x0, + 0x0, 0x79, 0x78, 0x0, 0x0, 0x7, 0x97, 0x80, + 0x0, 0x0, 0x79, 0x78, 0x0, 0x0, 0x7, 0x97, + 0x80, 0x0, 0x0, 0x79, 0x78, 0x0, 0x0, 0x7, + 0x97, 0x90, 0x0, 0x0, 0x78, 0x6b, 0x0, 0x0, + 0x9, 0x72, 0xf1, 0x0, 0x0, 0xe3, 0x9, 0xc3, + 0x2, 0xba, 0x0, 0x7, 0xdf, 0xe8, 0x0, + + /* U+DB "Û" */ + 0x0, 0x1, 0x72, 0x0, 0x0, 0x0, 0xc6, 0xc1, + 0x0, 0x0, 0x43, 0x2, 0x50, 0x7, 0x80, 0x0, + 0x0, 0x79, 0x78, 0x0, 0x0, 0x7, 0x97, 0x80, + 0x0, 0x0, 0x79, 0x78, 0x0, 0x0, 0x7, 0x97, + 0x80, 0x0, 0x0, 0x79, 0x78, 0x0, 0x0, 0x7, + 0x97, 0x90, 0x0, 0x0, 0x78, 0x6b, 0x0, 0x0, + 0x9, 0x72, 0xf1, 0x0, 0x0, 0xe3, 0x9, 0xc3, + 0x2, 0xba, 0x0, 0x7, 0xdf, 0xe8, 0x0, + + /* U+DC "Ü" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0xb4, + 0x0, 0x0, 0x1, 0x1, 0x0, 0x7, 0x80, 0x0, + 0x0, 0x79, 0x78, 0x0, 0x0, 0x7, 0x97, 0x80, + 0x0, 0x0, 0x79, 0x78, 0x0, 0x0, 0x7, 0x97, + 0x80, 0x0, 0x0, 0x79, 0x78, 0x0, 0x0, 0x7, + 0x97, 0x90, 0x0, 0x0, 0x78, 0x6b, 0x0, 0x0, + 0x9, 0x72, 0xf1, 0x0, 0x0, 0xe3, 0x9, 0xc3, + 0x2, 0xba, 0x0, 0x7, 0xdf, 0xe8, 0x0, + + /* U+DD "Ý" */ + 0x0, 0x0, 0x6, 0x30, 0x0, 0x0, 0x8, 0xa0, + 0x0, 0x0, 0x1, 0x60, 0x0, 0xb, 0x60, 0x0, + 0x0, 0x69, 0x2e, 0x0, 0x0, 0xe, 0x10, 0xa7, + 0x0, 0x8, 0x80, 0x1, 0xe1, 0x1, 0xe0, 0x0, + 0x8, 0x90, 0x96, 0x0, 0x0, 0x1e, 0x4d, 0x0, + 0x0, 0x0, 0x7f, 0x50, 0x0, 0x0, 0x1, 0xf0, + 0x0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1, + 0xf0, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x0, + + /* U+DE "Þ" */ + 0x6a, 0x0, 0x0, 0x0, 0x6, 0xa0, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0xfd, 0x70, 0x6, 0xa0, 0x0, + 0x3b, 0xa0, 0x6a, 0x0, 0x0, 0xf, 0x26, 0xa0, + 0x0, 0x0, 0xd3, 0x6a, 0x0, 0x0, 0xf, 0x26, + 0xa0, 0x0, 0x3b, 0xa0, 0x6f, 0xff, 0xfd, 0x70, + 0x6, 0xa0, 0x0, 0x0, 0x0, 0x6a, 0x0, 0x0, + 0x0, 0x0, + + /* U+DF "ß" */ + 0x3, 0xbe, 0xe8, 0x0, 0x1e, 0x40, 0x1a, 0x80, + 0x79, 0x0, 0x2, 0xd0, 0x96, 0x0, 0x3, 0xc0, + 0x96, 0x0, 0x2c, 0x40, 0x96, 0x8, 0xfd, 0x40, + 0x96, 0x0, 0x3, 0xd3, 0x96, 0x0, 0x0, 0x69, + 0x96, 0x0, 0x0, 0x6a, 0x96, 0x1, 0x3, 0xd4, + 0x96, 0x1e, 0xfd, 0x60, + + /* U+E0 "à" */ + 0x0, 0xa8, 0x0, 0x0, 0x0, 0x76, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4c, 0xfe, 0xa0, 0x8, 0x30, + 0x9, 0x90, 0x0, 0x0, 0x1d, 0x3, 0xbc, 0xcc, + 0xe0, 0xe2, 0x0, 0xf, 0x3c, 0x0, 0x2, 0xf0, + 0xe2, 0x0, 0xaf, 0x4, 0xcc, 0xc4, 0xf0, + + /* U+E1 "á" */ + 0x0, 0x0, 0x8a, 0x0, 0x0, 0x67, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4c, 0xfe, 0xa0, 0x8, 0x30, + 0x9, 0x90, 0x0, 0x0, 0x1d, 0x3, 0xbc, 0xcc, + 0xe0, 0xe2, 0x0, 0xf, 0x3c, 0x0, 0x2, 0xf0, + 0xe2, 0x0, 0xaf, 0x4, 0xcc, 0xc4, 0xf0, + + /* U+E2 "â" */ + 0x0, 0x1c, 0xc1, 0x0, 0xa, 0x22, 0xa0, 0x0, + 0x0, 0x0, 0x0, 0x4c, 0xfe, 0xa0, 0x8, 0x30, + 0x9, 0x90, 0x0, 0x0, 0x1d, 0x3, 0xbc, 0xcc, + 0xe0, 0xe2, 0x0, 0xf, 0x3c, 0x0, 0x2, 0xf0, + 0xe2, 0x0, 0xaf, 0x4, 0xcc, 0xc4, 0xf0, + + /* U+E3 "ã" */ + 0x0, 0xaa, 0x18, 0x10, 0x26, 0x9, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x4c, 0xfe, 0xa0, 0x8, 0x30, + 0x9, 0x90, 0x0, 0x0, 0x1d, 0x3, 0xbc, 0xcc, + 0xe0, 0xe2, 0x0, 0xf, 0x3c, 0x0, 0x2, 0xf0, + 0xe2, 0x0, 0xaf, 0x4, 0xcc, 0xc4, 0xf0, + + /* U+E4 "ä" */ + 0x0, 0xb3, 0x3b, 0x0, 0x2, 0x0, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x4c, 0xfe, 0xa0, 0x8, 0x30, + 0x9, 0x90, 0x0, 0x0, 0x1d, 0x3, 0xbc, 0xcc, + 0xe0, 0xe2, 0x0, 0xf, 0x3c, 0x0, 0x2, 0xf0, + 0xe2, 0x0, 0xaf, 0x4, 0xcc, 0xc4, 0xf0, + + /* U+E5 "å" */ + 0x0, 0x18, 0x81, 0x0, 0x6, 0x12, 0x60, 0x0, + 0x18, 0x81, 0x0, 0x0, 0x0, 0x0, 0x4, 0xcf, + 0xea, 0x0, 0x83, 0x0, 0x99, 0x0, 0x0, 0x1, + 0xd0, 0x3b, 0xcc, 0xce, 0xe, 0x20, 0x0, 0xf3, + 0xc0, 0x0, 0x2f, 0xe, 0x20, 0xa, 0xf0, 0x4c, + 0xcc, 0x4f, + + /* U+E6 "æ" */ + 0x4, 0xcf, 0xea, 0x15, 0xce, 0xd6, 0x0, 0x8, + 0x30, 0x9, 0xdd, 0x20, 0x1c, 0x70, 0x0, 0x0, + 0x1, 0xf2, 0x0, 0x0, 0xe0, 0x3, 0xbc, 0xcc, + 0xfc, 0xcc, 0xcc, 0xd1, 0xe, 0x20, 0x0, 0xf1, + 0x0, 0x0, 0x0, 0x3c, 0x0, 0x3, 0xf6, 0x0, + 0x0, 0x0, 0xe, 0x40, 0x2c, 0x7e, 0x50, 0x8, + 0x70, 0x4, 0xcf, 0xd5, 0x3, 0xbf, 0xe9, 0x0, + + /* U+E7 "ç" */ + 0x0, 0x7d, 0xfd, 0x50, 0x8, 0xb1, 0x3, 0xd1, + 0x1e, 0x0, 0x0, 0x0, 0x4b, 0x0, 0x0, 0x0, + 0x4b, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, + 0x8, 0xb2, 0x3, 0xd1, 0x0, 0x7e, 0xfd, 0x50, + 0x0, 0x5, 0x70, 0x0, 0x0, 0x1, 0x95, 0x0, + 0x0, 0x2a, 0xb2, 0x0, + + /* U+E8 "è" */ + 0x0, 0x7b, 0x0, 0x0, 0x0, 0x4, 0x90, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8e, 0xec, 0x30, + 0x9, 0x90, 0x3, 0xd2, 0x1c, 0x0, 0x0, 0x5a, + 0x4e, 0xcc, 0xcc, 0xcb, 0x4c, 0x0, 0x0, 0x0, + 0x1f, 0x20, 0x0, 0x0, 0x8, 0xd3, 0x2, 0xc2, + 0x0, 0x7d, 0xfd, 0x60, + + /* U+E9 "é" */ + 0x0, 0x0, 0x4c, 0x20, 0x0, 0x3, 0xa0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8e, 0xec, 0x30, + 0x9, 0x90, 0x3, 0xd2, 0x1c, 0x0, 0x0, 0x5a, + 0x4e, 0xcc, 0xcc, 0xcb, 0x4c, 0x0, 0x0, 0x0, + 0x1f, 0x20, 0x0, 0x0, 0x8, 0xd3, 0x2, 0xc2, + 0x0, 0x7d, 0xfd, 0x60, + + /* U+EA "ê" */ + 0x0, 0xb, 0xd4, 0x0, 0x0, 0x84, 0xa, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8e, 0xec, 0x30, + 0x9, 0x90, 0x3, 0xd2, 0x1c, 0x0, 0x0, 0x5a, + 0x4e, 0xcc, 0xcc, 0xcb, 0x4c, 0x0, 0x0, 0x0, + 0x1f, 0x20, 0x0, 0x0, 0x8, 0xd3, 0x2, 0xc2, + 0x0, 0x7d, 0xfd, 0x60, + + /* U+EB "ë" */ + 0x0, 0x77, 0xd, 0x0, 0x0, 0x11, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8e, 0xec, 0x30, + 0x9, 0x90, 0x3, 0xd2, 0x1c, 0x0, 0x0, 0x5a, + 0x4e, 0xcc, 0xcc, 0xcb, 0x4c, 0x0, 0x0, 0x0, + 0x1f, 0x20, 0x0, 0x0, 0x8, 0xd3, 0x2, 0xc2, + 0x0, 0x7d, 0xfd, 0x60, + + /* U+EC "ì" */ + 0x1b, 0x60, 0x0, 0x84, 0x0, 0x0, 0x0, 0x96, + 0x0, 0x96, 0x0, 0x96, 0x0, 0x96, 0x0, 0x96, + 0x0, 0x96, 0x0, 0x96, 0x0, 0x96, + + /* U+ED "í" */ + 0x0, 0x99, 0x0, 0x76, 0x0, 0x0, 0x0, 0x0, + 0x96, 0x0, 0x9, 0x60, 0x0, 0x96, 0x0, 0x9, + 0x60, 0x0, 0x96, 0x0, 0x9, 0x60, 0x0, 0x96, + 0x0, 0x9, 0x60, 0x0, + + /* U+EE "î" */ + 0x1, 0xcb, 0x0, 0x92, 0x56, 0x0, 0x0, 0x0, + 0x9, 0x60, 0x0, 0x96, 0x0, 0x9, 0x60, 0x0, + 0x96, 0x0, 0x9, 0x60, 0x0, 0x96, 0x0, 0x9, + 0x60, 0x0, 0x96, 0x0, + + /* U+EF "ï" */ + 0x76, 0x94, 0x11, 0x20, 0x0, 0x0, 0x9, 0x60, + 0x9, 0x60, 0x9, 0x60, 0x9, 0x60, 0x9, 0x60, + 0x9, 0x60, 0x9, 0x60, 0x9, 0x60, + + /* U+F0 "ð" */ + 0x7, 0xee, 0xd9, 0x76, 0x0, 0x10, 0x29, 0xdf, + 0x20, 0x0, 0xba, 0x30, 0x79, 0x0, 0x1, 0x0, + 0x0, 0xe0, 0x0, 0x9e, 0xea, 0x1d, 0x20, 0xb9, + 0x10, 0x4c, 0xd3, 0x3d, 0x0, 0x0, 0x6f, 0x25, + 0xb0, 0x0, 0x3, 0xf0, 0x3d, 0x0, 0x0, 0x6b, + 0x0, 0xc9, 0x0, 0x4e, 0x20, 0x1, 0xae, 0xeb, + 0x30, 0x0, + + /* U+F1 "ñ" */ + 0x1, 0xb9, 0xa, 0x0, 0x5, 0x32, 0xa5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x96, 0x9e, 0xea, 0x10, + 0x9e, 0x50, 0x9, 0xb0, 0x9a, 0x0, 0x0, 0xf0, + 0x96, 0x0, 0x0, 0xd2, 0x96, 0x0, 0x0, 0xd2, + 0x96, 0x0, 0x0, 0xd2, 0x96, 0x0, 0x0, 0xd2, + 0x96, 0x0, 0x0, 0xd2, + + /* U+F2 "ò" */ + 0x0, 0x5c, 0x10, 0x0, 0x0, 0x0, 0x3a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xde, + 0xc5, 0x0, 0x8, 0xb1, 0x3, 0xd5, 0x1, 0xe0, + 0x0, 0x3, 0xd0, 0x4b, 0x0, 0x0, 0xe, 0x14, + 0xb0, 0x0, 0x0, 0xe1, 0x1e, 0x0, 0x0, 0x3d, + 0x0, 0x8b, 0x20, 0x3d, 0x50, 0x0, 0x7d, 0xfc, + 0x50, 0x0, + + /* U+F3 "ó" */ + 0x0, 0x0, 0x3d, 0x30, 0x0, 0x0, 0x2a, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xde, + 0xc5, 0x0, 0x8, 0xb1, 0x3, 0xd5, 0x1, 0xe0, + 0x0, 0x3, 0xd0, 0x4b, 0x0, 0x0, 0xe, 0x14, + 0xb0, 0x0, 0x0, 0xe1, 0x1e, 0x0, 0x0, 0x3d, + 0x0, 0x8b, 0x20, 0x3d, 0x50, 0x0, 0x7d, 0xfc, + 0x50, 0x0, + + /* U+F4 "ô" */ + 0x0, 0x9, 0xd6, 0x0, 0x0, 0x6, 0x60, 0x93, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xde, + 0xc5, 0x0, 0x8, 0xb1, 0x3, 0xd5, 0x1, 0xe0, + 0x0, 0x3, 0xd0, 0x4b, 0x0, 0x0, 0xe, 0x14, + 0xb0, 0x0, 0x0, 0xe1, 0x1e, 0x0, 0x0, 0x3d, + 0x0, 0x8b, 0x20, 0x3d, 0x50, 0x0, 0x7d, 0xfc, + 0x50, 0x0, + + /* U+F5 "õ" */ + 0x0, 0x6b, 0x52, 0x80, 0x0, 0x8, 0x6, 0xa1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xde, + 0xc5, 0x0, 0x8, 0xb1, 0x3, 0xd5, 0x1, 0xe0, + 0x0, 0x3, 0xd0, 0x4b, 0x0, 0x0, 0xe, 0x14, + 0xb0, 0x0, 0x0, 0xe1, 0x1e, 0x0, 0x0, 0x3d, + 0x0, 0x8b, 0x20, 0x3d, 0x50, 0x0, 0x7d, 0xfc, + 0x50, 0x0, + + /* U+F6 "ö" */ + 0x0, 0x59, 0xc, 0x10, 0x0, 0x0, 0x20, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xde, + 0xc5, 0x0, 0x8, 0xb1, 0x3, 0xd5, 0x1, 0xe0, + 0x0, 0x3, 0xd0, 0x4b, 0x0, 0x0, 0xe, 0x14, + 0xb0, 0x0, 0x0, 0xe1, 0x1e, 0x0, 0x0, 0x3d, + 0x0, 0x8b, 0x20, 0x3d, 0x50, 0x0, 0x7d, 0xfc, + 0x50, 0x0, + + /* U+F7 "÷" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x90, 0x0, + 0x0, 0x1, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0xee, 0xee, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x90, 0x0, + 0x0, 0x1, 0x10, 0x0, + + /* U+F8 "ø" */ + 0x0, 0x0, 0x0, 0x27, 0x0, 0x7, 0xde, 0xcf, + 0x0, 0x8, 0xb1, 0x9, 0xf5, 0x1, 0xe0, 0x1, + 0x93, 0xd0, 0x4b, 0x0, 0x91, 0xe, 0x14, 0xb0, + 0x46, 0x0, 0xe1, 0x1e, 0x1a, 0x0, 0x3d, 0x0, + 0x8f, 0x40, 0x3d, 0x50, 0x2, 0xfd, 0xfc, 0x50, + 0x0, 0xa0, 0x0, 0x0, 0x0, + + /* U+F9 "ù" */ + 0x2, 0xc4, 0x0, 0x0, 0x0, 0x1a, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb5, 0x0, 0x0, 0xf0, + 0xb5, 0x0, 0x0, 0xf0, 0xb5, 0x0, 0x0, 0xf0, + 0xb5, 0x0, 0x0, 0xf0, 0xa5, 0x0, 0x0, 0xf0, + 0x97, 0x0, 0x3, 0xf0, 0x3e, 0x20, 0x1b, 0xf0, + 0x5, 0xde, 0xc3, 0xf0, + + /* U+FA "ú" */ + 0x0, 0x1, 0xc6, 0x0, 0x0, 0x9, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb5, 0x0, 0x0, 0xf0, + 0xb5, 0x0, 0x0, 0xf0, 0xb5, 0x0, 0x0, 0xf0, + 0xb5, 0x0, 0x0, 0xf0, 0xa5, 0x0, 0x0, 0xf0, + 0x97, 0x0, 0x3, 0xf0, 0x3e, 0x20, 0x1b, 0xf0, + 0x5, 0xde, 0xc3, 0xf0, + + /* U+FB "û" */ + 0x0, 0x5c, 0xa0, 0x0, 0x3, 0x90, 0x57, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb5, 0x0, 0x0, 0xf0, + 0xb5, 0x0, 0x0, 0xf0, 0xb5, 0x0, 0x0, 0xf0, + 0xb5, 0x0, 0x0, 0xf0, 0xa5, 0x0, 0x0, 0xf0, + 0x97, 0x0, 0x3, 0xf0, 0x3e, 0x20, 0x1b, 0xf0, + 0x5, 0xde, 0xc3, 0xf0, + + /* U+FC "ü" */ + 0x1, 0xd0, 0x86, 0x0, 0x0, 0x20, 0x11, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb5, 0x0, 0x0, 0xf0, + 0xb5, 0x0, 0x0, 0xf0, 0xb5, 0x0, 0x0, 0xf0, + 0xb5, 0x0, 0x0, 0xf0, 0xa5, 0x0, 0x0, 0xf0, + 0x97, 0x0, 0x3, 0xf0, 0x3e, 0x20, 0x1b, 0xf0, + 0x5, 0xde, 0xc3, 0xf0, + + /* U+FD "ý" */ + 0x0, 0x0, 0x1c, 0x50, 0x0, 0x0, 0xa, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4, 0x0, + 0x0, 0x95, 0x5, 0xa0, 0x0, 0xe, 0x0, 0xe, + 0x10, 0x6, 0x80, 0x0, 0x87, 0x0, 0xd2, 0x0, + 0x2, 0xd0, 0x3b, 0x0, 0x0, 0xb, 0x4a, 0x40, + 0x0, 0x0, 0x4c, 0xd0, 0x0, 0x0, 0x0, 0xe7, + 0x0, 0x0, 0x0, 0xe, 0x10, 0x0, 0x3, 0x7, + 0x90, 0x0, 0x1, 0xce, 0xb0, 0x0, 0x0, + + /* U+FE "þ" */ + 0x96, 0x0, 0x0, 0x0, 0x96, 0x0, 0x0, 0x0, + 0x96, 0x0, 0x0, 0x0, 0x96, 0x8e, 0xeb, 0x20, + 0x9e, 0x80, 0x5, 0xe1, 0x9b, 0x0, 0x0, 0x79, + 0x96, 0x0, 0x0, 0x3c, 0x96, 0x0, 0x0, 0x3c, + 0x9b, 0x0, 0x0, 0x79, 0x9e, 0x80, 0x5, 0xe2, + 0x96, 0x8e, 0xfb, 0x20, 0x96, 0x0, 0x0, 0x0, + 0x96, 0x0, 0x0, 0x0, 0x96, 0x0, 0x0, 0x0, + + /* U+FF "ÿ" */ + 0x0, 0x2c, 0x9, 0x50, 0x0, 0x0, 0x20, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4, 0x0, + 0x0, 0x95, 0x5, 0xa0, 0x0, 0xe, 0x0, 0xe, + 0x10, 0x6, 0x80, 0x0, 0x87, 0x0, 0xd2, 0x0, + 0x2, 0xd0, 0x3b, 0x0, 0x0, 0xb, 0x4a, 0x40, + 0x0, 0x0, 0x4c, 0xd0, 0x0, 0x0, 0x0, 0xe7, + 0x0, 0x0, 0x0, 0xe, 0x10, 0x0, 0x3, 0x7, + 0x90, 0x0, 0x1, 0xce, 0xb0, 0x0, 0x0, + + /* U+F001 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x7b, 0xfb, 0x0, + 0x0, 0x0, 0x4, 0x9d, 0xff, 0xff, 0xd0, 0x0, + 0x3, 0xaf, 0xff, 0xff, 0xff, 0xfd, 0x0, 0x0, + 0xaf, 0xff, 0xff, 0xff, 0xdf, 0xd0, 0x0, 0xa, + 0xff, 0xff, 0xb6, 0x10, 0xed, 0x0, 0x0, 0xaf, + 0x94, 0x0, 0x0, 0xe, 0xd0, 0x0, 0xa, 0xf1, + 0x0, 0x0, 0x0, 0xed, 0x0, 0x0, 0xaf, 0x10, + 0x0, 0x0, 0xe, 0xd0, 0x0, 0xa, 0xf1, 0x0, + 0x0, 0x45, 0xfd, 0x0, 0x0, 0xaf, 0x10, 0x1, + 0xef, 0xff, 0xd0, 0x17, 0x9d, 0xf1, 0x0, 0x5f, + 0xff, 0xfc, 0xe, 0xff, 0xff, 0x10, 0x0, 0xaf, + 0xfd, 0x31, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x1, + 0x0, 0x3, 0xbd, 0xa3, 0x0, 0x0, 0x0, 0x0, + 0x0, + + /* U+F008 "" */ + 0x50, 0x18, 0x88, 0x88, 0x88, 0x84, 0x5, 0xfa, + 0xbf, 0xdd, 0xdd, 0xdd, 0xfd, 0xaf, 0xe4, 0x7f, + 0x10, 0x0, 0x0, 0xca, 0x4e, 0xe0, 0x4f, 0x10, + 0x0, 0x0, 0xc8, 0xe, 0xfe, 0xef, 0x10, 0x0, + 0x0, 0xcf, 0xef, 0xe0, 0x3f, 0xee, 0xee, 0xee, + 0xf8, 0xe, 0xf6, 0x8f, 0x76, 0x66, 0x66, 0xeb, + 0x6f, 0xf8, 0xaf, 0x10, 0x0, 0x0, 0xcc, 0x8f, + 0xe0, 0x3f, 0x10, 0x0, 0x0, 0xc8, 0xe, 0xfc, + 0xdf, 0x65, 0x55, 0x55, 0xee, 0xcf, 0xc2, 0x5f, + 0xff, 0xff, 0xff, 0xf9, 0x2c, + + /* U+F00B "" */ + 0x57, 0x75, 0x5, 0x77, 0x77, 0x77, 0x75, 0xff, + 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x2f, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xe, + 0xff, 0xff, 0xff, 0xfe, 0x1, 0x10, 0x0, 0x11, + 0x11, 0x11, 0x10, 0xef, 0xfe, 0xe, 0xff, 0xff, + 0xff, 0xfe, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, + 0x68, 0x87, 0x7, 0x88, 0x88, 0x88, 0x86, 0x68, + 0x87, 0x7, 0x88, 0x88, 0x88, 0x86, 0xff, 0xff, + 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2f, + 0xff, 0xff, 0xff, 0xff, 0xdf, 0xfd, 0xd, 0xff, + 0xff, 0xff, 0xfd, + + /* U+F00C "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1d, 0xf8, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xdf, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x1d, 0xff, 0xe2, 0x2d, 0x60, 0x0, 0x1, + 0xdf, 0xfe, 0x20, 0xdf, 0xf7, 0x0, 0x1d, 0xff, + 0xe2, 0x0, 0x8f, 0xff, 0x71, 0xdf, 0xfe, 0x20, + 0x0, 0x8, 0xff, 0xfe, 0xff, 0xe2, 0x0, 0x0, + 0x0, 0x8f, 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, + 0x8, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7d, 0x20, 0x0, 0x0, 0x0, + + /* U+F00D "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x60, 0x0, + 0xb, 0xe2, 0xef, 0xf6, 0x0, 0xbf, 0xf8, 0x4f, + 0xff, 0x6b, 0xff, 0xd1, 0x4, 0xff, 0xff, 0xfd, + 0x10, 0x0, 0x5f, 0xff, 0xe1, 0x0, 0x0, 0xbf, + 0xff, 0xf6, 0x0, 0xb, 0xff, 0xdf, 0xff, 0x60, + 0xbf, 0xfd, 0x14, 0xff, 0xf5, 0xcf, 0xd1, 0x0, + 0x4f, 0xf6, 0x17, 0x10, 0x0, 0x3, 0x60, + + /* U+F011 "" */ + 0x0, 0x0, 0x0, 0x11, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0x21, 0xff, 0x12, 0xf7, 0x0, 0x6, 0xff, 0x61, + 0xff, 0x16, 0xff, 0x60, 0x1f, 0xf9, 0x1, 0xff, + 0x10, 0x9f, 0xf1, 0x6f, 0xe0, 0x1, 0xff, 0x10, + 0xe, 0xf6, 0xaf, 0x80, 0x1, 0xff, 0x10, 0x8, + 0xfa, 0xcf, 0x60, 0x1, 0xff, 0x10, 0x6, 0xfc, + 0xaf, 0x80, 0x0, 0xaa, 0x0, 0x8, 0xfb, 0x7f, + 0xd0, 0x0, 0x0, 0x0, 0xd, 0xf7, 0x1f, 0xf8, + 0x0, 0x0, 0x0, 0x8f, 0xf1, 0x7, 0xff, 0x91, + 0x0, 0x2a, 0xff, 0x70, 0x0, 0x9f, 0xff, 0xee, + 0xff, 0xf9, 0x0, 0x0, 0x5, 0xcf, 0xff, 0xfd, + 0x50, 0x0, 0x0, 0x0, 0x2, 0x44, 0x20, 0x0, + 0x0, + + /* U+F013 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xd6, 0xdf, + 0xff, 0xfd, 0x6d, 0x30, 0xe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe0, 0x5f, 0xff, 0xff, 0xaa, 0xff, + 0xff, 0xf5, 0x1a, 0xff, 0xf4, 0x0, 0x4f, 0xff, + 0xa1, 0x3, 0xff, 0xd0, 0x0, 0xd, 0xff, 0x30, + 0x4, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x40, 0x4f, + 0xff, 0xfb, 0x22, 0xbf, 0xff, 0xf4, 0x2f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf2, 0x9, 0xfe, 0xff, + 0xff, 0xff, 0xef, 0x90, 0x0, 0x50, 0x5e, 0xff, + 0xe5, 0x5, 0x0, 0x0, 0x0, 0xc, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0x77, 0x40, 0x0, + 0x0, + + /* U+F015 "" */ + 0x0, 0x0, 0x0, 0x3, 0x10, 0x3, 0x41, 0x0, + 0x0, 0x0, 0x0, 0x9f, 0xf5, 0xd, 0xf5, 0x0, + 0x0, 0x0, 0x1b, 0xfd, 0xff, 0x8d, 0xf5, 0x0, + 0x0, 0x2, 0xdf, 0xb1, 0x2d, 0xff, 0xf5, 0x0, + 0x0, 0x4f, 0xf8, 0x3e, 0xc2, 0xbf, 0xf5, 0x0, + 0x7, 0xff, 0x55, 0xff, 0xfe, 0x39, 0xfe, 0x40, + 0x9f, 0xe3, 0x8f, 0xff, 0xff, 0xf5, 0x6f, 0xf6, + 0xac, 0x2a, 0xff, 0xff, 0xff, 0xff, 0x73, 0xe6, + 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, + 0x0, 0x6f, 0xff, 0xd7, 0x7f, 0xff, 0xf2, 0x0, + 0x0, 0x6f, 0xff, 0x90, 0xd, 0xff, 0xf2, 0x0, + 0x0, 0x6f, 0xff, 0x90, 0xd, 0xff, 0xf2, 0x0, + 0x0, 0x4f, 0xff, 0x70, 0xb, 0xff, 0xe1, 0x0, + + /* U+F019 "" */ + 0x0, 0x0, 0x0, 0x33, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xc, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xf8, + 0x0, 0x0, 0x2e, 0xff, 0xff, 0xff, 0xe2, 0x0, + 0x0, 0x2, 0xef, 0xff, 0xfe, 0x20, 0x0, 0x0, + 0x0, 0x2d, 0xff, 0xe2, 0x0, 0x0, 0x79, 0x99, + 0x82, 0xde, 0x28, 0x99, 0x97, 0xff, 0xff, 0xfb, + 0x22, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xb3, 0xcf, 0xac, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, + 0xca, + + /* U+F01C "" */ + 0x0, 0x6, 0xbb, 0xbb, 0xbb, 0xba, 0x30, 0x0, + 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xe1, 0x0, + 0x0, 0xef, 0x30, 0x0, 0x0, 0x6, 0xfb, 0x0, + 0x9, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x50, + 0x4f, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xe1, + 0xdf, 0x84, 0x42, 0x0, 0x0, 0x34, 0x4b, 0xf9, + 0xff, 0xff, 0xfd, 0x0, 0x1, 0xff, 0xff, 0xfb, + 0xff, 0xff, 0xff, 0x98, 0x8b, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + + /* U+F021 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x33, 0x0, + 0x1, 0x8d, 0xff, 0xc6, 0x0, 0xef, 0x0, 0x4e, + 0xff, 0xff, 0xff, 0xe4, 0xdf, 0x4, 0xff, 0xb3, + 0x0, 0x4c, 0xff, 0xff, 0xe, 0xf9, 0x0, 0x0, + 0x0, 0x8f, 0xff, 0x6f, 0xc0, 0x0, 0x1, 0xff, + 0xff, 0xff, 0x8e, 0x50, 0x0, 0x1, 0xde, 0xee, + 0xed, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x22, 0x22, 0x22, 0x0, 0x0, 0x0, 0x21, 0xff, + 0xff, 0xff, 0x10, 0x0, 0x8, 0xf8, 0xff, 0xfb, + 0xbc, 0x10, 0x0, 0x1e, 0xf4, 0xff, 0xfc, 0x10, + 0x0, 0x1, 0xdf, 0xc0, 0xfe, 0xef, 0xe8, 0x44, + 0x8e, 0xfe, 0x10, 0xfe, 0x1a, 0xff, 0xff, 0xff, + 0xc1, 0x0, 0xfd, 0x0, 0x28, 0xbb, 0x94, 0x0, + 0x0, + + /* U+F026 "" */ + 0x0, 0x0, 0x2, 0x70, 0x0, 0x2, 0xef, 0x0, + 0x2, 0xef, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x34, 0x47, 0xff, 0xf0, + 0x0, 0x5, 0xff, 0x0, 0x0, 0x5, 0xc0, 0x0, + 0x0, 0x0, + + /* U+F027 "" */ + 0x0, 0x0, 0x2, 0x70, 0x0, 0x0, 0x0, 0x2, + 0xef, 0x0, 0x0, 0x0, 0x2, 0xef, 0xf0, 0x0, + 0xd, 0xff, 0xff, 0xff, 0x2, 0x20, 0xff, 0xff, + 0xff, 0xf0, 0x8e, 0x1f, 0xff, 0xff, 0xff, 0x0, + 0xe7, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0x5f, 0xff, + 0xff, 0xff, 0x8, 0x90, 0x34, 0x47, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x5, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x5, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+F028 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x70, 0x0, + 0x0, 0x0, 0x2, 0x70, 0x0, 0x5, 0xfa, 0x0, + 0x0, 0x0, 0x2e, 0xf0, 0x0, 0x81, 0x4f, 0x60, + 0x0, 0x2, 0xef, 0xf0, 0x1, 0xdd, 0x7, 0xf0, + 0xdf, 0xff, 0xff, 0xf0, 0x32, 0x1e, 0x80, 0xf6, + 0xff, 0xff, 0xff, 0xf0, 0x8e, 0x27, 0xe0, 0xb9, + 0xff, 0xff, 0xff, 0xf0, 0xe, 0x73, 0xf1, 0x9b, + 0xff, 0xff, 0xff, 0xf0, 0x3f, 0x54, 0xf0, 0x9a, + 0xff, 0xff, 0xff, 0xf0, 0x89, 0xa, 0xc0, 0xd8, + 0x34, 0x47, 0xff, 0xf0, 0x0, 0x7f, 0x43, 0xf3, + 0x0, 0x0, 0x5f, 0xf0, 0x2, 0xf6, 0xc, 0xb0, + 0x0, 0x0, 0x5, 0xc0, 0x0, 0x0, 0xbf, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xe3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x10, 0x0, + + /* U+F03E "" */ + 0x37, 0x88, 0x88, 0x88, 0x88, 0x88, 0x73, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0x32, + 0xdf, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x7f, + 0xff, 0xfd, 0xff, 0xff, 0xfd, 0x10, 0xcf, 0xff, + 0xa0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0, + 0x7, 0xff, 0xff, 0xf3, 0x5f, 0xa0, 0x0, 0x0, + 0xcf, 0xff, 0x30, 0x3, 0x0, 0x0, 0x0, 0xcf, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, + 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xff, 0xaf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf9, + + /* U+F048 "" */ + 0x4, 0x30, 0x0, 0x0, 0x31, 0x1f, 0xe0, 0x0, + 0x6, 0xf9, 0x1f, 0xe0, 0x0, 0x7f, 0xfa, 0x1f, + 0xe0, 0x9, 0xff, 0xfa, 0x1f, 0xe0, 0xaf, 0xff, + 0xfa, 0x1f, 0xeb, 0xff, 0xff, 0xfa, 0x1f, 0xff, + 0xff, 0xff, 0xfa, 0x1f, 0xff, 0xff, 0xff, 0xfa, + 0x1f, 0xe6, 0xff, 0xff, 0xfa, 0x1f, 0xe0, 0x5f, + 0xff, 0xfa, 0x1f, 0xe0, 0x4, 0xff, 0xfa, 0x1f, + 0xe0, 0x0, 0x3e, 0xfa, 0xf, 0xd0, 0x0, 0x2, + 0xd7, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F04B "" */ + 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xfb, + 0x20, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x90, + 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xe6, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x30, 0x0, + 0xf, 0xff, 0xff, 0xff, 0xff, 0x91, 0x0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe6, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfd, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0x0, 0xff, 0xff, 0xff, 0xff, 0xb2, 0x0, 0xf, + 0xff, 0xff, 0xfd, 0x40, 0x0, 0x0, 0xff, 0xff, + 0xf7, 0x0, 0x0, 0x0, 0xf, 0xff, 0xa1, 0x0, + 0x0, 0x0, 0x0, 0x6a, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+F04C "" */ + 0x14, 0x44, 0x20, 0x1, 0x44, 0x42, 0xd, 0xff, + 0xff, 0x10, 0xdf, 0xff, 0xf1, 0xff, 0xff, 0xf3, + 0xf, 0xff, 0xff, 0x3f, 0xff, 0xff, 0x40, 0xff, + 0xff, 0xf4, 0xff, 0xff, 0xf4, 0xf, 0xff, 0xff, + 0x4f, 0xff, 0xff, 0x40, 0xff, 0xff, 0xf4, 0xff, + 0xff, 0xf4, 0xf, 0xff, 0xff, 0x4f, 0xff, 0xff, + 0x40, 0xff, 0xff, 0xf4, 0xff, 0xff, 0xf4, 0xf, + 0xff, 0xff, 0x4f, 0xff, 0xff, 0x40, 0xff, 0xff, + 0xf4, 0xff, 0xff, 0xf4, 0xf, 0xff, 0xff, 0x4f, + 0xff, 0xff, 0x30, 0xff, 0xff, 0xf3, 0x9f, 0xff, + 0xc0, 0x9, 0xff, 0xfc, 0x0, + + /* U+F04D "" */ + 0x14, 0x44, 0x44, 0x44, 0x44, 0x42, 0xd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x4f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x9f, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0x0, + + /* U+F051 "" */ + 0x2, 0x10, 0x0, 0x0, 0x42, 0xf, 0xe2, 0x0, + 0x3, 0xfb, 0xf, 0xfe, 0x30, 0x4, 0xfb, 0xf, + 0xff, 0xf4, 0x4, 0xfb, 0xf, 0xff, 0xff, 0x54, + 0xfb, 0xf, 0xff, 0xff, 0xfa, 0xfb, 0xf, 0xff, + 0xff, 0xff, 0xfb, 0xf, 0xff, 0xff, 0xff, 0xfb, + 0xf, 0xff, 0xff, 0xd6, 0xfb, 0xf, 0xff, 0xfd, + 0x14, 0xfb, 0xf, 0xff, 0xc1, 0x4, 0xfb, 0xf, + 0xfb, 0x0, 0x4, 0xfb, 0xc, 0xa0, 0x0, 0x3, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F052 "" */ + 0x0, 0x0, 0x0, 0x12, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x2e, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x1, 0xef, + 0xff, 0xff, 0x40, 0x0, 0x0, 0x1d, 0xff, 0xff, + 0xff, 0xf3, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, + 0xfe, 0x20, 0xa, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0x3, 0x99, 0x99, 0x99, 0x99, 0x99, 0x50, 0x5, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x70, 0xf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0xb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd1, + + /* U+F053 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0x90, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, + 0xfd, 0x10, 0x0, 0x3f, 0xfd, 0x10, 0x0, 0x3f, + 0xfd, 0x10, 0x0, 0x1f, 0xfd, 0x10, 0x0, 0x0, + 0xcf, 0xf4, 0x0, 0x0, 0x0, 0xcf, 0xf4, 0x0, + 0x0, 0x0, 0xcf, 0xf4, 0x0, 0x0, 0x0, 0xcf, + 0xf4, 0x0, 0x0, 0x0, 0xcf, 0xe0, 0x0, 0x0, + 0x0, 0xa4, 0x0, + + /* U+F054 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcd, 0x10, 0x0, + 0x0, 0x1f, 0xfd, 0x10, 0x0, 0x0, 0x3f, 0xfd, + 0x10, 0x0, 0x0, 0x3f, 0xfd, 0x10, 0x0, 0x0, + 0x3f, 0xfd, 0x10, 0x0, 0x0, 0x3f, 0xfd, 0x0, + 0x0, 0x8, 0xff, 0x90, 0x0, 0x8, 0xff, 0x90, + 0x0, 0x8, 0xff, 0x90, 0x0, 0x8, 0xff, 0x90, + 0x0, 0x2, 0xff, 0x90, 0x0, 0x0, 0x7, 0x80, + 0x0, 0x0, 0x0, + + /* U+F067 "" */ + 0x0, 0x0, 0x4, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xf7, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf7, 0x0, 0x0, + 0x6, 0x99, 0x9a, 0xff, 0xc9, 0x99, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x3d, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf2, 0x1, 0x11, 0x3f, 0xf7, + 0x11, 0x10, 0x0, 0x0, 0x3, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xd3, 0x0, 0x0, 0x0, + + /* U+F068 "" */ + 0x69, 0x99, 0x99, 0x99, 0x99, 0x98, 0xf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf3, 0xdf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+F06E "" */ + 0x0, 0x0, 0x1, 0x56, 0x64, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xbf, 0xfe, 0xef, 0xf9, 0x10, 0x0, + 0x0, 0x7f, 0xfa, 0x10, 0x3, 0xdf, 0xe4, 0x0, + 0x8, 0xff, 0xa0, 0x9, 0xb4, 0x1e, 0xff, 0x50, + 0x4f, 0xff, 0x20, 0xb, 0xff, 0x26, 0xff, 0xe1, + 0xef, 0xff, 0x9, 0xcf, 0xff, 0x63, 0xff, 0xfa, + 0xbf, 0xff, 0x9, 0xff, 0xff, 0x54, 0xff, 0xf6, + 0x1e, 0xff, 0x51, 0xdf, 0xfb, 0x9, 0xff, 0xb0, + 0x3, 0xef, 0xe2, 0x4, 0x30, 0x5f, 0xfc, 0x10, + 0x0, 0x2c, 0xff, 0x95, 0x6a, 0xff, 0x90, 0x0, + 0x0, 0x0, 0x49, 0xdf, 0xfd, 0x92, 0x0, 0x0, + + /* U+F070 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcd, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0xf5, 0x0, 0x14, 0x66, 0x40, + 0x0, 0x0, 0x0, 0x4, 0xef, 0xac, 0xff, 0xef, + 0xff, 0x91, 0x0, 0x0, 0x0, 0x1c, 0xff, 0xa1, + 0x0, 0x4d, 0xfe, 0x30, 0x0, 0x0, 0x0, 0x9f, + 0xf5, 0xab, 0x31, 0xef, 0xf4, 0x0, 0x7, 0xb1, + 0x5, 0xff, 0xff, 0xe1, 0x7f, 0xfe, 0x10, 0xf, + 0xfe, 0x30, 0x2d, 0xff, 0xf5, 0x4f, 0xff, 0x90, + 0xc, 0xff, 0xe0, 0x0, 0xaf, 0xf6, 0x5f, 0xff, + 0x60, 0x2, 0xff, 0xf4, 0x0, 0x6, 0xff, 0xef, + 0xfb, 0x0, 0x0, 0x4f, 0xfd, 0x10, 0x0, 0x3e, + 0xff, 0xc0, 0x0, 0x0, 0x2, 0xdf, 0xe8, 0x54, + 0x1, 0xbf, 0xe3, 0x0, 0x0, 0x0, 0x5, 0xae, + 0xff, 0x60, 0x7, 0xff, 0x60, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4e, 0xf6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xa1, + + /* U+F071 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3e, 0xd0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xff, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xfc, 0xcf, + 0xf4, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xfb, 0x0, + 0xff, 0xd0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xc0, + 0xf, 0xff, 0x70, 0x0, 0x0, 0x4, 0xff, 0xfd, + 0x1, 0xff, 0xff, 0x10, 0x0, 0x0, 0xdf, 0xff, + 0xe0, 0x2f, 0xff, 0xfa, 0x0, 0x0, 0x7f, 0xff, + 0xff, 0x9b, 0xff, 0xff, 0xf3, 0x0, 0x1f, 0xff, + 0xff, 0xb0, 0xe, 0xff, 0xff, 0xc0, 0xa, 0xff, + 0xff, 0xfe, 0x24, 0xff, 0xff, 0xff, 0x60, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x6, + 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcb, 0x30, + + /* U+F074 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x36, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80, 0xdd, 0xdb, + 0x0, 0x0, 0x8d, 0xef, 0xf8, 0xff, 0xff, 0xb0, + 0x7, 0xff, 0xff, 0xfd, 0x55, 0x6f, 0xf4, 0x6f, + 0xf8, 0xaf, 0xe2, 0x0, 0x5, 0x74, 0xff, 0x90, + 0x7e, 0x20, 0x0, 0x0, 0x3f, 0xfa, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xef, 0xb2, 0x50, 0x4a, 0x0, + 0x1, 0x2e, 0xfd, 0x1d, 0xf4, 0x8f, 0xb0, 0xff, + 0xff, 0xd1, 0xb, 0xff, 0xff, 0xfb, 0xff, 0xfe, + 0x20, 0x0, 0xcf, 0xff, 0xfb, 0x12, 0x21, 0x0, + 0x0, 0x2, 0x9f, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5b, 0x0, + + /* U+F077 "" */ + 0x0, 0x0, 0x7, 0xa0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x8, 0xff, + 0xff, 0xb0, 0x0, 0x0, 0x8, 0xff, 0x95, 0xff, + 0xb0, 0x0, 0x8, 0xff, 0x90, 0x5, 0xff, 0xb0, + 0x7, 0xff, 0x90, 0x0, 0x5, 0xff, 0xb0, 0x9f, + 0x90, 0x0, 0x0, 0x5, 0xfd, 0x0, 0x40, 0x0, + 0x0, 0x0, 0x3, 0x10, + + /* U+F078 "" */ + 0x4c, 0x20, 0x0, 0x0, 0x0, 0xb6, 0xb, 0xfe, + 0x20, 0x0, 0x0, 0xcf, 0xf0, 0x2e, 0xfe, 0x20, + 0x0, 0xcf, 0xf4, 0x0, 0x2e, 0xfe, 0x20, 0xcf, + 0xf4, 0x0, 0x0, 0x2e, 0xfe, 0xcf, 0xf4, 0x0, + 0x0, 0x0, 0x2e, 0xff, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x2e, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x13, 0x0, 0x0, 0x0, + + /* U+F079 "" */ + 0x0, 0x8, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0xf3, 0x8, 0xbb, 0xbb, 0xbb, + 0x90, 0x0, 0xb, 0xff, 0xff, 0x39, 0xff, 0xff, + 0xff, 0xf1, 0x0, 0x8f, 0xcf, 0xcf, 0xf0, 0x0, + 0x0, 0xa, 0xf1, 0x0, 0x38, 0x2f, 0x94, 0x80, + 0x0, 0x0, 0xa, 0xf1, 0x0, 0x0, 0x2f, 0x90, + 0x0, 0x0, 0x0, 0xa, 0xf1, 0x0, 0x0, 0x2f, + 0x90, 0x0, 0x0, 0x3, 0xa, 0xf1, 0x30, 0x0, + 0x2f, 0x90, 0x0, 0x0, 0x1f, 0xcb, 0xf8, 0xf8, + 0x0, 0x2f, 0xeb, 0xbb, 0xbb, 0x39, 0xff, 0xff, + 0xe2, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xb0, 0x9f, + 0xfd, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xd1, 0x0, + + /* U+F07B "" */ + 0x37, 0x88, 0x87, 0x0, 0x0, 0x0, 0x0, 0xef, + 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xfd, 0xcc, 0xcc, 0xb6, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf9, + + /* U+F093 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xdd, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x1d, 0xff, 0xd1, 0x0, 0x0, 0x0, 0x1, 0xdf, + 0xff, 0xfd, 0x10, 0x0, 0x0, 0x1d, 0xff, 0xff, + 0xff, 0xd1, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, + 0xf9, 0x0, 0x0, 0x1, 0x1c, 0xff, 0xc1, 0x10, + 0x0, 0x0, 0x0, 0xc, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xff, 0xc0, 0x0, 0x0, 0x79, 0x99, + 0x3b, 0xff, 0xb3, 0x99, 0x97, 0xff, 0xff, 0xb2, + 0x44, 0x2b, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xdd, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xb3, 0xcf, 0xac, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, + 0xca, + + /* U+F095 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xc7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0xfd, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xff, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xef, 0xf3, 0x0, 0x0, 0x4a, 0x30, 0x2, + 0xdf, 0xf8, 0x0, 0x5, 0xdf, 0xfe, 0x15, 0xef, + 0xfb, 0x0, 0x0, 0xef, 0xff, 0xff, 0xff, 0xfa, + 0x0, 0x0, 0xb, 0xff, 0xff, 0xff, 0xf7, 0x0, + 0x0, 0x0, 0x7f, 0xff, 0xff, 0xa2, 0x0, 0x0, + 0x0, 0x2, 0xba, 0x85, 0x0, 0x0, 0x0, 0x0, + 0x0, + + /* U+F0C4 "" */ + 0x4, 0x86, 0x0, 0x0, 0x0, 0x10, 0x6, 0xff, + 0xfa, 0x0, 0x2, 0xdf, 0xd1, 0xef, 0x3c, 0xf1, + 0x1, 0xdf, 0xfa, 0xe, 0xe0, 0xaf, 0x21, 0xdf, + 0xfa, 0x0, 0x9f, 0xef, 0xf6, 0xdf, 0xfa, 0x0, + 0x0, 0x8d, 0xff, 0xff, 0xfb, 0x0, 0x0, 0x0, + 0x6, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x48, 0xef, + 0xff, 0xf6, 0x0, 0x0, 0x6f, 0xff, 0xfb, 0xff, + 0xf6, 0x0, 0xe, 0xf3, 0xcf, 0x23, 0xff, 0xf6, + 0x0, 0xee, 0xa, 0xf2, 0x4, 0xff, 0xf6, 0x9, + 0xfe, 0xfc, 0x0, 0x4, 0xff, 0xf1, 0x8, 0xda, + 0x10, 0x0, 0x2, 0x62, 0x0, + + /* U+F0C5 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0xf9, 0x87, 0x0, 0x0, 0x8, 0xff, + 0xff, 0x98, 0xf7, 0x8, 0xa6, 0x8f, 0xff, 0xf9, + 0x59, 0x90, 0xff, 0xa8, 0xff, 0xff, 0xfc, 0xcc, + 0xf, 0xfa, 0x8f, 0xff, 0xff, 0xff, 0xf1, 0xff, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xfa, 0x8f, + 0xff, 0xff, 0xff, 0xf1, 0xff, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0x1f, 0xfa, 0x8f, 0xff, 0xff, 0xff, + 0xf1, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xff, 0x1f, + 0xfa, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xe3, + 0x12, 0x22, 0x22, 0x21, 0xf, 0xff, 0xff, 0xff, + 0xf9, 0x0, 0x0, 0xac, 0xcc, 0xcc, 0xcb, 0x50, + 0x0, 0x0, + + /* U+F0C7 "" */ + 0x49, 0x99, 0x99, 0x99, 0x95, 0x0, 0xe, 0xff, + 0xff, 0xff, 0xff, 0xf6, 0x0, 0xfd, 0x22, 0x22, + 0x22, 0x4f, 0xf6, 0xf, 0xc0, 0x0, 0x0, 0x1, + 0xff, 0xf3, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0x6f, 0xc0, 0x0, 0x0, 0x2, 0xff, 0xf6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x6f, 0xff, 0xff, + 0xdc, 0xff, 0xff, 0xf6, 0xff, 0xff, 0xb0, 0x5, + 0xff, 0xff, 0x6f, 0xff, 0xf6, 0x0, 0xf, 0xff, + 0xf6, 0xff, 0xff, 0xc0, 0x6, 0xff, 0xff, 0x6f, + 0xff, 0xff, 0xed, 0xff, 0xff, 0xf6, 0x9f, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x10, + + /* U+F0E7 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, + 0xf0, 0x0, 0x4, 0xff, 0xff, 0xd0, 0x0, 0x6, + 0xff, 0xff, 0x80, 0x0, 0x8, 0xff, 0xff, 0x30, + 0x0, 0xa, 0xff, 0xff, 0xaa, 0xa6, 0xc, 0xff, + 0xff, 0xff, 0xf8, 0xe, 0xff, 0xff, 0xff, 0xe1, + 0xb, 0xdd, 0xdf, 0xff, 0x60, 0x0, 0x0, 0x4f, + 0xfd, 0x0, 0x0, 0x0, 0x7f, 0xf3, 0x0, 0x0, + 0x0, 0xbf, 0xa0, 0x0, 0x0, 0x0, 0xff, 0x10, + 0x0, 0x0, 0x3, 0xf8, 0x0, 0x0, 0x0, 0x3, + 0xc0, 0x0, 0x0, + + /* U+F0EA "" */ + 0x0, 0x0, 0x20, 0x0, 0x0, 0x0, 0x4, 0x55, + 0xef, 0xb5, 0x52, 0x0, 0x0, 0xff, 0xfd, 0x1f, + 0xff, 0xb0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfc, + 0x0, 0x0, 0xff, 0xff, 0x53, 0x33, 0x20, 0x0, + 0xf, 0xff, 0x97, 0xff, 0xfb, 0x57, 0x0, 0xff, + 0xf8, 0xaf, 0xff, 0xc6, 0xf8, 0xf, 0xff, 0x8a, + 0xff, 0xfc, 0x4a, 0xa1, 0xff, 0xf8, 0xaf, 0xff, + 0xe3, 0x22, 0xf, 0xff, 0x8a, 0xff, 0xff, 0xff, + 0xf4, 0xff, 0xf8, 0xaf, 0xff, 0xff, 0xff, 0x4f, + 0xff, 0x8a, 0xff, 0xff, 0xff, 0xf4, 0x35, 0x52, + 0xaf, 0xff, 0xff, 0xff, 0x40, 0x0, 0xa, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x7f, 0xff, 0xff, + 0xfe, 0x20, + + /* U+F0F3 "" */ + 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xaf, 0x0, 0x0, 0x0, 0x0, 0x1, 0x8f, + 0xfa, 0x30, 0x0, 0x0, 0x2, 0xef, 0xff, 0xff, + 0x50, 0x0, 0x0, 0xbf, 0xff, 0xff, 0xff, 0x10, + 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x3, + 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x5f, 0xff, + 0xff, 0xff, 0xf9, 0x0, 0x8, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0xdf, 0xff, 0xff, 0xff, 0xff, + 0x20, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x2, 0x22, + 0x22, 0x22, 0x22, 0x21, 0x0, 0x0, 0x8, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xa2, 0x0, + 0x0, 0x0, + + /* U+F111 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x8d, 0xff, 0xd8, 0x10, 0x0, 0x0, 0x4f, + 0xff, 0xff, 0xff, 0xf4, 0x0, 0x4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x40, 0xe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe0, 0x6f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf6, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x8f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf3, 0xa, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa0, 0x0, 0xcf, 0xff, 0xff, + 0xff, 0xfc, 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x15, 0x77, 0x51, 0x0, + 0x0, + + /* U+F11C "" */ + 0x5b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xa3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0xfc, 0xc, 0x30, 0xe1, 0x1d, 0xd, 0x11, 0xfc, + 0xfc, 0xb, 0x30, 0xe0, 0x1d, 0xd, 0x10, 0xfc, + 0xff, 0xfe, 0xff, 0xef, 0xfe, 0xfe, 0xef, 0xfc, + 0xff, 0xf1, 0x5a, 0x8, 0x70, 0xa0, 0x5f, 0xfc, + 0xff, 0xf3, 0x7b, 0x29, 0x92, 0xc2, 0x7f, 0xfc, + 0xff, 0xbf, 0xcb, 0xbb, 0xbb, 0xbf, 0xcb, 0xfc, + 0xfc, 0xb, 0x20, 0x0, 0x0, 0xd, 0x0, 0xfc, + 0xff, 0xcf, 0xcc, 0xcc, 0xcc, 0xcf, 0xcc, 0xfb, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + + /* U+F124 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xdf, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xef, 0xff, 0xd0, + 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, 0x70, + 0x0, 0x0, 0x29, 0xff, 0xff, 0xff, 0xff, 0x0, + 0x0, 0x3b, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, + 0xa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, + 0x4, 0x9a, 0xaa, 0xaf, 0xff, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xb3, 0x0, 0x0, 0x0, + + /* U+F15B "" */ + 0x35, 0x55, 0x55, 0x2, 0x0, 0xf, 0xff, 0xff, + 0xf2, 0xf4, 0x0, 0xff, 0xff, 0xff, 0x2f, 0xf4, + 0xf, 0xff, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xff, + 0xff, 0x32, 0x22, 0x1f, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0x8a, 0xaa, 0xaa, + 0xaa, 0xaa, 0x30, + + /* U+F1EB "" */ + 0x0, 0x0, 0x0, 0x24, 0x55, 0x31, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xaf, 0xff, 0xff, 0xff, 0xc7, + 0x0, 0x0, 0x2, 0xbf, 0xff, 0xfe, 0xde, 0xff, + 0xff, 0xf6, 0x0, 0x5f, 0xff, 0xb5, 0x10, 0x0, + 0x3, 0x8e, 0xff, 0xb0, 0xdf, 0xd3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0xf5, 0x18, 0x0, 0x5, + 0xae, 0xfe, 0xc8, 0x10, 0x4, 0x60, 0x0, 0x2, + 0xdf, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0xc, 0xff, 0x95, 0x34, 0x7d, 0xff, 0x40, 0x0, + 0x0, 0x2, 0xa2, 0x0, 0x0, 0x0, 0x77, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x96, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, + 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0xda, 0x0, 0x0, 0x0, 0x0, + + /* U+F240 "" */ + 0x5b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, + 0x20, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x90, 0xfc, 0x12, 0x22, 0x22, 0x22, 0x22, + 0x22, 0xf, 0xf7, 0xfc, 0x5f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x2c, 0xfa, 0xfc, 0x5f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x21, 0xfa, 0xfc, 0x5f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x27, 0xfa, 0xfc, 0x26, + 0x66, 0x66, 0x66, 0x66, 0x66, 0x1f, 0xfa, 0xfe, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbf, 0xb1, + 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+F241 "" */ + 0x5b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, + 0x20, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x90, 0xfc, 0x12, 0x22, 0x22, 0x22, 0x21, + 0x0, 0xf, 0xf7, 0xfc, 0x5f, 0xff, 0xff, 0xff, + 0xf8, 0x0, 0xc, 0xfa, 0xfc, 0x5f, 0xff, 0xff, + 0xff, 0xf8, 0x0, 0x1, 0xfa, 0xfc, 0x5f, 0xff, + 0xff, 0xff, 0xf8, 0x0, 0x7, 0xfa, 0xfc, 0x26, + 0x66, 0x66, 0x66, 0x63, 0x0, 0xf, 0xfa, 0xfe, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbf, 0xb1, + 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+F242 "" */ + 0x5b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, + 0x20, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x90, 0xfc, 0x12, 0x22, 0x22, 0x10, 0x0, + 0x0, 0xf, 0xf7, 0xfc, 0x5f, 0xff, 0xff, 0xd0, + 0x0, 0x0, 0xc, 0xfa, 0xfc, 0x5f, 0xff, 0xff, + 0xd0, 0x0, 0x0, 0x1, 0xfa, 0xfc, 0x5f, 0xff, + 0xff, 0xd0, 0x0, 0x0, 0x7, 0xfa, 0xfc, 0x26, + 0x66, 0x66, 0x50, 0x0, 0x0, 0xf, 0xfa, 0xfe, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbf, 0xb1, + 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+F243 "" */ + 0x5b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, + 0x20, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x90, 0xfc, 0x12, 0x22, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xf7, 0xfc, 0x5f, 0xff, 0x30, 0x0, + 0x0, 0x0, 0xc, 0xfa, 0xfc, 0x5f, 0xff, 0x30, + 0x0, 0x0, 0x0, 0x1, 0xfa, 0xfc, 0x5f, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x7, 0xfa, 0xfc, 0x26, + 0x66, 0x10, 0x0, 0x0, 0x0, 0xf, 0xfa, 0xfe, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbf, 0xb1, + 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+F244 "" */ + 0x5b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, + 0x20, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x90, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xf7, 0xfc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xfa, 0xfc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xfa, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xfa, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfa, 0xfe, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbf, 0xb1, + 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+F287 "" */ + 0x0, 0x0, 0x0, 0x0, 0x7, 0xb2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa, 0xdf, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa9, 0x3d, 0xf5, + 0x0, 0x0, 0x0, 0x4, 0x40, 0x2, 0xe0, 0x0, + 0x10, 0x0, 0x0, 0x0, 0xaf, 0xf8, 0xb, 0x60, + 0x0, 0x0, 0x0, 0x6c, 0x30, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xaf, 0xf9, + 0x0, 0xc, 0x50, 0x0, 0x0, 0x6d, 0x40, 0x5, + 0x50, 0x0, 0x4, 0xc0, 0x0, 0x0, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc4, 0x3e, 0xe8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0xef, 0xfa, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F293 "" */ + 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, 0x0, 0x7, + 0xef, 0xff, 0xb3, 0x0, 0x0, 0xaf, 0xfd, 0x8f, + 0xff, 0x20, 0x4, 0xff, 0xfd, 0x9, 0xff, 0xb0, + 0xa, 0xfe, 0xfd, 0x12, 0xaf, 0xf0, 0xe, 0xf5, + 0x5d, 0x2c, 0xe, 0xf3, 0xf, 0xff, 0x33, 0x12, + 0x9f, 0xf5, 0xf, 0xff, 0xf3, 0x7, 0xff, 0xf6, + 0xf, 0xff, 0xe2, 0x6, 0xff, 0xf6, 0xf, 0xfe, + 0x24, 0x13, 0x7f, 0xf5, 0xd, 0xf5, 0x7d, 0x2c, + 0xd, 0xf3, 0xa, 0xff, 0xfd, 0x11, 0xbf, 0xf0, + 0x3, 0xff, 0xfe, 0xb, 0xff, 0xa0, 0x0, 0x7f, + 0xfe, 0xbf, 0xfe, 0x10, 0x0, 0x3, 0xac, 0xdc, + 0x81, 0x0, + + /* U+F2ED "" */ + 0x0, 0x0, 0x34, 0x43, 0x0, 0x0, 0x5, 0x66, + 0x7f, 0xff, 0xf9, 0x66, 0x50, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x35, 0x66, 0x66, 0x66, 0x66, + 0x66, 0x50, 0x1c, 0xcc, 0xcc, 0xcc, 0xcc, 0xc4, + 0x2, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x2f, + 0xf3, 0xfb, 0x7f, 0x6d, 0xf6, 0x2, 0xff, 0x2f, + 0xb7, 0xf5, 0xdf, 0x60, 0x2f, 0xf2, 0xfb, 0x7f, + 0x5d, 0xf6, 0x2, 0xff, 0x2f, 0xb7, 0xf5, 0xdf, + 0x60, 0x2f, 0xf2, 0xfb, 0x7f, 0x5d, 0xf6, 0x2, + 0xff, 0x2f, 0xb7, 0xf5, 0xdf, 0x60, 0x2f, 0xf3, + 0xfb, 0x7f, 0x6d, 0xf6, 0x1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x50, 0x7, 0xbc, 0xcc, 0xcc, 0xcc, + 0x90, 0x0, + + /* U+F304 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0x50, 0x0, + 0x0, 0x0, 0x4, 0x39, 0xff, 0xfe, 0x0, 0x0, + 0x0, 0x4, 0xff, 0x39, 0xff, 0xa0, 0x0, 0x0, + 0x4, 0xff, 0xff, 0x39, 0xb0, 0x0, 0x0, 0x4, + 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x4, 0xff, + 0xff, 0xff, 0xb0, 0x0, 0x0, 0x4, 0xff, 0xff, + 0xff, 0xb0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, + 0xb0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0xd, 0xff, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, + 0x0, 0x9, 0xa8, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x0, + + /* U+F55A "" */ + 0x0, 0x0, 0x17, 0x88, 0x88, 0x88, 0x88, 0x87, + 0x40, 0x0, 0x2, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0x0, 0x3e, 0xff, 0xff, 0xcf, 0xff, + 0xcf, 0xff, 0xf7, 0x3, 0xef, 0xff, 0xf9, 0x8, + 0xf8, 0x9, 0xff, 0xf8, 0x3e, 0xff, 0xff, 0xfe, + 0x20, 0x40, 0x2e, 0xff, 0xf8, 0xdf, 0xff, 0xff, + 0xff, 0xe1, 0x1, 0xef, 0xff, 0xf8, 0x9f, 0xff, + 0xff, 0xff, 0x80, 0x0, 0x8f, 0xff, 0xf8, 0x9, + 0xff, 0xff, 0xf9, 0x2, 0xc2, 0x9, 0xff, 0xf8, + 0x0, 0x9f, 0xff, 0xfe, 0x4e, 0xfe, 0x4e, 0xff, + 0xf8, 0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf7, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc1, + + /* U+F7C2 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xef, + 0xff, 0xff, 0xe2, 0x3, 0xfb, 0xfb, 0xce, 0xbf, + 0xa4, 0xff, 0x1d, 0x3, 0xa1, 0xfa, 0xff, 0xf1, + 0xd0, 0x3a, 0x1f, 0xaf, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xaf, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xad, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0x29, 0xaa, 0xaa, + 0xaa, 0xa8, 0x0, + + /* U+F8A2 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xf1, 0x0, + 0x8, 0x20, 0x0, 0x0, 0x1, 0xff, 0x10, 0xb, + 0xf7, 0x0, 0x0, 0x0, 0x2f, 0xf1, 0xc, 0xff, + 0x94, 0x44, 0x44, 0x45, 0xff, 0x1b, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf1, 0x8f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x0, 0x7f, 0xf7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0 +}; + + +/*--------------------- + * GLYPH DESCRIPTION + *--------------------*/ + +static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { + {.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */, + {.bitmap_index = 0, .adv_w = 59, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 0, .adv_w = 58, .box_w = 2, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 11, .adv_w = 84, .box_w = 5, .box_h = 4, .ofs_x = 0, .ofs_y = 7}, + {.bitmap_index = 21, .adv_w = 156, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 76, .adv_w = 138, .box_w = 8, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 136, .adv_w = 186, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 202, .adv_w = 150, .box_w = 10, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 262, .adv_w = 45, .box_w = 2, .box_h = 4, .ofs_x = 0, .ofs_y = 7}, + {.bitmap_index = 266, .adv_w = 74, .box_w = 4, .box_h = 14, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 294, .adv_w = 74, .box_w = 4, .box_h = 14, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 322, .adv_w = 86, .box_w = 6, .box_h = 6, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 340, .adv_w = 129, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 368, .adv_w = 47, .box_w = 3, .box_h = 4, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 374, .adv_w = 86, .box_w = 5, .box_h = 1, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 377, .adv_w = 47, .box_w = 3, .box_h = 2, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 380, .adv_w = 75, .box_w = 7, .box_h = 14, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 429, .adv_w = 148, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 479, .adv_w = 81, .box_w = 4, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 501, .adv_w = 127, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 545, .adv_w = 126, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 589, .adv_w = 148, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 644, .adv_w = 127, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 688, .adv_w = 136, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 738, .adv_w = 132, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 782, .adv_w = 143, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 832, .adv_w = 136, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 876, .adv_w = 47, .box_w = 3, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 888, .adv_w = 47, .box_w = 3, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 903, .adv_w = 129, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 931, .adv_w = 129, .box_w = 8, .box_h = 4, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 947, .adv_w = 129, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 975, .adv_w = 127, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1014, .adv_w = 231, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 1112, .adv_w = 161, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1173, .adv_w = 169, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1223, .adv_w = 161, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1278, .adv_w = 185, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1333, .adv_w = 150, .box_w = 8, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1377, .adv_w = 142, .box_w = 8, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1421, .adv_w = 173, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1476, .adv_w = 182, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1526, .adv_w = 68, .box_w = 2, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1537, .adv_w = 112, .box_w = 7, .box_h = 11, .ofs_x = -1, .ofs_y = 0}, + {.bitmap_index = 1576, .adv_w = 159, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1626, .adv_w = 132, .box_w = 8, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1670, .adv_w = 214, .box_w = 11, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1731, .adv_w = 182, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1781, .adv_w = 188, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1847, .adv_w = 161, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1897, .adv_w = 188, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 1975, .adv_w = 162, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2025, .adv_w = 138, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2069, .adv_w = 129, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2113, .adv_w = 177, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2163, .adv_w = 156, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2218, .adv_w = 249, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2306, .adv_w = 147, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2356, .adv_w = 142, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2406, .adv_w = 146, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2456, .adv_w = 71, .box_w = 4, .box_h = 14, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 2484, .adv_w = 75, .box_w = 7, .box_h = 14, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 2533, .adv_w = 71, .box_w = 3, .box_h = 14, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 2554, .adv_w = 129, .box_w = 6, .box_h = 7, .ofs_x = 1, .ofs_y = 2}, + {.bitmap_index = 2575, .adv_w = 112, .box_w = 7, .box_h = 1, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 2579, .adv_w = 134, .box_w = 5, .box_h = 2, .ofs_x = 1, .ofs_y = 9}, + {.bitmap_index = 2584, .adv_w = 132, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2612, .adv_w = 152, .box_w = 8, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2656, .adv_w = 126, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2688, .adv_w = 152, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2738, .adv_w = 135, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2770, .adv_w = 76, .box_w = 6, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2803, .adv_w = 154, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 2853, .adv_w = 152, .box_w = 8, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2897, .adv_w = 60, .box_w = 2, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2908, .adv_w = 61, .box_w = 5, .box_h = 14, .ofs_x = -2, .ofs_y = -3}, + {.bitmap_index = 2943, .adv_w = 135, .box_w = 8, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2987, .adv_w = 60, .box_w = 2, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2998, .adv_w = 238, .box_w = 13, .box_h = 8, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3050, .adv_w = 152, .box_w = 8, .box_h = 8, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3082, .adv_w = 140, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3118, .adv_w = 152, .box_w = 8, .box_h = 11, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 3162, .adv_w = 152, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 3212, .adv_w = 90, .box_w = 5, .box_h = 8, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3232, .adv_w = 110, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3260, .adv_w = 91, .box_w = 6, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3290, .adv_w = 151, .box_w = 8, .box_h = 8, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3322, .adv_w = 121, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3354, .adv_w = 197, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3406, .adv_w = 120, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3438, .adv_w = 121, .box_w = 9, .box_h = 11, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 3488, .adv_w = 114, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3516, .adv_w = 75, .box_w = 5, .box_h = 14, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 3551, .adv_w = 66, .box_w = 2, .box_h = 14, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 3565, .adv_w = 75, .box_w = 4, .box_h = 14, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 3593, .adv_w = 129, .box_w = 8, .box_h = 2, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 3601, .adv_w = 59, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3601, .adv_w = 58, .box_w = 2, .box_h = 11, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 3612, .adv_w = 126, .box_w = 8, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 3660, .adv_w = 143, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3710, .adv_w = 157, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3760, .adv_w = 156, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3815, .adv_w = 66, .box_w = 2, .box_h = 14, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 3829, .adv_w = 110, .box_w = 7, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 3871, .adv_w = 134, .box_w = 5, .box_h = 3, .ofs_x = 2, .ofs_y = 9}, + {.bitmap_index = 3879, .adv_w = 181, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3940, .adv_w = 90, .box_w = 5, .box_h = 5, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 3953, .adv_w = 107, .box_w = 7, .box_h = 6, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 3974, .adv_w = 129, .box_w = 8, .box_h = 4, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 3990, .adv_w = 86, .box_w = 5, .box_h = 1, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 3993, .adv_w = 181, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4054, .adv_w = 134, .box_w = 5, .box_h = 1, .ofs_x = 2, .ofs_y = 10}, + {.bitmap_index = 4057, .adv_w = 94, .box_w = 6, .box_h = 5, .ofs_x = 0, .ofs_y = 6}, + {.bitmap_index = 4072, .adv_w = 129, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4108, .adv_w = 96, .box_w = 6, .box_h = 5, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 4123, .adv_w = 96, .box_w = 6, .box_h = 5, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 4138, .adv_w = 134, .box_w = 4, .box_h = 2, .ofs_x = 3, .ofs_y = 9}, + {.bitmap_index = 4142, .adv_w = 152, .box_w = 8, .box_h = 11, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 4186, .adv_w = 142, .box_w = 8, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 4238, .adv_w = 56, .box_w = 2, .box_h = 2, .ofs_x = 1, .ofs_y = 3}, + {.bitmap_index = 4240, .adv_w = 134, .box_w = 4, .box_h = 5, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 4250, .adv_w = 96, .box_w = 5, .box_h = 5, .ofs_x = 1, .ofs_y = 5}, + {.bitmap_index = 4263, .adv_w = 93, .box_w = 6, .box_h = 5, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 4278, .adv_w = 107, .box_w = 6, .box_h = 6, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 4296, .adv_w = 230, .box_w = 13, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 4368, .adv_w = 230, .box_w = 13, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4440, .adv_w = 230, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 4517, .adv_w = 127, .box_w = 7, .box_h = 10, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 4552, .adv_w = 161, .box_w = 11, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4629, .adv_w = 161, .box_w = 11, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4706, .adv_w = 161, .box_w = 11, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4783, .adv_w = 161, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4855, .adv_w = 161, .box_w = 11, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4932, .adv_w = 161, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5015, .adv_w = 231, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5092, .adv_w = 161, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 5162, .adv_w = 150, .box_w = 8, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5218, .adv_w = 150, .box_w = 8, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5274, .adv_w = 150, .box_w = 8, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5330, .adv_w = 150, .box_w = 8, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5386, .adv_w = 68, .box_w = 5, .box_h = 14, .ofs_x = -1, .ofs_y = 0}, + {.bitmap_index = 5421, .adv_w = 68, .box_w = 4, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5449, .adv_w = 68, .box_w = 6, .box_h = 14, .ofs_x = -1, .ofs_y = 0}, + {.bitmap_index = 5491, .adv_w = 68, .box_w = 4, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5519, .adv_w = 186, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5580, .adv_w = 182, .box_w = 9, .box_h = 13, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5639, .adv_w = 188, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5723, .adv_w = 188, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5807, .adv_w = 188, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5891, .adv_w = 188, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5969, .adv_w = 188, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6053, .adv_w = 129, .box_w = 6, .box_h = 6, .ofs_x = 1, .ofs_y = 2}, + {.bitmap_index = 6071, .adv_w = 188, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6149, .adv_w = 177, .box_w = 9, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 6212, .adv_w = 177, .box_w = 9, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 6275, .adv_w = 177, .box_w = 9, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 6338, .adv_w = 177, .box_w = 9, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 6401, .adv_w = 142, .box_w = 9, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6464, .adv_w = 161, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 6514, .adv_w = 150, .box_w = 8, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 6558, .adv_w = 132, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6597, .adv_w = 132, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6636, .adv_w = 132, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6675, .adv_w = 132, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6714, .adv_w = 132, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6753, .adv_w = 132, .box_w = 7, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6795, .adv_w = 221, .box_w = 14, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6851, .adv_w = 126, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 6895, .adv_w = 135, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6939, .adv_w = 135, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6983, .adv_w = 135, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7027, .adv_w = 135, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7071, .adv_w = 60, .box_w = 4, .box_h = 11, .ofs_x = -1, .ofs_y = 0}, + {.bitmap_index = 7093, .adv_w = 60, .box_w = 5, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7121, .adv_w = 60, .box_w = 5, .box_h = 11, .ofs_x = -1, .ofs_y = 0}, + {.bitmap_index = 7149, .adv_w = 60, .box_w = 4, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7171, .adv_w = 142, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7221, .adv_w = 152, .box_w = 8, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 7265, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7315, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7365, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7415, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7465, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7515, .adv_w = 129, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 7551, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7596, .adv_w = 151, .box_w = 8, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 7640, .adv_w = 151, .box_w = 8, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 7684, .adv_w = 151, .box_w = 8, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 7728, .adv_w = 151, .box_w = 8, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 7772, .adv_w = 121, .box_w = 9, .box_h = 14, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 7835, .adv_w = 152, .box_w = 8, .box_h = 14, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 7891, .adv_w = 121, .box_w = 9, .box_h = 14, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 7954, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 8067, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 8144, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8235, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 8312, .adv_w = 154, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 8367, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 8472, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 8577, .adv_w = 252, .box_w = 16, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8681, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 8786, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 8874, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 8979, .adv_w = 112, .box_w = 7, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9021, .adv_w = 168, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9087, .adv_w = 252, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9199, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 9276, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 9346, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9444, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9529, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9614, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 9684, .adv_w = 196, .box_w = 14, .box_h = 13, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 9775, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9834, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9893, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9978, .adv_w = 196, .box_w = 13, .box_h = 4, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 10004, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 10092, .adv_w = 280, .box_w = 18, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10227, .adv_w = 252, .box_w = 17, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 10355, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10446, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 10498, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 10550, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 10649, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 10726, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10831, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 10944, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11029, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11127, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11212, .adv_w = 140, .box_w = 10, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 11287, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11385, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11483, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11588, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 11676, .adv_w = 224, .box_w = 16, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 11796, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11879, .adv_w = 280, .box_w = 18, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11996, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12086, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12176, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12266, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12356, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12446, .adv_w = 280, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12554, .adv_w = 196, .box_w = 12, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12644, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12742, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 12855, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12954, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13037, .adv_w = 225, .box_w = 15, .box_h = 10, .ofs_x = 0, .ofs_y = 0} +}; + +/*--------------------- + * CHARACTER MAPPING + *--------------------*/ + +static const uint16_t unicode_list_2[] = { + 0x0, 0x7, 0xa, 0xb, 0xc, 0x10, 0x12, 0x14, + 0x18, 0x1b, 0x20, 0x25, 0x26, 0x27, 0x3d, 0x47, + 0x4a, 0x4b, 0x4c, 0x50, 0x51, 0x52, 0x53, 0x66, + 0x67, 0x6d, 0x6f, 0x70, 0x73, 0x76, 0x77, 0x78, + 0x7a, 0x92, 0x94, 0xc3, 0xc4, 0xc6, 0xe6, 0xe9, + 0xf2, 0x110, 0x11b, 0x123, 0x15a, 0x1ea, 0x23f, 0x240, + 0x241, 0x242, 0x243, 0x286, 0x292, 0x2ec, 0x303, 0x559, + 0x7c1, 0x8a1 +}; + +/*Collect the unicode lists and glyph_id offsets*/ +static const lv_font_fmt_txt_cmap_t cmaps[] = +{ + { + .range_start = 32, .range_length = 95, .glyph_id_start = 1, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + }, + { + .range_start = 160, .range_length = 96, .glyph_id_start = 96, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + }, + { + .range_start = 61441, .range_length = 2210, .glyph_id_start = 192, + .unicode_list = unicode_list_2, .glyph_id_ofs_list = NULL, .list_length = 58, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + } +}; + +/*----------------- + * KERNING + *----------------*/ + + +/*Map glyph_ids to kern left classes*/ +static const uint8_t kern_left_class_mapping[] = +{ + 0, 0, 1, 2, 0, 3, 4, 5, + 2, 6, 7, 8, 9, 10, 9, 10, + 11, 12, 0, 13, 14, 15, 16, 17, + 18, 19, 12, 20, 20, 0, 0, 0, + 21, 22, 23, 24, 25, 22, 26, 27, + 28, 29, 29, 30, 31, 32, 29, 29, + 22, 33, 34, 35, 3, 36, 30, 37, + 37, 38, 39, 40, 41, 42, 43, 0, + 44, 0, 45, 46, 47, 48, 49, 50, + 51, 45, 52, 52, 53, 48, 45, 45, + 46, 46, 54, 55, 56, 57, 51, 58, + 58, 59, 58, 60, 41, 0, 0, 9, + 0, 61, 47, 62, 63, 64, 0, 65, + 0, 22, 8, 66, 0, 9, 22, 0, + 67, 0, 0, 0, 0, 51, 29, 9, + 0, 0, 8, 9, 0, 0, 0, 68, + 23, 23, 23, 23, 23, 23, 26, 25, + 26, 26, 26, 26, 29, 29, 29, 29, + 22, 29, 22, 22, 22, 22, 22, 0, + 22, 30, 30, 30, 30, 39, 69, 46, + 45, 45, 45, 45, 45, 45, 49, 47, + 49, 49, 49, 49, 51, 51, 70, 51, + 71, 45, 46, 46, 46, 46, 46, 9, + 46, 51, 51, 51, 51, 58, 46, 58, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0 +}; + +/*Map glyph_ids to kern right classes*/ +static const uint8_t kern_right_class_mapping[] = +{ + 0, 0, 1, 2, 0, 3, 4, 5, + 2, 6, 7, 8, 9, 10, 9, 10, + 11, 12, 13, 14, 15, 16, 17, 12, + 18, 19, 20, 21, 21, 0, 0, 0, + 22, 23, 24, 25, 23, 25, 25, 25, + 23, 25, 25, 26, 25, 25, 25, 25, + 23, 25, 23, 25, 3, 27, 28, 29, + 29, 30, 31, 32, 33, 34, 35, 0, + 36, 0, 37, 38, 39, 39, 39, 0, + 39, 38, 40, 41, 38, 38, 42, 42, + 39, 42, 39, 42, 43, 44, 45, 46, + 46, 47, 46, 48, 0, 0, 35, 9, + 0, 49, 39, 50, 51, 52, 0, 53, + 0, 23, 8, 9, 9, 9, 23, 0, + 54, 0, 0, 0, 0, 42, 55, 9, + 0, 0, 8, 56, 0, 0, 0, 57, + 24, 24, 24, 24, 24, 24, 24, 23, + 25, 25, 25, 25, 25, 25, 25, 25, + 25, 25, 23, 23, 23, 23, 23, 0, + 23, 28, 28, 28, 28, 31, 25, 38, + 37, 37, 37, 37, 37, 37, 37, 39, + 39, 39, 39, 39, 58, 42, 59, 60, + 39, 42, 39, 39, 39, 39, 39, 9, + 39, 45, 45, 45, 45, 46, 38, 46, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0 +}; + +/*Kern values between classes*/ +static const int8_t kern_class_values[] = +{ + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, + 0, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 10, 0, 6, + -6, 0, 0, 0, 0, -12, -13, 2, + 11, 6, 4, -9, 2, 12, 1, 10, + 2, 8, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 13, 1, -2, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -4, 4, + 0, 4, 11, 0, -11, 0, 0, 0, + 0, -7, 0, 0, 0, 0, 0, -4, + 4, 4, 0, 0, -2, 0, -2, 2, + 0, -2, 0, -2, -1, -4, 0, 0, + 0, 0, -2, 0, 0, -3, -3, 0, + 0, -2, 0, -4, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -2, -2, 0, + 0, 0, 0, 0, 0, -3, 0, 0, + -2, 0, 0, 0, 0, -6, 0, -27, + 0, 0, -4, 0, 4, 7, 0, 0, + -4, 2, 2, 8, 4, -4, 4, 0, + 0, -13, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -9, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -6, 0, 0, 0, 0, 0, 0, + -2, -12, 0, -9, -2, 0, 0, 0, + 0, 1, 10, 0, -7, -1, 0, 0, + 0, -4, 0, 0, -1, -17, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -18, -1, 10, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + -2, 0, 0, 0, 0, -8, -9, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 7, 0, + 2, 0, 0, -4, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 8, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -9, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 4, 2, 7, + -2, 0, 0, 4, -2, -7, -31, 2, + 6, 4, 1, -3, 0, 9, 0, 8, + 0, 8, 0, -21, 0, -2, 7, 0, + 8, -2, 4, 2, 0, 0, 0, -2, + 0, 0, -4, 18, 0, 18, 0, 7, + 0, 10, 3, 4, 0, 0, 2, 0, + 0, 7, 9, 3, -19, 18, 18, 18, + 0, 0, 0, -9, 0, 0, 0, 0, + 0, -1, 0, 2, -4, -3, -4, 2, + 0, -2, 0, 0, 0, -9, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, -5, 2, 0, -20, -2, + 0, 0, 0, 0, 0, -12, 0, -14, + 0, 0, 0, 0, -1, 0, 23, -2, + -3, 2, 2, -3, 0, -3, 2, 0, + 0, -12, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -22, 0, 2, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -2, -7, + 0, -14, -27, 0, 2, 0, 0, 0, + 0, 13, 0, 0, -9, 0, 7, 0, + -15, -22, -15, -4, 7, 0, 0, -15, + 0, 3, -5, 0, -3, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 7, 7, -28, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + -15, -2, 0, 9, -4, 11, 0, -12, + -17, 0, 0, 0, 0, 2, 0, 0, + 0, 0, 0, 2, 2, -2, -4, 0, + 0, 0, -2, 0, 0, -2, 0, 0, + 0, -4, 0, -2, 0, -5, -4, 0, + -6, -7, -7, -5, 0, -4, 0, -4, + 0, 0, 0, 0, -2, 0, 0, 2, + 0, 2, -2, 0, 0, 0, 0, -2, + 0, 1, 0, 0, -7, 0, 0, 0, + 0, 0, 0, 2, -2, 0, 0, 0, + -2, 2, 2, -1, 0, 0, 0, -5, + 0, -1, 0, 0, 0, 0, 0, 0, + 0, 3, -2, 0, -2, 0, -4, 0, + 0, -2, 0, 7, 0, 0, -2, 0, + 0, 0, 0, 0, -1, 1, -2, -2, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -2, 0, -2, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -1, -1, 0, -2, -3, 0, 0, + 0, 0, 0, 1, 0, 0, -1, 0, + -2, -2, -2, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -1, 0, 0, 0, + 0, -1, -3, 0, 0, 0, 0, 0, + 0, -3, 0, 0, 0, 0, 0, 0, + 0, -7, -2, -7, 4, 0, 0, -4, + 2, 4, 6, 0, -6, -1, -3, 0, + -1, -11, 2, -2, 1, -12, 2, 0, + 0, 0, -11, 0, -12, -2, -19, -2, + 0, -11, 0, 4, 6, 0, 3, 0, + 0, 0, 0, 0, 0, -3, -3, 0, + 0, 2, 2, -2, 4, -7, -3, 0, + 2, 0, 0, 0, 0, 0, 0, -2, + 0, 0, 0, -2, 0, 0, 0, 0, + 0, -1, -1, 0, -1, -3, 0, 0, + 0, 0, 0, 0, 0, -2, -2, 0, + -1, -2, -2, 0, 0, -2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -2, -2, 0, 0, 0, 0, 0, + 0, -3, 0, 0, 0, 0, 0, 0, + 0, -2, 0, -4, 2, 0, 0, -3, + 1, 2, 2, 0, 0, 0, 0, 0, + 0, -2, 0, 0, 0, 0, 0, 2, + 0, 0, -2, 0, -2, -2, -3, 0, + 0, 0, 0, 0, 0, 0, 2, 0, + -2, 0, 0, 0, 0, -2, -3, 0, + 0, 0, 2, 0, 4, -5, 0, 0, + 0, 0, 0, 0, 0, 7, -2, 0, + -8, 0, 0, 6, -11, -12, -10, -4, + 2, 0, -2, -15, -4, 0, -4, 0, + -4, 3, -4, -15, 0, -6, 0, 0, + 1, -1, 2, -2, 0, 2, -1, -7, + -9, 0, -11, -6, -5, -6, -7, -3, + -6, -1, -5, -7, -6, -3, -4, 3, + -2, 1, 6, -4, -15, -6, -6, -6, + 0, 1, 0, -2, 0, 0, 0, 2, + 0, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -2, 0, -1, + 0, -1, -2, 0, -4, -5, -5, -1, + 0, -7, 0, 0, 0, 0, 0, 0, + -2, 0, 0, 0, 0, 1, -1, 0, + 0, 0, 0, -2, 2, 0, 0, 0, + -4, 0, 0, 0, 0, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 10, 0, + 0, 0, 0, 0, 0, 2, 0, 0, + 0, -2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -4, 0, 2, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -9, + 0, 0, 0, 0, 0, 0, 0, 0, + -2, 0, 0, 0, -5, 0, 0, 0, + 0, -11, -7, 0, 0, 0, -3, -11, + 0, 0, -2, 2, 0, -7, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + -4, 0, 0, -5, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + -2, 0, 0, -3, 0, 2, 0, 2, + -25, 0, 0, 0, 0, -4, 0, 0, + 0, 0, 3, 0, 2, -4, -4, 0, + -2, -2, -2, 0, 0, 0, 0, 0, + 0, -7, 0, -2, 0, -3, -2, 0, + -5, -6, -7, -2, 0, -4, 0, -7, + 0, 0, 0, 0, 18, 0, 0, 1, + 0, 0, -3, 0, 0, 0, 0, 0, + 0, 2, 0, 0, -4, 0, 0, 0, + 0, -10, 0, 0, 0, 0, 0, -21, + -3, 8, 7, -2, -9, 0, 2, -3, + 0, -11, -1, -3, 2, -16, -2, 2, + 0, 3, -8, -3, -8, -7, -9, 0, + 0, -13, 0, 13, 0, 0, -1, 0, + 0, 0, -1, -1, -2, -6, -7, 0, + 2, 0, 0, 0, 0, -21, -18, 3, + 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -2, 0, + -1, -2, -3, 0, 0, -4, 0, -2, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -1, 0, -4, 0, 0, 4, + 0, 3, 0, -5, 2, -2, -1, -7, + -2, 0, -3, -2, -1, 0, -3, -4, + 0, 0, -2, 0, -2, -4, -3, 0, + 0, -2, 0, 2, -2, 0, -5, 0, + 0, 0, -4, 0, -4, 0, -4, -4, + -2, 0, 0, 0, -2, 2, 2, 0, + -3, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -4, 2, 0, -4, + 0, -2, -3, -9, -2, -2, -2, -1, + -2, -3, -1, 0, 0, 0, 0, 0, + -2, -2, -2, 0, 0, 0, 0, 3, + -2, 0, -2, 0, 0, 0, -2, -3, + -2, -2, -3, -2, -2, 0, 0, 0, + -2, 0, 0, 0, 0, 0, 0, 0, + 1, 9, -1, 0, -7, 0, -2, 4, + 0, -2, -10, -3, 3, 0, 0, -11, + -4, 2, -4, 1, 0, -3, -2, -7, + 0, -3, 1, 0, 0, -4, 0, 0, + 0, 2, 2, -4, -5, 0, -4, -2, + -3, -2, -2, 0, -4, 1, -5, -4, + -2, 0, 0, 0, -2, 7, 2, -3, + -11, -2, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -2, -2, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -3, 0, 0, -3, 0, + 0, -2, -2, 0, 0, 0, 0, -2, + 0, 0, 0, 0, -1, 0, 0, 0, + 0, 0, -2, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -2, 0, 0, 0, + 0, 0, -3, 0, -4, 0, 0, 0, + -7, 0, 2, -5, 4, 0, -2, -11, + 0, 0, -5, -2, 0, -9, -6, -6, + 0, 0, -9, -2, -9, -8, -11, 0, + -7, 0, 1, 15, -3, 0, -5, -2, + -1, -2, -4, -6, -4, -8, -9, -5, + 0, 0, 0, 0, 0, -2, -1, 0, + 0, -2, -2, -2, 0, 0, -2, 0, + 0, 0, 0, -16, -3, 7, 6, -6, + -9, 0, 0, -9, 0, -11, -2, -2, + 4, -21, -3, 0, 0, 0, -15, -3, + -12, -2, -17, 0, 0, -16, 0, 14, + 0, 0, -2, 0, 0, 0, 0, -1, + -2, -9, -2, 0, 0, 0, 0, 0, + 0, -15, -17, 2, 0, 0, 0, 0, + 0, 0, 0, 0, -7, 0, -2, 0, + 0, -6, -11, 0, 0, -1, -3, -7, + -2, 0, -1, 0, 0, 0, 0, -10, + -2, -8, -7, -1, -4, -6, -2, -4, + 0, -4, -2, -7, -3, 0, -3, -5, + -2, -5, 0, 1, 0, -2, -8, 0, + 0, 0, 0, 0, 0, 4, 0, 0, + -12, -5, -5, -5, 0, -4, 0, 0, + 0, 0, 3, 0, 2, -4, 8, 0, + -2, -2, -2, 0, 0, 0, 0, 0, + 0, -7, 0, -2, 0, -3, -2, 0, + -5, -6, -7, -2, 0, -4, 1, 9, + 0, 0, 0, 0, 18, 0, 0, 1, + 0, 0, -3, 0, 0, 0, 0, 0, + 0, 2, 0, 0, -4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -2, -4, + 0, 0, 0, 0, 0, -1, 0, 0, + 0, -2, -2, 0, 0, -4, -2, 0, + 0, -4, 0, 4, -1, 0, 0, 0, + 0, 0, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 3, 0, 0, + -2, 0, 0, 0, 4, 1, -2, 0, + -8, -4, 0, 7, -7, -7, -4, -4, + 9, 3, 2, -20, -1, 4, -2, 0, + -2, 2, -2, -8, 0, -2, 2, -3, + -1, -7, -1, 0, 0, 7, 4, 0, + -6, 0, -12, -3, 5, -3, -9, 0, + -3, -8, -8, -2, -4, 0, 0, 0, + 0, 9, 7, -3, -13, 4, 7, 3, + 2, 0, -3, 0, -6, 0, 1, 8, + -5, -8, -9, -6, 7, 0, 0, -16, + -2, 2, -4, -1, -5, 0, -5, -8, + -3, -3, -1, 0, 0, -5, -4, -2, + 0, 7, 5, -2, -12, 0, -12, -4, + 0, -8, -13, 0, -7, -4, -8, -6, + -7, 0, 0, 0, 0, 6, 6, -3, + -16, 4, 7, 3, 0, 0, -3, 0, + -4, -2, 0, -2, -4, 0, 4, -7, + 2, 0, 0, -12, 0, -2, -5, -4, + -1, -7, -6, -7, -5, 0, -7, -2, + -5, -5, -7, -2, 0, 0, 0, 11, + -4, 0, -7, -2, 0, -2, -4, -5, + -6, -6, -8, -3, -2, 0, 0, 0, + 0, -4, 0, -1, 0, -2, -2, -2, + 4, 0, -3, 0, -11, -3, 1, 4, + -7, -8, -4, -7, 7, -2, 1, -21, + -4, 4, -5, -4, -8, 0, -7, -9, + -3, -2, -1, -2, -4, -7, 0, 0, + 0, 7, 6, -2, -15, 0, -13, -6, + 4, -9, -15, -4, -8, -9, -11, -7, + -9, 0, 0, 0, -4, 4, 6, -3, + -19, 7, 6, 4, 0, 0, 0, 0, + -3, 0, 0, 2, -3, 4, 2, -5, + 4, 0, 0, -9, -1, 0, -1, 0, + 0, 0, -2, 0, 0, 0, 0, 0, + 0, -2, 0, 0, 0, 0, 1, 7, + 0, 0, -3, 0, 0, 0, 0, -2, + -2, -3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 0, 0, 0, 0, 1, 0, + -2, 0, 8, 0, 3, 0, 0, -3, + 0, 4, 0, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 7, 0, 6, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -13, 0, -2, + 4, 0, 7, 0, 0, 23, 3, -4, + -4, 2, 2, -2, 0, -11, 0, 0, + 10, -13, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -15, 8, 31, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 9, 0, 0, 0, + 7, -13, -7, 2, 7, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -4, 0, 0, -5, -2, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -2, 0, -6, + 0, 0, 0, 0, 0, 2, 30, -4, + -2, 8, 6, -6, 2, 0, 0, 2, + 2, -2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -29, 6, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 4, -2, -2, + 6, 0, -18, 2, 0, 0, 0, 0, + 0, 0, 0, -6, 0, 0, 0, -6, + 0, 0, 0, 0, -5, -1, 0, 0, + 0, -5, 0, -3, 0, -11, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -2, 0, 0, + 0, 0, 0, 0, 0, -5, -6, 0, + 0, 0, 0, 0, 0, -3, 0, -6, + 0, 0, 0, -4, 2, -3, 0, 0, + -6, -2, -5, 0, 0, -6, 0, -2, + 0, -11, 0, -2, 0, 0, -19, -5, + -9, -2, -8, 0, 0, -15, 0, -6, + -1, 0, 0, 0, 0, 0, 0, 0, + 0, -3, -4, -2, 0, 0, 0, 0, + 0, -4, -5, 0, -2, 0, 0, 0, + 0, 0, 0, 0, -6, 0, -5, 3, + -2, 4, 0, -2, -5, -2, -4, -5, + 0, -3, -1, -2, 1, -6, 0, 0, + 0, 0, -21, -1, -2, 0, -3, 0, + -2, -11, -2, 0, 0, -2, -2, 0, + 0, 0, 0, 1, 0, -2, -4, -2, + 0, 0, 0, 0, -2, 4, 0, 0, + -2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -6, 0, -2, 0, 0, 0, -4, + 2, 0, 0, 0, -6, -2, -4, 0, + 0, -6, 0, -2, 0, -11, 0, 0, + 0, 0, -22, 0, -4, -8, -11, 0, + 0, -15, 0, -1, -3, 0, 0, 0, + 0, 0, 0, 0, 0, -2, -3, -1, + 0, 0, 0, 0, 0, -3, -4, 0, + -2, 0, 0, 0, 0, 0, 0, 4, + -3, 0, 6, 12, -2, -2, -7, 3, + 12, 4, 6, -6, 3, 10, 3, 7, + 6, 6, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 14, 11, -3, + -2, 0, -2, 18, 9, 18, 0, 0, + 0, 2, 0, 0, 0, 0, 0, 0, + 0, 9, 10, 0, -3, 15, 10, 13, + 0, 0, -4, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -2, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 0, 0, + 0, 0, -21, -3, -1, -10, -12, 0, + 0, -15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -4, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + -2, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 0, 0, 0, 0, -21, -3, + -1, -10, -12, 0, 0, -11, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -1, 0, 0, 0, + -5, 2, 0, -2, 1, 3, 2, -7, + 0, -1, -2, 2, 0, 1, 0, 0, + 0, 0, -7, 0, -2, -2, -4, 0, + -2, -9, 0, 15, -2, 0, -5, -2, + 0, -2, -4, 0, -2, -6, -4, -2, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -2, -2, -2, 0, 0, -4, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + -2, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 0, 0, 0, 0, -21, -3, + -1, -10, -12, 0, 0, -15, 0, 0, + 0, 0, 0, 0, 11, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -4, 0, -8, -3, -2, 7, + -2, -2, -9, 0, -2, 0, -2, -7, + 0, 5, 0, 1, 0, 1, -6, -9, + -3, 0, -10, -5, -6, -10, -9, 0, + -4, -4, -3, -3, -2, -2, -3, -2, + 0, -2, -1, 3, 0, 3, -2, 0, + 0, 0, 0, 0, 2, 6, 7, 0, + -9, -2, -2, -2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + -2, -2, -2, 0, 0, -6, 0, -1, + 0, -4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -13, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -2, -2, 0, 0, 0, 0, 0, + 0, -3, -5, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -2, 0, 0, -4, + -2, 2, 0, -4, -5, -2, 0, -7, + -2, -6, -1, -3, 0, -4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -15, 0, 8, 0, 0, -4, 0, + 0, 0, 0, -3, 0, -2, 0, 0, + 0, 0, 0, 0, -2, -1, -4, 0, + 0, 0, 0, 0, 0, 0, -2, 0, + -5, 0, 0, 10, -3, -8, -6, 2, + 2, 2, -1, -6, 2, 3, 2, 7, + 2, 7, -2, -6, 0, 0, -11, 0, + 0, -7, -6, 0, 0, -4, 0, -3, + -4, 0, -3, 0, -3, 0, -1, 3, + 0, -1, -7, -2, 0, 0, 0, 0, + 0, 9, 7, 0, -7, 0, 0, 0, + 0, 0, -2, 0, -4, 0, 0, 3, + -5, 0, 2, -2, 1, -1, 0, -7, + 0, -2, 0, 0, -2, 2, -1, 0, + 0, 0, -11, -3, -5, 0, -7, 0, + 0, -11, 0, 9, -2, 0, -4, 0, + 0, 0, -2, 0, -2, -7, 0, -2, + 0, 0, 0, 0, 0, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + -2, 0, 0, 2, -3, 0, 0, 0, + -3, -2, 0, -3, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -15, 0, 6, + 0, 0, -2, 0, 0, 0, 0, 0, + 0, -2, -2, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 9, 0, -4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -12, 0, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -4, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -2, 0, + -9, 0, 0, 7, -7, 0, 2, -9, + 4, -2, -2, -9, -3, 2, -8, -4, + -7, 0, -3, -10, 0, -4, 0, 0, + 0, -2, 2, 0, 0, 4, 0, 4, + -9, 0, -7, -4, -6, -4, -9, -4, + -6, -4, -6, -9, -6, 0, 0, 0, + -2, 0, 3, -3, -5, -4, 6, 1, + 0, 0, 0, 0, 0, 0, 0, 0, + 2, -2, 0, 0, 0, -2, 0, 0, + 0, -3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + -2, 0, 0, 0, 2, 4, 0, 0, + 0, 0, 2, 0, -5, -7, -7, -2, + 7, 0, 2, -2, 0, 6, -2, 0, + -9, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 11, 2, -2, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -4, 0, 0, 0, + 0, 0, 0, 0, -9, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 6, 0, 0, 0, 0, 4, + 0, 2, 2, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -2, 0, 2, 0, + 0, 0, 0, 2, 2, 0, 0, 0, + 0, -2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -13, 0, 2, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, + 0, 4, 0, 5, 0, 0, 0, 0, + 0, -14, -13, 1, 9, 7, 4, -9, + 2, 10, 0, 9, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 12, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + -15, 0, 0, 0, 0, -7, 0, -13, + -4, 0, 0, 0, -9, 0, 9, -10, + -9, 0, 0, -9, 0, -9, -9, 0, + 0, -30, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -22, 1, 11, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1, -5, -11, + 0, -12, -19, -2, -7, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -5, -7, 0, -4, -6, -4, 0, + -2, 0, 0, 0, 0, -7, 0, -7, + 0, -9, -6, 0, -2, -7, -7, -4, + 0, -9, 0, -7, -2, 0, 0, 0, + -2, 0, 0, 1, 0, 0, -2, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + -6, 0, 0, 0, 0, 0, -4, 0, + 0, 0, 0, 18, 0, 0, 0, 0, + -2, 0, 0, 0, 0, 0, 0, 0, + 0, 9, 0, 0, 0, 0, -21, -3, + -1, -10, -12, 0, 0, -15, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2, + 0, -4, 0, 2, 0, 0, -2, 0, + 0, 0, 0, 0, 0, -2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -2, 0, -4, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 4, 0, 0, + -2, 0, 0, 0 +}; + + +/*Collect the kern class' data in one place*/ +static const lv_font_fmt_txt_kern_classes_t kern_classes = +{ + .class_pair_values = kern_class_values, + .left_class_mapping = kern_left_class_mapping, + .right_class_mapping = kern_right_class_mapping, + .left_class_cnt = 71, + .right_class_cnt = 60, +}; + +/*-------------------- + * ALL CUSTOM DATA + *--------------------*/ + +/*Store all the custom data of the font*/ +static lv_font_fmt_txt_dsc_t font_dsc = { + .glyph_bitmap = gylph_bitmap, + .glyph_dsc = glyph_dsc, + .cmaps = cmaps, + .kern_dsc = &kern_classes, + .kern_scale = 16, + .cmap_num = 3, + .bpp = 4, + .kern_classes = 1, + .bitmap_format = 0 +}; + + +/*----------------- + * PUBLIC FONT + *----------------*/ + +/*Initialize a public general font descriptor*/ +lv_font_t font_nucleo_14 = { + .get_glyph_dsc = lv_font_get_glyph_dsc_fmt_txt, /*Function pointer to get glyph's data*/ + .get_glyph_bitmap = lv_font_get_bitmap_fmt_txt, /*Function pointer to get glyph's bitmap*/ + .line_height = 18, /*The maximum line height required by the font*/ + .base_line = 3, /*Baseline measured from the bottom of the line*/ +#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0) + .subpx = LV_FONT_SUBPX_NONE, +#endif +#if LV_VERSION_CHECK(7, 4, 0) + .underline_position = -1, + .underline_thickness = 1, +#endif + .dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ +}; + + + +#endif /*#if FONT_NUCLEO_14*/ diff --git a/images/file.png b/images/file.png new file mode 100644 index 0000000000000000000000000000000000000000..4cbaffd58c3dbc552b030ad10608f68a49eb60b3 GIT binary patch literal 688 zcmV;h0#E&kP)EX>4Tx04R}tkv&MmKpe$iTcuK39IPPXkf92q1yK=4sbUc|m*bSxHxjr->u7qEfy$ z>#)pui?dRxvDQ8L3xj!eCCzo3Lx^Ju2_zvvLJeh9U?NJZN{WFL?Z;gFgSJ0OE{R-a zFmf!Q3I(F=2mgcL-5Q0dNhc{71G--<>th)3?*h%bWqlu8R`Ue#Jp)&2+h1(}v!A5b z+gjuZ=-mb`uG^Zl2VCv|15cW$i?-yW=`9q1_cQvY9ME?Q1lFA1TKhPC05a6o@(pls z2#gddd)?*TJ)OP%d#2Uj56T2`%KR?C7XSbN24YJ`L;wH)0002_L%V+f000SaNLh0L z04^f{04^f|c%?sf00007bV*G`2jmJB4KxX+Sd=&b000?uMObu0Z*6U5Zgc=ca%Ew3 zWn>_CX>@2HM@dakSAh-}0001oNklZOcKzD_=g*%rpaUmIC&m{qUi_DkkYI#~ zFykep~IARpDL`Ow2Jb(Uzph71{D+T}( WcPiL{n)~Gd0000EX>4Tx04R}tkv&MmKpe$iTcuK39IPPXkf92q1yK=4sbUc|m*bSxHxjr->u7qEfy$ z>#)pui?dRxvDQ8L3xj!eCCzo3Lx^Ju2_zvvLJeh9U?NJZN{WFL?Z;gFgSJ0OE{R-a zFmf!Q3I(F=2mgcL-5Q0dNhc{71G--<>th)3?*h%bWqlu8R`Ue#Jp)&2+h1(}v!A5b z+gjuZ=-mb`uG^Zl2VCv|15cW$i?-yW=`9q1_cQvY9ME?Q1lFA1TKhPC05a6o@(pls z2#gddd)?*TJ)OP%d#2Uj56T2`%KR?C7XSbN24YJ`L;wH)0002_L%V+f000SaNLh0L z04^f{04^f|c%?sf00007bV*G`2jmJB4K*>BK^^A+000?uMObu0Z*6U5Zgc=ca%Ew3 zWn>_CX>@2HM@dakSAh-}0001ENklZOcKzD_^XJbqy#Mf>0R{vGI2ocMqZk?R z07fs*p#Sebf54D%a&%&7X{yGlnbFe5=|3(>Nl6I?K>m^(C0qOax!1c_T7DO- z#+Yr>wEj7c$!ks>QCd zci(<${Unf`Vm0Y&E^}U9FVnUw^H6*EVQOrk=$19jv#u-sL@_d6Lx${`ZsbHof;qkH z4lmwg{DxYhGP4fZXG-jE(&3xeU5~4O9EN{ve#j*LjI_iJzvq2&ark7o*)fP_!SfvD zwHvr&b`1gzC zT`1`ZHln*Ls>-5oVk2QOvHz;a;z zJl9niD_-6p9@!=~rlt&98eIsMN-kEfdJnu49Zqt!)@Rvt@ry|>mFeJ57oO(co2k>1 z_xJl=ud~i?1I+bAtD8HMRg5?s%fE zv>+m(`tmvBhaI0EH%qAYp~J4UIS%`1Kwl1~KoFcw0Di>aKlLNT8@3bhQcRb~A+=Xv zTp}G^*Ctc5yKc>y>7cA6^@o}IJswZ7hBc6off#@cG;S&sJ1 z!iwDCM4XX?IJGo+d@3Gg!RentV0ReF1up7t-!(+E=kmrnHiPt6s`Qr-}br+7xHWsS5vZ8jH{#u`d8q}M5c!q`sl&mb7F7GvW{dcPbPL0Se3zhI-@??&>ghob#s>V@Hc9uR4c77D~<$^X=xtyv+?Qd|p@ntod3SPCx#slM!80rHQ zdq?Gk>$n&TVGna&pS~wlA17WLmV`HbFiThVO3T30zBx3fAl)YX#chLtxN*DIy|UCx zl}wuw5a>wI;d+tJN?ivnuZc+c-cy)ww(u}i;#>Qh5*fz@ZIkb3J2i}ofV#I4k7_N#ZaE;IOs-hK z$lJ)lqME3?FFZl%rl{RSX}LY6HGmzQt-_!3T%Rd3bHQnzH;8e5)l{GhPg&{HX`b9y zeoOpwEF9m%=HadJW3HF(a3W*4e0SDN-Kg!QKZ^M)&8F0c-UIBRqIL-oi&+| zGuMQQfT$wAWEt3;T#uTGhKr88E}Tl}h~MJAGI=qtfvjF)6<1VlQil6Rh77x*dNvA5 zNhod<8MPwE5=e1*!6eob3mv<)J1=3y8$7G>=NLtd-KbxiH*Sk!n<=Psu?;X45|Q}o zUb!#Zm*^!#+zv`(hw|JUU;rp;Q@<1Edizb}QJ^n3qZ;Kp+|Qm-p+{6IhHbCjk7f$H zt0p$QH_8zdte>yM9O{?}X@Y0CTX!a6&7#X#vnSb@}(z?5g zdAZ=7OZOYW;lT+x=%;$QDWQN?Dk{>Y)zub8IjMa}j3W{&VLyRZTo@p5gZPR*UQ)7u z1pbi}_jSI8T~|J(5Oah)be_kYTnP$dCzbIPHCBYbWNfBbnBefxDNBbt&L!j1W6D!3 zO9?qD*~V9j-c)(no2NN=JvYYxkbun~5mAU+rdVl`yPlbU_1YrKqJ!T6_dBLRwPp}z zDl*JA6gejIGQJ89;J$-?yJhWynbux^!z8*0`t;a<3S1}Sy%A-2{2gal@`}ylA!oxG zxzojv;y|8l39dZ-m%5OX;gq0gHCMX^WfStO`}qK^uLq3 zT!I1?)6m{N#l9%>;EdA|l~cKR26L}Sa! zS3%S@a5@8&RSo4ZULuV#g;7&S1Dy8!+yv_GTKuBz=I6u^*L*1`0}Ix%LhL6*X1s+a zO$5DMEKc#g(xynR1=hMcc zr78Hu^@%wUe{;UyTPg`xbt5{{l6-jTrUoTn@C@9 zY7o-aaP(C4=qfehh%eru;Z7uy=P*`MGE>%<2rcl$IT^&lM!h7?TLmG%-I z?!M0`vCSZCTVIRcxut z0`#unXb^|_;{zCU90J;wNJ_RYU-5IIYMUb0F*^b2ts*5I2#wM} z$Ma(vEmW<(b`$%#GZHj^VUzljl5O&w5b1kXjN66?>96BPF}_$oA1wDrmMpjO>9Z0# zkv77h%G&!Ynzu{8KNW|7E07we7P2u^9~nfn;3bDH*ZzF&dQfgZqRw9~kx`L6QOsIM z;(0!!_AwJC;mgSvdQd_XVDGcx4Ldi+G`!~+zd$%oxW(6l<}&*sr*=k9?4_C-QK;v4 zQ8R%_m6yQt3o98{+?Q@`8j5}k+dj*)%Y!>)cW>Th*UgZwUulxW#D1K3^pkD+woBu2 zsx>~PXPI%WVi;6u-#l{2C2D0ELXK(c+3<#Bfm19}I=o0Ot<+=ZP5)nKn3L11f{(C_ zKSMZAI%#!&=~M_VP{!*wb+V38H7EIHL9G-FoTOGEpm}!r*P^ z98Xbzdr657pgrc@0kWzztfv9@75Z1+YSZ6(vm@EZD|m;XzC4V{mWsUj`q@YPJ7#Sx~4pUD*|~{ zYS&F~sV{Tks;PFTHMRvgbKYw0Xd8D43EguSmvh{dM_11@o`Mpyf6jUY-pNl&2{lZLjx2a=axz1w=+M}j-AIKQ1B&K;pQvqUb1Ftd2%AJ}W- z1UJ$6bl1dku#e7L>d^vdV=u%ok1Cgqy>|!ObOzCjJxUMwU)~C8qVwz%x_XBqNjJ*D zt{8U1#EC2GE5BNOZvIfW>wFR&_)2%@lk4PxT0>Wa6OVCq3+h)cx`<1m@A)(WsfNm- zp16FYmI5c*82_3rxc_R{c3i=}SRf`~(#1b$y1pqZWX?V#bR1w5;$dsu@g7g#{J;oF9|zKy?-LLuy1Ry!;>*KM4XL01$|Tve^X8(7`g z>-$QZf&^S|@+_(?sdz5e+)N_K-{%Sq-n5SJF;=I7%vXoXW9TR>QkBSiRUK<;uI)vE zyG32Gjm0kTR!DGZT>O>2t%S!~eoJKj>mkyKgy8W03z4nII0ebejuf9<|q5=&O z+<{v+?CosYj}RZG`HF!HO2eRsg-lqgZ+h(LPv6q{f%L@IfP>DQI!?~&bch7G_#Zs# zYzb9Gm)EIo_QH#VjRT}RbTY<_PW^@ibF|ITpr}as?*DE4h|PXn=7=PFiq|T z?px2?Ezgva#plF(3^nl(X$(o=&rGp3`+EvF_k!{J6~X(kP*yCK%UH+SK^MN|@2nP| zn%fg}TeVK;jMYl!MLF+Z_Mm%Ty`yR3`GM{oCy4`$y6OGd%lX?~LyIwWTVrR+Qk6Xf z`;;*`LjtRI<~R1&`u(2mC^5@mP`t6@Cou=!;2aGf`Ah2)HM*hPZ`ZeyP!AUNF|@>p`%ODw;UBz#1>%F1%i{-$!_D5IzHN|0wG z5fRc(-41l~acZ=@^K*)t775QL$oy%}Cn6C3l`=qn*PoS-T9Jc!15u5YN3)Of?Iq*G z-Z=88oM5}B`?mwTYx5fohELKL`tJGMNe&k+xk$7UL@g5HnZ9*@F7UGHQ=-O~DpDXE zdj{yOWr-gPRaN;_weV3!JxAN;Q{|rg?C^1lKJC?rZKw4S)$ne!hB9m<3?*?O>WpfP z%FmG`_^30o3``|$4dypfz8TesJE^$ay?8hhYr#=Lv`UEE!>lgbqk7)a#1efCKSl|q z<#dp>i6Mmt_ z?V0l~9II&P!cQpir8yAIcbAq95(O+qxY7E?J4T3!mZ(|$O~&gn(GJ~Ne+*A7HCzWm z+v{~5b~XDUF)L+L@=BUhEi~H>yqHPGTMIN#mS}Bu4>K;_Acl(1Y{x1ZqnlWgmiTpJ zM$ml?5%?{Ad^wGx&M@(%78(@lg&IE7qh!F25enh(VP3pp3(L)oqj6Lwl09(;ZpzBq z5U>|uQ%g9E?1;G+z4+HD(OBWrNU&R)C5w`Gb!-a|Um62bb z#cQ|!c{r%{?1ka<%G9Z8$1FP86(6|+Q*>3Dm9_7ap}5Euy3l3}!|G7**0iiPC{QQ^ z1{OI~eGKDAC+35(_Ka&&{bErOs@my96>&~%y*TU9W(up{iTLg9?BrAcue2&cW!cDF z<9BkkbD8!#W=Ca%_MG|2xg)K+<|CTmlh{>nz`8qMCT7H| zx}g?FU4{9~KUk+Xc_?l#HXKK1<~;A5!KqV}q;7$MpK);&_F;GgS|sV zPWWSR_zMbXioVV;XTT1&bcL&M*W-1`rbvOaN^J0G@BO5~j%y+c=NUAovVDB(TePKt zKw5m`vg5{6HgF7DI>pz33HPs0IU=kUYwMYz2SnT}1|$)$^yky^F=v`qStGbZ{j0VK z6KfD2>K~I6u<07!4O6lQ?suYJUu?WNJJ$Sb21DuFe9y&hq2$Z7(R6C}mU^ZsH}?+% z#uLu*{WpZ=V!ZZSx~C>FN~Atpd!PKZD_WzSv#^^f13@fO_PVEko9lKoetlclRyhTn zEq06BCvEE@q{MY5MHR0TfF=p?LAim$#PW*LaduuuiwK?rNZlB~IJX*d* zvQ0S6?YU*pIq<|GYw+y;jrl2VJ6jo=P8qEc3TUDD7kLE4kkH&*0ur`T9Y*irK_a2Uh_Y zc0fz~>!RdW+|;DMU#@6tMoR4Nc!B48EX&oBI#|Bt$~}1}*FN)j=V6Z;GF(n8b z`M-d$Op6s7-`JE}k!Dc83`-{QghFSmZk%4+a+J2enYwKKtMt}nJEv0oWG~17|0n1c z_e&JABW}0)HZS+|1YMp06>6it$01vOgU6Le`QeM~=@o^-(40P%nt^nByc}hY<&p=s zOP;JCBL&IV;-i*3JL@G&{ZgQ{^0AkuFilMOEhXE z<8Ej3R&faHVH-#XnUpD!lHLyAL~ImvJ~h?n-{;mQ_htWQtQY+ec)$A>qPG0lbiR%` zyI=vYdKsFQ9<;X=td&I0E^&VtiJ;#|KpUxx=wC4$ zk?=DP9K(x>FkCiII|P0IxzPIY(|ccg%|(y@Ogr~FKd*j%iTsvXNN=M4skvKE|1*VusK93l1$Kr+YccmSl*rpU+MmZSbsZpT!J!1`Ky;HP zesJBRRp=sFd67Dew2ZiH{2OJBKetEU@#?<5lNJJe$+b0_6-k6OxX`ThTJy{^A9{BVzCFfHo%Ub0c3vo`Mrns}WJOgl6Y+lzYiK2s z-Qp7kc9t!yP!(KFD$DIXN`jHn;98j%ZR2yb)oNkbb*+m)!cC?c0_Jh}|;@Q0Vxm z&2F^!IiK^YY7vL;Kc7fxsjUS48w&KD;Brjcf~glu!0y$C=Mvb(%*SBS5XLA4V!Nfm z`&>ucIqT7kI9#Cm{W`~u`oE7(Qq2T>X%jZ^?FM5BPPi%vU8AT_$o-fILM|*=!*DpIw#z?x_TvnwWHETtAxi1~zc_s%{=A0$@C+ZWIj- zb&_=Gid^6>Gvsl7Enzz3Z7#N+(c&+xIpVcz?N#tBO-2Z33B1{as`3i_soSqv_|t{` zbNG4EA4Ul(Fou}li?zICAvtNZN4@*tWLI^I*;~bFvA{P(6|gX&I>^IW)Ct$y4eVoF z;E*`a1`Tu_UzvkBCJqf?wJ=Lfs&)N?W?j;7+rQ0|@s9Tw)`YBS>@yVG z6iJ{ozBDYfNgUwS|9!}Xs5p^ult?`P@EyGHKFf}2FkdP}bBNsw1s@k9o)$?MKUtD# z4bc@zi;s)C#4HFuy6_Xf6&freo|-0GfQHO7jVa5Ge6Sqzk!F5mdoIcllfA7Ln%hk( zht>0=T0vN2@=dLn#7kch@0*+tV|!5HPIOFsS`?Xcs*GGtEd72irxUTq%%*C`!WFVT zuaER7Npww_mP>^RN#BsM-`7owQUTt$>ovspDv3U!cA_MZOe=|9Hq{0yAoyC(cCXc+ zczW}9LQ?bi&pjrQCS#6yk~LG~RI3Q4klf@rq70UP?yWhqy{^>uvb_>7--i=VPYy=Z z=Hq7fCDvcPaPc#GlR8c|sY&Iv%{0F6P0IKfih*pUX+JcBi5=}XWdki1nsW{-rH5XtRgkvqgiAGGh@9%g+ze;%zHu9k zC&T6q0?%fNo%^Jv=6KSzuI_3Rt&hIz+uPr{N9M zcIBqWB8My(-`n8h5}GJ|i!)|CEqwJ-_uj@mEI}d=TD(jF;3xe)QmmxMCro1eqj}Ym z%ioLyRGSf`jJH$`{^GJU!S=NPGZZO4gzMve$7a%E+~+@wE)-U3y|Y&ZSdu8u)1PE2 zk`lB`ih-dmaizFbVq$4?*N4*Jf{;LVc=|0uq&Zt$SatVmS^3NAo@sO_7t5)8u0Ibt zzzW1m{f>XTSmy{l7p6L#KPdPdp7y}9JuQ)*fPex4wN&>%mKb|b8nbH5K)_Z&M?ks2 zr3ZALL)YrY@^j<3lFF*8iC!GP46b)t1frs!8$dSK_t)QzsNMe;9wVzAO9v`n1zN2~5#f)o!g zY2}5PKQ(+oKg{TrCp0d>f~4+99awEzCb|Hx2Yw?utdXSrD!Dn96<5@-LOY3tJp}aG zS|;)K3|2T7|8n61wL(PWdwPKBR{fv9phPriEa~=qc1T}?J>T(_Qv8!qekQCJ1q(PM zvwiTYE~J^*;(82En4OAJnq#y0#3wi)!Ln^t|HpTITP&%>Uk+s7R;`)h91|WSu${;~ z^@Tj?269^uamkv%IfVQq9D;zP=Pez$pTvrN?6`;x;b{n2+ix_Fwn;|=AbzvQ&HXJK zW`0AVB>lOHB~aU$cIGmn0Xhux?eQ>p&T%B}Lc%e=C23uy5w5TTAXV$fArT_RVSnO* zfcULfWrh5kgj=1l9dBv?YeAf(FBvZ${Hn8tq2)4ys{A72e%^G{<7T4BEs;C1w=pNY zEtH?|QG&miafB=yz+xY{BGUC`<5H&HTyC# zvkW0nu)JsVJPO@*s24sgjb9TT8OlYmcf-vHM7F<}eSX&DRYe6J0iAcGiHlSLf1NT0 z6YdOgPoZtEz8=UDD^=nfaqlycuZQ)IwpdQq8}RiL;?`K?C6L~Hu~m6M|?-xrKB-pQ+- z?-%l@DU3kmrr#Vgcv^Eizf-k@>$MRd!)K+8(iA-}ASTx$LwB}YmJ+A6A2$$2p^CQa z)~Y@k)`4zo2hOB&&HKHW51PT79n>*7Dc_L2miN#21x{qd(nq5nvX}%>N!q6W%&S{pkRo7uRzkoa< z3N?hv7kc6Kbtfx>Bn>-iwr+WenV$QFA$;MkGOam{T z3oHJm-rZaZqm}1`H-|0@VfE#eC2XYf>BxU^Jk7&2eX6pFVXJ3~%xb>L7}dgr9rJ)T zk%C)?2X(vb$S+I4RmiY^y@ecj@)TDbfAiY^X%Ng|err~g2xeWtAlIzdB0N^dAFC-B zI~C)^aT>ymJKz%o$-Gc?Az+`tO^?UWvCM8_{#?=_#ZTiH{OQhZ3z(2n_ z$JT9sXv_M9eYrj8xj7)74#Fe*zcMf7KIGeAx@j^+%c7rZddpO9-l7!~e?Y@I*cnXF zl)jpyF{UoC3=LUoB(CRseNB1#{5SjM_v+(MccirA*Oaqhb%67~T7a|X^vJeZ0fgU6 ztX3*@{QIjM3cRQe>_prCRLyc$aqp-zHQJS~d^>+#02eYe8J0jVXhIHjhmBn(JfqdmgB^+eck_x-ewElg2yd|Y7lTudt?DGiP`bvV0;&A!5 zGI&v`Wm}8o$~lJLhkzCC3xTAHsSL%jpEmUyuIAF<`uW{ zncfnkyf$OgHjA%gj!9SyhU9GiCW+t5i#Ifm`Yf(~iV-@WN-&vV&Zsr+8;! zpqSmqvA@0%N_}+H6Jb#ErxNz3s6SO#(D5Q$@J6U$2Ll-+s|6wH_JkqJUK8OEqLcK zJK*7D4(xuI*=SUQMElsxBS|`1DhW!pu;RY6HcOrRo0)J>h8y4iqZYpDR$JnBsjqlJ z1QsyxXt3t9qKtaebr_ei(-dGWuRg{}kE2|1mdwlK>zJr0CP9=GVF?!(BpU4C0)mZd z-0Yjs|D;_5c)(fJmwVoB3BO6PAdBUlxurnItvLesL4%(gJRhX#Jj6%k-e|^6xO@4~ z-{!vGo2Z&xwW)Q(1~JrT^iR6c*xcNOp&y3y_b<16>(-)8ZcdGptE4ePXv2GO#e8uwY=YKLT2 zZ9Y}dhiTt)LyqgiY((L0|3Cid^iC|%C(&{X#IC+|qq5Tt?tczT?VA?$xqLZ4+3k|1 z$&hJ@F_$wZbvT(1aY+y%;1`1liU*{Ao6@Wx-xcuzwd_yx8bd3Q?Q9_lA_Jdh!bi_# z9u*B@P=l%!$M0nyW#98M;0=Nz6=agOQJ-Yi?+nGRe5X0dGNZ_7Vg_nAs+Rg!lT?=g z;HFlh`ODy+)IzhS5<0hnTd;m5xc`6vgbyf2xG2yxWa!wI6o|(D*9QN;P(qmg4i$D| zYOYN8D>es{+^_}r!#}F_KRoUKR~G-H4gQx50R;#PNrw*>PWQJ((Bg}1&40cwU_qt2 zT`IF4+|LO&qXVlTWZ?fWJo!r18X{W*a%FsdBSI)Nt=hr>}N!;Qby*=W{hH5YY`n{vSziZIo=uCm&240B0k+LAaq-KxE4x))^E5 zN%Bg&;LJjaSR#bb?LqHIC2nn|tdMZN5TCj)| z8`B5(RsZbQdGJC|N`u7{U`aoC>`tb=k|5$$H_zNls$`B8)NV>TOSOx|I-+{( zmQ5(a!TdD#*V}K0iP|f8U=0WefDS(w*&63$dtAocShtKJcp4lBiz+@#R+mwMb!7EQ z#1t5N8vpWcSkSZz>% literal 0 HcmV?d00001 diff --git a/images/fr/eof.png b/images/fr/eof.png new file mode 100644 index 0000000000000000000000000000000000000000..14fbec1841f032e65afc82a548e83065623356e6 GIT binary patch literal 9397 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 literal 0 HcmV?d00001 diff --git a/images/fr/file.png b/images/fr/file.png new file mode 100644 index 0000000000000000000000000000000000000000..199aba734e1e5df604c3c7fc5015591001c95af3 GIT binary patch literal 6055 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 A2mk;8 literal 0 HcmV?d00001 diff --git a/images/fr/files.png b/images/fr/files.png new file mode 100644 index 0000000000000000000000000000000000000000..81676e983beb36b9ef2622f46ab580ded855e616 GIT binary patch literal 7369 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 Ub7ei?UoVi#GmWQkdCS-T12K99xc~qF literal 0 HcmV?d00001 diff --git a/images/fr/folders.png b/images/fr/folders.png new file mode 100644 index 0000000000000000000000000000000000000000..65436c151fb66d54fc696b1d21db6cd9ffc56dee GIT binary patch literal 3681 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 Gq5lPx^3I+B literal 0 HcmV?d00001 diff --git a/images/fr/play.png b/images/fr/play.png new file mode 100644 index 0000000000000000000000000000000000000000..3dcfa30c7bbc29858f7b0ec9483be80129b50f32 GIT binary patch literal 6068 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 Q4_<(p(o0Z-!kf_l0ybnp?f?J) literal 0 HcmV?d00001 diff --git a/images/fr/played.png b/images/fr/played.png new file mode 100644 index 0000000000000000000000000000000000000000..09292e88fa835929b28415bf3d944705d7a2eca4 GIT binary patch literal 6157 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 Dkl=2A literal 0 HcmV?d00001 diff --git a/images/fr/record.png b/images/fr/record.png new file mode 100644 index 0000000000000000000000000000000000000000..c5083d1ec0f037040424c70fd278acd55a6c6a64 GIT binary patch literal 4715 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 literal 0 HcmV?d00001 diff --git a/images/fr/root.png b/images/fr/root.png new file mode 100644 index 0000000000000000000000000000000000000000..f5240e486b70d3194897dab2d14506bc5e9cd196 GIT binary patch literal 6192 zcmb7I1yCGammNZI$e;rOf`q{W1HpCh5C)gv?h-6Sa0v{-ZEz172m=K7;2}7{2}~fk zyX#KAZ-3dUzjkY@y6aZIuJ^j{x%b?2-wRV$eNKc=jSm0-h+qnGnrOQZ0ANVr-up8W zZgU^~5Nt0is}7TuWpH(Kv9Wiw1_0RNeB+=Bol;aE<_i@Iszs-zyBKBPRx&(UWYgvh z3?9|7n`mDim9!g;&94{6FT=v|2bDbF8fp}+#}8ZphQ{Z`=SC!)8*AE;EIsOhHlMX{ zyU%0DRQ0{6vc0D+(67L{Xu;L`1lxop|Dn8OE-BxMl?@NU@WERk{rsMVcz@IGFo_O6 z3#QNG1KKg72#+8So3T-mJ+kL|`kJA`VLe2R3|E$P8HrAAxLZ3~YD24=F$3|5W_2RV^ReMv737hDVA%De91kd>2Jd zW-l7!eID}2Kir77;fdL@o)pm&a1Zbnr`7u<=o1SnU!8W{w_+zogW(H7HFfQcuj6bf zS=$|uuYBR=03QbEV`!FCEayI^O#^!tzF`oCMc_QS&pmPb267QS}rP*ax>vGg%3d@$Mm zATUXrmIQ>d5%5e(0lB0fP_Ii(Fn$aSJ+LG>rZdqjPOvI=ys1#S_1ka%jCe7uMlX5u zORM;6vO^7%#e0Ei5+-CjE?|vjGbb-W9a!Uh+CbWoK%#C}OE6FSV{YRNs}@H}6-x=|YUK;wxYn7D{= zP9|u*Jc`;9PTb2u41CB4-=CFGd`2ROsr#ETm+hQQK!DDisDnDvBlJ8j;1vxLnjOe_n}QuuidHQQwAa7te2Zaew-=i0|7piKUO`%tQs$ zDnV1RcmX=tN@5V`Y|qTU^14eYL_3Q3@tuidl|*ifAeE)>d3o;W^T4AM>FWEaQS6g! zQN~QTO{De-UAfw<4)IN{)T0;Tc6f~izDlA5gVgz#imbi{*|kW9%bu=Ne{uA>8`Gp* z#|r6dKTKM$stf41#*!%H{1~d2{1A* zu)-A(Mat|y#P|Yr*S|6k(R5M|*ol3{GkNcYb91jC=_}VR1s-ExLgn>-iAjsp4qU>5 z)g+s1FS%sm38U3vJnWS+CzQKFbg9+dNLpOq)nMko^gHUX-L_;WkcbYZh8GK$I`K_+%a6;_{n^4kH9pZ!f`rka_3i}sUE}O?t?bZ zju5Be>YohyR5hX_uo7Zw{Z+r_30)d)X6newP32{TBJ@Q=*?6SEhG(yVCZ#{8VlH_G zZY4IyjnU`ZDp9la8^60{*7zXzpT9ZR7v%6aivaE_)Y5>&F)fuQa83JK+maG#MoPlMv5silU?jL z@GQB-rOlg5n{mP9FR0RFnIkPJ)#{H-H>wECO4?YpW4}J&kJUNK5C~p04r{q;?e%~R zEm`7LxSR1qDW&BA$Moj9O8q!YHz9}!ir`IOTrMT*arolEnz>Bqo?FC|RF{kkan5jy zWR%C@fcglnjxE8ByOo* zk)oDS@;9a@N=$UTiwAFfPjOzxUbd#3UcSA#qlWvJug;6T0sK{@5L5D*#6Gae6?9q3 z__%!jg|@33bI3($1Om$OpHNu3Z_0p;m2H|AgPQZp26K6H{K+d*tE0 z5y@W=jTo93SiZP|Uf|+n)?XGSGy>E!p(ssfo9dV{O)!e0Oc#<5Y3vZJEzr zHz|a>S2FSA)<4+HnH*v07v5%+;I<|T)Dv0&C8k@V`2F>v81J=xyReZy{<{GL$GR^vgVJT;s@ z^q|qE#U?jZOIQZ`?TIy@G5@sj-JA;FCt`XeV9M+YU%B6)V7cJ=9B!R@@qFns1yV)TpB7qTjq8-^uLQ%&T_Fi|`jstO-=X~#qIo8wA|#4)YW!1>i^1zjU=wmE zpNHMe`)4z;P^)20F6c}V9=qVdcERw=m+&FgDvS}x1}o3UV{9y2%UVGI7mZkSgx(Pt zHU*bSskHs_9`FYSD}vgco4Bbkv6X!*{Ctij)a=5 zES1s5Ces(9zozu+P~w5WE6GtXlrqlq(snh1=AbF;`%b8V#$ep^xA>@KosW{nU6(>h+cr$NcfKo_KLs=pe9ho=Al+7~yq+#|Lb!pkczuvQskhDH7gt3|RU zurs$H@aXx(P2Z^47sZ+s+@<_CKASol?1ANLR(k`eF{)kXJpUelxd%y!06%U2)!z$YZ7+|1}AO3jz&nojDyt2hcShaVPQL`oo z9sv+m82<*@|MV5T$Y0QnP!@ecso)YBeb{3%O;4uarb?zfUj+&wJ!}CwI56`IHb)4-MysJSqCa21nwCi1~r3 zNG2n!M;V&yXiO9lDSjChQC+HT_Wq&1?!D1pLnx;DaS1Su1BckGH+FlGg`BgQW z4mnx@wI|&5aic@dy*oNA4i}!K5^GMgpJV!&)aC1r-Ub+z7In91?p`4mC=4V(gizat zzBs)|Tfxf74llRIU>KsI08OF_D(;)>F=z9B_tZk&QFv@kPYHqPx7@hz=pln(+o`J2 zlrATU-3oxr8Hosk7PmluB)TMRcUB5Z(DOxXPx~N`7e5YGVfDzy&5}4D!RQIp-Htz; z8*$cDBbC`N2Ag>ca80C{(%!yhu8OmM`^_b-wHnM%Qe8SA?9Ul60;S1cX-h=cdUWxe z`INdkk+?k;*)S*Ud6ITyySs}1Y<5;Kx8;~n-jDBB4(+rS1w6g{np0}773t1&1nRQx z!EE8ZIAN>LtVI}Jmh+Ew*X&hJh9vY`%Y!+t3X(JUZx*yi#*Mc$-V>YTlEK$;YNY=pT3Z(TfPSO)(#{M zB5eu8uw+8{S(rgfgDzNT&(Q;v(E8@o!75qgQR=2TWM^cn8jD9f_sz}WboZgk2!Udq&p$bw z-Z{57#(A-uIO0M>r5ovCm7^)+pMoU=5P6vBB+#KRxY&0@`EBy+`M3EOeO8DG9-Y+MPl3R2qb9lCLhgbEQV4sG$$9u>hfpk*xkys^@*HY?FD^x;IwUBj__F!Sa zD$Nw65S&s(|BdP&PRUdL6XbtT3~kq$6cAWt=m`L3oc{#;-$4HxwHf%SY=#(Mr}7?! zBImKhnwJ->;FdsXT+}RBKdV+Aw-;%P#~A956$JX@A0Q)j1hT;kt0me#2;{g(s^)&yF;?vG&`KBGT5}dxdU9Q!^ zz(qwbc!UCv0(BMU)b@#8{-id(STLHYK6VM1hlicy+z`wm=2dn!dD~ zlujYb#rbFZv{VqQ2bLc)T8)ktn5yRNL=iCZ2v_BPsSq=4Im~fFae{u|(7hKUbs{x& zd$q1>ES;{^KZ^(ET|gp}z#cp?(_z8en!48DqMCJGuk-$QaSp2ge@ZYWF4XQC!@owe z##w{o$;s%L%242vw8V2GJ!Q~Ycutr)Fq`({@_OU~MMripB`E&7#iX>TxL`#KX-;_- zJ}ZW0qD1vp*1G_P7%ySP*`><4$^>u4p8IgNrpC;x*roYBOIkYOd7ZnO!Eu;~<~JI_ zov3zM8_!}?JS&dvga0pWG128-@xeb8@;{gRKe>pd`WjzArOH{Oklc9cBKQ!)HFcyy zl6$(=@$M`U-S!L!mDp611IoBX7S9kXH}TzTMHFw}Ih!AD)}$K#*vSkud^b23u4>XE z=y_t`$LDetG0I^-%NJ0!{N?i_otpWdhrRynwe%`u1M|R%&iRa2MRXq|GjEH}$?kkF zZLGHZ-=QkE>gN3neXG;@*Bt%FH}kZ&eB1QfRU`^VLN;?wqkpESb;^F*V@8&@6x#n* z`-G|_kZF=x*Gi&A|EKbN=HXxf4vgV&G%eys0^E(xN%`{-~339a{ z(5DrATQlfCruqGlZvZP}F#iiwVClR02`B7So8-b$-?vzk8@kp+JLHRQfMw9i5Yene z*XNVI`cir$QTcdiVDd~vM&VUC)s>d`nJ=;0{$rFIN0Jujssm!QPUopW9LLkB7A26X9uo86q#VvlbnU znZ)jz&|$S#4xfu&Z*=C;`b&Hre?eMP=P%85$KGspUien)8km1l_qK$y1Qz4KGVsO> z&#|_!A;;ZaEYS7rk!Y6S9}4-NwN|;xD!D@M({)6i0)lcr=U})h^}csO2ISoPSL=pO z%)k1PzboOtI-X^~|IzUfQwNx!)y?$)E|1`>CuZ*Hh9Q{Y%R)!uYUt|8GWKK-C$4hs z9=KO@Cb55Q@r*RB@PL2lyrm1Bbzs-Wut^lGa;Hw#4&3{|9D&4pY&~qJxz3m`O=X!d zItJ~=Qbs^_DT0=A1pPT5TjLN~MsA6tccsJ~E~n|g6%g7S4!bithtk*el4Nm}wv7CY zaCP8Gq!$~LatTeK?zTJO8Zo$cvoXs^87c3fo;ZTeeO5s!_7c!!dGw(f$eF8YyglD^b96D%fH_feUBP(LU%0h*rM zARQ@MvUzEk-g1vS<@s!F1k$g{ cwug5QR++2U4x;tYhsyxiGgY}V8MDCu0=9>He*gdg literal 0 HcmV?d00001 diff --git a/images/home.png b/images/home.png new file mode 100644 index 0000000000000000000000000000000000000000..8b3e41df935b4ca3a6c3fe6afd871d8f2f10389d GIT binary patch literal 1242 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 literal 0 HcmV?d00001 diff --git a/images/record.png b/images/record.png new file mode 100644 index 0000000000000000000000000000000000000000..6cc0aa3cedb19963daa7230c11f1c6013eeda19a GIT binary patch literal 1069 zcmV+|1k(G7P)EX>4Tx04R}tkv&MmKpe$iTcuK39IPPXkf92q1yK=4sbUc|m*bSxHxjr->u7qEfy$ z>#)pui?dRxvDQ8L3xj!eCCzo3Lx^Ju2_zvvLJeh9U?NJZN{WFL?Z;gFgSJ0OE{R-a zFmf!Q3I(F=2mgcL-5Q0dNhc{71G--<>th)3?*h%bWqlu8R`Ue#Jp)&2+h1(}v!A5b z+gjuZ=-mb`uG^Zl2VCv|15cW$i?-yW=`9q1_cQvY9ME?Q1lFA1TKhPC05a6o@(pls z2#gddd)?*TJ)OP%d#2Uj56T2`%KR?C7XSbN24YJ`L;wH)0002_L%V+f000SaNLh0L z04^f{04^f|c%?sf00007bV*G`2jmJB4KXl;D(H0p000?uMObu0Z*6U5Zgc=ca%Ew3 zWn>_CX>@2HM@dakSAh-}00066Nkla%K8QeLfFe(FSoW{5dDdWcA(s=+I=?P*L3EUM1E%+c)99)X?DZ=EBHdq%; zbH&cE-_7jI{x&GflKbXzeXOcqzN?}ID=~?nC4z`NF|l0VUk?_+w1D)+m8wdUCL(k@ zCXnbCV5-VAb7lQEZDSA-7M&l`w5ax+IXACL&ze9)eu8NM({EV`&=$dV3`7m3tAOmr zF}tf$?~x58f)J|m&7o|APyi8FYiQqPs%8mQ6;-VqI)?vcb(LzK$mLoBbYuTax!m#b z!zV62Uy!C50Nt)-&>yh#>Ln&NUYYC0hSWJ+u4QojH7&J(o~;i1vNpMzu)DYaN1yla z-m>* zuI~(ooE#r{$)7Z@=A(%v2+Fc#npLWGE_*yL^6}-EEUPYYYc1Q)xBV_~Aj>LECL;8# n3D#C9uD7&a>&M8tJ>Px+4>1{4-qR2500000NkvXXu0mjf9q--d literal 0 HcmV?d00001 diff --git a/images/settings.png b/images/settings.png new file mode 100644 index 0000000000000000000000000000000000000000..94ea61bd11696b1e3eeb294fe57c6165723949b4 GIT binary patch literal 1191 zcmV;Y1X%ltP)EX>4Tx04R}tkv&MmKpe$iTcuK39IPPXkf92q1yK=4sbUc|m*bSxHxjr->u7qEfy$ z>#)pui?dRxvDQ8L3xj!eCCzo3Lx^Ju2_zvvLJeh9U?NJZN{WFL?Z;gFgSJ0OE{R-a zFmf!Q3I(F=2mgcL-5Q0dNhc{71G--<>th)3?*h%bWqlu8R`Ue#Jp)&2+h1(}v!A5b z+gjuZ=-mb`uG^Zl2VCv|15cW$i?-yW=`9q1_cQvY9ME?Q1lFA1TKhPC05a6o@(pls z2#gddd)?*TJ)OP%d#2Uj56T2`%KR?C7XSbN24YJ`L;wH)0002_L%V+f000SaNLh0L z04^f{04^f|c%?sf00007bV*G`2jmJB4KgLd+FxA&000?uMObu0Z*6U5Zgc=ca%Ew3 zWn>_CX>@2HM@dakSAh-}0007hNklgzWd(2cke7?47U+=<*A5#?};FNrUI3RM@pfTdZr8N$8EbcN=*9TcOoMq zJS3D-ICI)k`Fn_o2<;#;$!dyPqm*KF@V|ug<2l198hT~H)|OK0hM4rB{VOm4MWwLk zG~^#hu08~vh;ZPgg?ZajdB{QRz9A|50Z9Sm!L~KUfl>*VoQNPI@qjta|3c!WgikK& ziUDv6lPh&}e8P+M4PLBoaCCe!v2sp9Ct1PddIR4Ml$;1b;NSb4Jv!sICqgcX2$g}E zcj-~vuJiHJDYfl7EzcX;T3*`bU3!_)MiQ}BtL+dz#uBKpmE-~my}y}am((V{_r}Yao(6@%VopT$`WqbO-=Ux-CIh_B>O0lpyW`kHQUImp5{`4TE$TZ}bU{y_7=Uzd&QjkG?$}5BM#oN- zSo5NpauvYd!688q5Cj2x2Wi{x{vpka=JfZNGw9@UKGCYWpS(dnOCc8fU|{vRO5&Ypz*cb4_KlnzCg< z81_u7?Hm6pG&x;R7J%Q4AVam9EX>4Tx04R}tkv&MmKpe$iTcuK39IPPXkf92q1yK=4sbUc|m*bSxHxjr->u7qEfy$ z>#)pui?dRxvDQ8L3xj!eCCzo3Lx^Ju2_zvvLJeh9U?NJZN{WFL?Z;gFgSJ0OE{R-a zFmf!Q3I(F=2mgcL-5Q0dNhc{71G--<>th)3?*h%bWqlu8R`Ue#Jp)&2+h1(}v!A5b z+gjuZ=-mb`uG^Zl2VCv|15cW$i?-yW=`9q1_cQvY9ME?Q1lFA1TKhPC05a6o@(pls z2#gddd)?*TJ)OP%d#2Uj56T2`%KR?C7XSbN24YJ`L;wH)0002_L%V+f000SaNLh0L z04^f{04^f|c%?sf00007bV*G`2jmJB4L2pft*aOS000?uMObu0Z*6U5Zgc=ca%Ew3 zWn>_CX>@2HM@dakSAh-}0004pNklMt&-EdZDUs8&$OD zAd(U$B8bSPt>pdZbMqZcduTsGR8_{5h)~b0k@6QXRi*JErmvY=i-_>O_%EgX@XmDz zyRIypH6ro_rad$(9|5K!xS54=B)fX>AA$9@ON+TPQbGYk`*u)nL@0m~oU=@~P9>H? zRZ-QUU}ia%QkN1>89I#sb(QZ_=mO1alT};KYn*dg&efHr4S~>UEH~TUZk^21!~G*| z>$B^hU!Jg)&6v*N+^ABdiI6?W_JIOuS8ev%NE2I(@&9PI|6VLOQJulgVE-2^rH8Sj z&aZ1FE&CFRNm^yw7*;&w`@=3W|y4w4?P&Uq(*t`t}I~9N%$Z Swmw(@0000LYXiC literal 0 HcmV?d00001 diff --git a/images/up.png b/images/up.png new file mode 100644 index 0000000000000000000000000000000000000000..b8bd072aea54a668e18d7ef84e8d75e531aa7541 GIT binary patch literal 1006 zcmVEX>4Tx04R}tkv&MmKpe$iTcuK39IPPXkf92q1yK=4sbUc|m*bSxHxjr->u7qEfy$ z>#)pui?dRxvDQ8L3xj!eCCzo3Lx^Ju2_zvvLJeh9U?NJZN{WFL?Z;gFgSJ0OE{R-a zFmf!Q3I(F=2mgcL-5Q0dNhc{71G--<>th)3?*h%bWqlu8R`Ue#Jp)&2+h1(}v!A5b z+gjuZ=-mb`uG^Zl2VCv|15cW$i?-yW=`9q1_cQvY9ME?Q1lFA1TKhPC05a6o@(pls z2#gddd)?*TJ)OP%d#2Uj56T2`%KR?C7XSbN24YJ`L;wH)0002_L%V+f000SaNLh0L z04^f{04^f|c%?sf00007bV*G`2jmJB4KW8imrZ&A000?uMObu0Z*6U5Zgc=ca%Ew3 zWn>_CX>@2HM@dakSAh-}0005SNklYwo9{v%t!(j zn)Yo`S&t}y1hULAX)6^iR#j2eX2H}kRAQH+$NIGffIRKFQhO?wr!MXa!EV~#wv`+- z(Xdg)#y3JnAd3dA+lRl4EIu!I{pNjV$WCArwxV cjP3XB58dMsjM~ + +/*==================== + Graphical settings + *====================*/ + +/* Maximal horizontal and vertical resolution to support by the library.*/ +#define LV_HOR_RES_MAX (240) +#define LV_VER_RES_MAX (320) + +/* Color depth: + * - 1: 1 byte per pixel + * - 8: RGB332 + * - 16: RGB565 + * - 32: ARGB8888 + */ +#define LV_COLOR_DEPTH 16 + +/* Swap the 2 bytes of RGB565 color. + * Useful if the display has a 8 bit interface (e.g. SPI)*/ +#define LV_COLOR_16_SWAP 0 + +/* 1: Enable screen transparency. + * Useful for OSD or other overlapping GUIs. + * Requires `LV_COLOR_DEPTH = 32` colors and the screen's style should be modified: `style.body.opa = ...`*/ +#define LV_COLOR_SCREEN_TRANSP 0 + +/*Images pixels with this color will not be drawn (with chroma keying)*/ +#define LV_COLOR_TRANSP LV_COLOR_LIME /*LV_COLOR_LIME: pure green*/ + +/* Enable anti-aliasing (lines, and radiuses will be smoothed) */ +#define LV_ANTIALIAS 1 + +/* Default display refresh period. + * Can be changed in the display driver (`lv_disp_drv_t`).*/ +#define LV_DISP_DEF_REFR_PERIOD 30 /*[ms]*/ + +/* Dot Per Inch: used to initialize default sizes. + * E.g. a button with width = LV_DPI / 2 -> half inch wide + * (Not so important, you can adjust it to modify default sizes and spaces)*/ +#define LV_DPI 130 /*[px]*/ + +/* The the real width of the display changes some default values: + * default object sizes, layout of examples, etc. + * According to the width of the display (hor. res. / dpi) + * the displays fall in 4 categories. + * The 4th is extra large which has no upper limit so not listed here + * The upper limit of the categories are set below in 0.1 inch unit. + */ +#define LV_DISP_SMALL_LIMIT 30 +#define LV_DISP_MEDIUM_LIMIT 50 +#define LV_DISP_LARGE_LIMIT 70 + +/* Type of coordinates. Should be `int16_t` (or `int32_t` for extreme cases) */ +typedef int16_t lv_coord_t; + +/*========================= + Memory manager settings + *=========================*/ + +/* LittelvGL's internal memory manager's settings. + * The graphical objects and other related data are stored here. */ + +/* 1: use custom malloc/free, 0: use the built-in `lv_mem_alloc` and `lv_mem_free` */ +#define LV_MEM_CUSTOM 0 +#if LV_MEM_CUSTOM == 0 +/* Size of the memory used by `lv_mem_alloc` in bytes (>= 2kB)*/ +# define LV_MEM_SIZE (32U * 1024U) + +/* Complier prefix for a big array declaration */ +# define LV_MEM_ATTR + +/* Set an address for the memory pool instead of allocating it as an array. + * Can be in external SRAM too. */ +# define LV_MEM_ADR 0 + +/* Automatically defrag. on free. Defrag. means joining the adjacent free cells. */ +# define LV_MEM_AUTO_DEFRAG 1 +#else /*LV_MEM_CUSTOM*/ +# define LV_MEM_CUSTOM_INCLUDE /*Header for the dynamic memory function*/ +# define LV_MEM_CUSTOM_ALLOC malloc /*Wrapper to malloc*/ +# define LV_MEM_CUSTOM_FREE free /*Wrapper to free*/ +#endif /*LV_MEM_CUSTOM*/ + +/* Use the standard memcpy and memset instead of LVGL's own functions. + * The standard functions might or might not be faster depending on their implementation. */ +#define LV_MEMCPY_MEMSET_STD 0 + +/* Garbage Collector settings + * Used if lvgl is binded to higher level language and the memory is managed by that language */ +#define LV_ENABLE_GC 0 +#if LV_ENABLE_GC != 0 +# define LV_GC_INCLUDE "gc.h" /*Include Garbage Collector related things*/ +# define LV_MEM_CUSTOM_REALLOC your_realloc /*Wrapper to realloc*/ +# define LV_MEM_CUSTOM_GET_SIZE your_mem_get_size /*Wrapper to lv_mem_get_size*/ +#endif /* LV_ENABLE_GC */ + +/*======================= + Input device settings + *=======================*/ + +/* Input device default settings. + * Can be changed in the Input device driver (`lv_indev_drv_t`)*/ + +/* Input device read period in milliseconds */ +#define LV_INDEV_DEF_READ_PERIOD 30 + +/* Drag threshold in pixels */ +#define LV_INDEV_DEF_DRAG_LIMIT 10 + +/* Drag throw slow-down in [%]. Greater value -> faster slow-down */ +#define LV_INDEV_DEF_DRAG_THROW 10 + +/* Long press time in milliseconds. + * Time to send `LV_EVENT_LONG_PRESSSED`) */ +#define LV_INDEV_DEF_LONG_PRESS_TIME 400 + +/* Repeated trigger period in long press [ms] + * Time between `LV_EVENT_LONG_PRESSED_REPEAT */ +#define LV_INDEV_DEF_LONG_PRESS_REP_TIME 100 + + +/* Gesture threshold in pixels */ +#define LV_INDEV_DEF_GESTURE_LIMIT 50 + +/* Gesture min velocity at release before swipe (pixels)*/ +#define LV_INDEV_DEF_GESTURE_MIN_VELOCITY 3 + +/*================== + * Feature usage + *==================*/ + +/*1: Enable the Animations */ +#define LV_USE_ANIMATION 1 +#if LV_USE_ANIMATION + +/*Declare the type of the user data of animations (can be e.g. `void *`, `int`, `struct`)*/ +typedef void * lv_anim_user_data_t; + +#endif + +/* 1: Enable shadow drawing on rectangles*/ +#define LV_USE_SHADOW 1 +#if LV_USE_SHADOW +/* Allow buffering some shadow calculation + * LV_SHADOW_CACHE_SIZE is the max. shadow size to buffer, + * where shadow size is `shadow_width + radius` + * Caching has LV_SHADOW_CACHE_SIZE^2 RAM cost*/ +#define LV_SHADOW_CACHE_SIZE 0 +#endif + +/*1: enable outline drawing on rectangles*/ +#define LV_USE_OUTLINE 1 + +/*1: enable pattern drawing on rectangles*/ +#define LV_USE_PATTERN 1 + +/*1: enable value string drawing on rectangles*/ +#define LV_USE_VALUE_STR 1 + +/* 1: Use other blend modes than normal (`LV_BLEND_MODE_...`)*/ +#define LV_USE_BLEND_MODES 1 + +/* 1: Use the `opa_scale` style property to set the opacity of an object and its children at once*/ +#define LV_USE_OPA_SCALE 1 + +/* 1: Use image zoom and rotation*/ +#define LV_USE_IMG_TRANSFORM 1 + +/* 1: Enable object groups (for keyboard/encoder navigation) */ +#define LV_USE_GROUP 1 +#if LV_USE_GROUP +typedef void * lv_group_user_data_t; +#endif /*LV_USE_GROUP*/ + +/* 1: Enable GPU interface*/ +#define LV_USE_GPU 1 /*Only enables `gpu_fill_cb` and `gpu_blend_cb` in the disp. drv- */ +#define LV_USE_GPU_STM32_DMA2D 0 +/*If enabling LV_USE_GPU_STM32_DMA2D, LV_GPU_DMA2D_CMSIS_INCLUDE must be defined to include path of CMSIS header of target processor +e.g. "stm32f769xx.h" or "stm32f429xx.h" */ +#define LV_GPU_DMA2D_CMSIS_INCLUDE + +/*1: Use PXP for CPU off-load on NXP RTxxx platforms */ +#define LV_USE_GPU_NXP_PXP 0 + +/*1: Add default bare metal and FreeRTOS interrupt handling routines for PXP (lv_gpu_nxp_pxp_osa.c) + * and call lv_gpu_nxp_pxp_init() automatically during lv_init(). Note that symbol FSL_RTOS_FREE_RTOS + * has to be defined in order to use FreeRTOS OSA, otherwise bare-metal implementation is selected. + *0: lv_gpu_nxp_pxp_init() has to be called manually before lv_init() + * */ +#define LV_USE_GPU_NXP_PXP_AUTO_INIT 0 + +/*1: Use VG-Lite for CPU offload on NXP RTxxx platforms */ +#define LV_USE_GPU_NXP_VG_LITE 0 + +/* 1: Enable file system (might be required for images */ +#define LV_USE_FILESYSTEM 1 +#if LV_USE_FILESYSTEM +/*Declare the type of the user data of file system drivers (can be e.g. `void *`, `int`, `struct`)*/ +typedef void * lv_fs_drv_user_data_t; +#endif + +/*1: Add a `user_data` to drivers and objects*/ +#define LV_USE_USER_DATA 0 + +/*1: Show CPU usage and FPS count in the right bottom corner*/ +#define LV_USE_PERF_MONITOR 0 + +/*1: Use the functions and types from the older API if possible */ +#define LV_USE_API_EXTENSION_V6 1 +#define LV_USE_API_EXTENSION_V7 1 + +/*======================== + * Image decoder and cache + *========================*/ + +/* 1: Enable indexed (palette) images */ +#define LV_IMG_CF_INDEXED 1 + +/* 1: Enable alpha indexed images */ +#define LV_IMG_CF_ALPHA 1 + +/* Default image cache size. Image caching keeps the images opened. + * If only the built-in image formats are used there is no real advantage of caching. + * (I.e. no new image decoder is added) + * With complex image decoders (e.g. PNG or JPG) caching can save the continuous open/decode of images. + * However the opened images might consume additional RAM. + * LV_IMG_CACHE_DEF_SIZE must be >= 1 */ +#define LV_IMG_CACHE_DEF_SIZE 1 + +/*Declare the type of the user data of image decoder (can be e.g. `void *`, `int`, `struct`)*/ +typedef void * lv_img_decoder_user_data_t; + +/*===================== + * Compiler settings + *====================*/ + +/* For big endian systems set to 1 */ +#define LV_BIG_ENDIAN_SYSTEM 0 + +/* Define a custom attribute to `lv_tick_inc` function */ +#define LV_ATTRIBUTE_TICK_INC + +/* Define a custom attribute to `lv_task_handler` function */ +#define LV_ATTRIBUTE_TASK_HANDLER + +/* Define a custom attribute to `lv_disp_flush_ready` function */ +#define LV_ATTRIBUTE_FLUSH_READY + +/* Required alignment size for buffers */ +#define LV_ATTRIBUTE_MEM_ALIGN_SIZE + +/* With size optimization (-Os) the compiler might not align data to + * 4 or 8 byte boundary. Some HW may need even 32 or 64 bytes. + * This alignment will be explicitly applied where needed. + * LV_ATTRIBUTE_MEM_ALIGN_SIZE should be used to specify required align size. + * E.g. __attribute__((aligned(LV_ATTRIBUTE_MEM_ALIGN_SIZE))) */ +#define LV_ATTRIBUTE_MEM_ALIGN + +/* Attribute to mark large constant arrays for example + * font's bitmaps */ +#define LV_ATTRIBUTE_LARGE_CONST + +/* Prefix performance critical functions to place them into a faster memory (e.g RAM) + * Uses 15-20 kB extra memory */ +#define LV_ATTRIBUTE_FAST_MEM + +/* Export integer constant to binding. + * This macro is used with constants in the form of LV_ that + * should also appear on lvgl binding API such as Micropython + * + * The default value just prevents a GCC warning. + */ +#define LV_EXPORT_CONST_INT(int_value) struct _silence_gcc_warning + +/* Prefix variables that are used in GPU accelerated operations, often these need to be + * placed in RAM sections that are DMA accessible */ +#define LV_ATTRIBUTE_DMA + +/*=================== + * HAL settings + *==================*/ + +/* 1: use a custom tick source. + * It removes the need to manually update the tick with `lv_tick_inc`) */ +#define LV_TICK_CUSTOM 0 +#if LV_TICK_CUSTOM == 1 +#define LV_TICK_CUSTOM_INCLUDE "Arduino.h" /*Header for the system time function*/ +#define LV_TICK_CUSTOM_SYS_TIME_EXPR (millis()) /*Expression evaluating to current system time in ms*/ +#endif /*LV_TICK_CUSTOM*/ + +typedef void * lv_disp_drv_user_data_t; /*Type of user data in the display driver*/ +typedef void * lv_indev_drv_user_data_t; /*Type of user data in the input device driver*/ + +/*================ + * Log settings + *===============*/ + +/*1: Enable the log module*/ +#define LV_USE_LOG 0 +#if LV_USE_LOG +/* How important log should be added: + * LV_LOG_LEVEL_TRACE A lot of logs to give detailed information + * LV_LOG_LEVEL_INFO Log important events + * LV_LOG_LEVEL_WARN Log if something unwanted happened but didn't cause a problem + * LV_LOG_LEVEL_ERROR Only critical issue, when the system may fail + * LV_LOG_LEVEL_NONE Do not log anything + */ +# define LV_LOG_LEVEL LV_LOG_LEVEL_WARN + +/* 1: Print the log with 'printf'; + * 0: user need to register a callback with `lv_log_register_print_cb`*/ +# define LV_LOG_PRINTF 0 +#endif /*LV_USE_LOG*/ + +/*================= + * Debug settings + *================*/ + +/* If Debug is enabled LittelvGL validates the parameters of the functions. + * If an invalid parameter is found an error log message is printed and + * the MCU halts at the error. (`LV_USE_LOG` should be enabled) + * If you are debugging the MCU you can pause + * the debugger to see exactly where the issue is. + * + * The behavior of asserts can be overwritten by redefining them here. + * E.g. #define LV_ASSERT_MEM(p) + */ +#define LV_USE_DEBUG 1 +#if LV_USE_DEBUG + +/*Check if the parameter is NULL. (Quite fast) */ +#define LV_USE_ASSERT_NULL 1 + +/*Checks is the memory is successfully allocated or no. (Quite fast)*/ +#define LV_USE_ASSERT_MEM 1 + +/*Check the integrity of `lv_mem` after critical operations. (Slow)*/ +#define LV_USE_ASSERT_MEM_INTEGRITY 0 + +/* Check the strings. + * Search for NULL, very long strings, invalid characters, and unnatural repetitions. (Slow) + * If disabled `LV_USE_ASSERT_NULL` will be performed instead (if it's enabled) */ +#define LV_USE_ASSERT_STR 0 + +/* Check NULL, the object's type and existence (e.g. not deleted). (Quite slow) + * If disabled `LV_USE_ASSERT_NULL` will be performed instead (if it's enabled) */ +#define LV_USE_ASSERT_OBJ 0 + +/*Check if the styles are properly initialized. (Fast)*/ +#define LV_USE_ASSERT_STYLE 0 + +#endif /*LV_USE_DEBUG*/ + +/*================== + * FONT USAGE + *===================*/ + +/* The built-in fonts contains the ASCII range and some Symbols with 4 bit-per-pixel. + * The symbols are available via `LV_SYMBOL_...` defines + * More info about fonts: https://docs.lvgl.io/v7/en/html/overview/font.html + * To create a new font go to: https://lvgl.com/ttf-font-to-c-array + */ + +/* Montserrat fonts with bpp = 4 + * https://fonts.google.com/specimen/Montserrat */ +#define LV_FONT_MONTSERRAT_8 0 +#define LV_FONT_MONTSERRAT_10 0 +#define LV_FONT_MONTSERRAT_12 0 +#define LV_FONT_MONTSERRAT_14 1 +#define LV_FONT_MONTSERRAT_16 0 +#define LV_FONT_MONTSERRAT_18 0 +#define LV_FONT_MONTSERRAT_20 0 +#define LV_FONT_MONTSERRAT_22 0 +#define LV_FONT_MONTSERRAT_24 0 +#define LV_FONT_MONTSERRAT_26 0 +#define LV_FONT_MONTSERRAT_28 0 +#define LV_FONT_MONTSERRAT_30 0 +#define LV_FONT_MONTSERRAT_32 0 +#define LV_FONT_MONTSERRAT_34 0 +#define LV_FONT_MONTSERRAT_36 0 +#define LV_FONT_MONTSERRAT_38 0 +#define LV_FONT_MONTSERRAT_40 0 +#define LV_FONT_MONTSERRAT_42 0 +#define LV_FONT_MONTSERRAT_44 0 +#define LV_FONT_MONTSERRAT_46 0 +#define LV_FONT_MONTSERRAT_48 0 + +/* Demonstrate special features */ +#define LV_FONT_MONTSERRAT_12_SUBPX 0 +#define LV_FONT_MONTSERRAT_28_COMPRESSED 0 /*bpp = 3*/ +#define LV_FONT_DEJAVU_16_PERSIAN_HEBREW 0 /*Hebrew, Arabic, PErisan letters and all their forms*/ +#define LV_FONT_SIMSUN_16_CJK 0 /*1000 most common CJK radicals*/ + +/*Pixel perfect monospace font + * http://pelulamu.net/unscii/ */ +#define LV_FONT_UNSCII_8 0 + +/* Optionally declare your custom fonts here. + * You can use these fonts as default font too + * and they will be available globally. E.g. + * #define LV_FONT_CUSTOM_DECLARE LV_FONT_DECLARE(my_font_1) \ + * LV_FONT_DECLARE(my_font_2) + */ +#define LV_FONT_CUSTOM_DECLARE LV_FONT_DECLARE(font_nucleo_14) + +/* Enable it if you have fonts with a lot of characters. + * The limit depends on the font size, font face and bpp + * but with > 10,000 characters if you see issues probably you need to enable it.*/ +#define LV_FONT_FMT_TXT_LARGE 0 + +/* Enables/disables support for compressed fonts. If it's disabled, compressed + * glyphs cannot be processed by the library and won't be rendered. + */ +#define LV_USE_FONT_COMPRESSED 1 + +/* Enable subpixel rendering */ +#define LV_USE_FONT_SUBPX 1 +#if LV_USE_FONT_SUBPX +/* Set the pixel order of the display. + * Important only if "subpx fonts" are used. + * With "normal" font it doesn't matter. + */ +#define LV_FONT_SUBPX_BGR 0 +#endif + +/*Declare the type of the user data of fonts (can be e.g. `void *`, `int`, `struct`)*/ +typedef void * lv_font_user_data_t; + +/*================ + * THEME USAGE + *================*/ + +/*Always enable at least on theme*/ + +/* No theme, you can apply your styles as you need + * No flags. Set LV_THEME_DEFAULT_FLAG 0 */ +#define LV_USE_THEME_EMPTY 1 + +/*Simple to the create your theme based on it + * No flags. Set LV_THEME_DEFAULT_FLAG 0 */ +#define LV_USE_THEME_TEMPLATE 1 + +/* A fast and impressive theme. + * Flags: + * LV_THEME_MATERIAL_FLAG_LIGHT: light theme + * LV_THEME_MATERIAL_FLAG_DARK: dark theme + * LV_THEME_MATERIAL_FLAG_NO_TRANSITION: disable transitions (state change animations) + * LV_THEME_MATERIAL_FLAG_NO_FOCUS: disable indication of focused state) + * */ +#define LV_USE_THEME_MATERIAL 1 + +/* Mono-color theme for monochrome displays. + * If LV_THEME_DEFAULT_COLOR_PRIMARY is LV_COLOR_BLACK the + * texts and borders will be black and the background will be + * white. Else the colors are inverted. + * No flags. Set LV_THEME_DEFAULT_FLAG 0 */ +#define LV_USE_THEME_MONO 1 + +#define LV_THEME_DEFAULT_INCLUDE /*Include a header for the init. function*/ +#define LV_THEME_DEFAULT_INIT lv_theme_material_init +#define LV_THEME_DEFAULT_COLOR_PRIMARY lv_color_hex(0x01a2b1) +#define LV_THEME_DEFAULT_COLOR_SECONDARY lv_color_hex(0x44d1b6) +#define LV_THEME_DEFAULT_FLAG LV_THEME_MATERIAL_FLAG_LIGHT | LV_THEME_MATERIAL_FLAG_NO_FOCUS +#define LV_THEME_DEFAULT_FONT_SMALL &font_nucleo_14 +#define LV_THEME_DEFAULT_FONT_NORMAL &font_nucleo_14 +#define LV_THEME_DEFAULT_FONT_SUBTITLE &font_nucleo_14 +#define LV_THEME_DEFAULT_FONT_TITLE &font_nucleo_14 + +/*================= + * Text settings + *=================*/ + +/* Select a character encoding for strings. + * Your IDE or editor should have the same character encoding + * - LV_TXT_ENC_UTF8 + * - LV_TXT_ENC_ASCII + * */ +#define LV_TXT_ENC LV_TXT_ENC_UTF8 + + /*Can break (wrap) texts on these chars*/ +#define LV_TXT_BREAK_CHARS " ,.;:-_" + +/* If a word is at least this long, will break wherever "prettiest" + * To disable, set to a value <= 0 */ +#define LV_TXT_LINE_BREAK_LONG_LEN 0 + +/* Minimum number of characters in a long word to put on a line before a break. + * Depends on LV_TXT_LINE_BREAK_LONG_LEN. */ +#define LV_TXT_LINE_BREAK_LONG_PRE_MIN_LEN 3 + +/* Minimum number of characters in a long word to put on a line after a break. + * Depends on LV_TXT_LINE_BREAK_LONG_LEN. */ +#define LV_TXT_LINE_BREAK_LONG_POST_MIN_LEN 3 + +/* The control character to use for signalling text recoloring. */ +#define LV_TXT_COLOR_CMD "#" + +/* Support bidirectional texts. + * Allows mixing Left-to-Right and Right-to-Left texts. + * The direction will be processed according to the Unicode Bidirectioanl Algorithm: + * https://www.w3.org/International/articles/inline-bidi-markup/uba-basics*/ +#define LV_USE_BIDI 0 +#if LV_USE_BIDI +/* Set the default direction. Supported values: + * `LV_BIDI_DIR_LTR` Left-to-Right + * `LV_BIDI_DIR_RTL` Right-to-Left + * `LV_BIDI_DIR_AUTO` detect texts base direction */ +#define LV_BIDI_BASE_DIR_DEF LV_BIDI_DIR_AUTO +#endif + +/* Enable Arabic/Persian processing + * In these languages characters should be replaced with + * an other form based on their position in the text */ +#define LV_USE_ARABIC_PERSIAN_CHARS 0 + +/*Change the built in (v)snprintf functions*/ +#define LV_SPRINTF_CUSTOM 0 +#if LV_SPRINTF_CUSTOM +# define LV_SPRINTF_INCLUDE +# define lv_snprintf snprintf +# define lv_vsnprintf vsnprintf +#else /*!LV_SPRINTF_CUSTOM*/ +# define LV_SPRINTF_DISABLE_FLOAT 1 +#endif /*LV_SPRINTF_CUSTOM*/ + +/*=================== + * LV_OBJ SETTINGS + *==================*/ + +#if LV_USE_USER_DATA +/*Declare the type of the user data of object (can be e.g. `void *`, `int`, `struct`)*/ +typedef void * lv_obj_user_data_t; +/*Provide a function to free user data*/ +#define LV_USE_USER_DATA_FREE 0 +#if LV_USE_USER_DATA_FREE +# define LV_USER_DATA_FREE_INCLUDE "something.h" /*Header for user data free function*/ +/* Function prototype : void user_data_free(lv_obj_t * obj); */ +# define LV_USER_DATA_FREE (user_data_free) /*Invoking for user data free function*/ +#endif +#endif + +/*1: enable `lv_obj_realign()` based on `lv_obj_align()` parameters*/ +#define LV_USE_OBJ_REALIGN 1 + +/* Enable to make the object clickable on a larger area. + * LV_EXT_CLICK_AREA_OFF or 0: Disable this feature + * LV_EXT_CLICK_AREA_TINY: The extra area can be adjusted horizontally and vertically (0..255 px) + * LV_EXT_CLICK_AREA_FULL: The extra area can be adjusted in all 4 directions (-32k..+32k px) + */ +#define LV_USE_EXT_CLICK_AREA LV_EXT_CLICK_AREA_TINY + +/*================== + * LV OBJ X USAGE + *================*/ +/* + * Documentation of the object types: https://docs.lvgl.com/#Object-types + */ + +/*Arc (dependencies: -)*/ +#define LV_USE_ARC 1 + +/*Bar (dependencies: -)*/ +#define LV_USE_BAR 1 + +/*Button (dependencies: lv_cont*/ +#define LV_USE_BTN 1 + +/*Button matrix (dependencies: -)*/ +#define LV_USE_BTNMATRIX 1 + +/*Calendar (dependencies: -)*/ +#define LV_USE_CALENDAR 1 +#if LV_USE_CALENDAR +# define LV_CALENDAR_WEEK_STARTS_MONDAY 0 +#endif + +/*Canvas (dependencies: lv_img)*/ +#define LV_USE_CANVAS 1 + +/*Check box (dependencies: lv_btn, lv_label)*/ +#define LV_USE_CHECKBOX 1 + +/*Chart (dependencies: -)*/ +#define LV_USE_CHART 1 +#if LV_USE_CHART +# define LV_CHART_AXIS_TICK_LABEL_MAX_LEN 256 +#endif + +/*Container (dependencies: -*/ +#define LV_USE_CONT 1 + +/*Color picker (dependencies: -*/ +#define LV_USE_CPICKER 1 + +/*Drop down list (dependencies: lv_page, lv_label, lv_symbol_def.h)*/ +#define LV_USE_DROPDOWN 1 +#if LV_USE_DROPDOWN != 0 +/*Open and close default animation time [ms] (0: no animation)*/ +# define LV_DROPDOWN_DEF_ANIM_TIME 200 +#endif + +/*Gauge (dependencies:lv_bar, lv_linemeter)*/ +#define LV_USE_GAUGE 1 + +/*Image (dependencies: lv_label*/ +#define LV_USE_IMG 1 + +/*Image Button (dependencies: lv_btn*/ +#define LV_USE_IMGBTN 1 +#if LV_USE_IMGBTN +/*1: The imgbtn requires left, mid and right parts and the width can be set freely*/ +# define LV_IMGBTN_TILED 0 +#endif + +/*Keyboard (dependencies: lv_btnm)*/ +#define LV_USE_KEYBOARD 1 + +/*Label (dependencies: -*/ +#define LV_USE_LABEL 1 +#if LV_USE_LABEL != 0 +/*Hor, or ver. scroll speed [px/sec] in 'LV_LABEL_LONG_ROLL/ROLL_CIRC' mode*/ +# define LV_LABEL_DEF_SCROLL_SPEED 25 + +/* Waiting period at beginning/end of animation cycle */ +# define LV_LABEL_WAIT_CHAR_COUNT 3 + +/*Enable selecting text of the label */ +# define LV_LABEL_TEXT_SEL 0 + +/*Store extra some info in labels (12 bytes) to speed up drawing of very long texts*/ +# define LV_LABEL_LONG_TXT_HINT 0 +#endif + +/*LED (dependencies: -)*/ +#define LV_USE_LED 1 +#if LV_USE_LED +# define LV_LED_BRIGHT_MIN 120 /*Minimal brightness*/ +# define LV_LED_BRIGHT_MAX 255 /*Maximal brightness*/ +#endif + +/*Line (dependencies: -*/ +#define LV_USE_LINE 1 + +/*List (dependencies: lv_page, lv_btn, lv_label, (lv_img optionally for icons ))*/ +#define LV_USE_LIST 1 +#if LV_USE_LIST != 0 +/*Default animation time of focusing to a list element [ms] (0: no animation) */ +# define LV_LIST_DEF_ANIM_TIME 100 +#endif + +/*Line meter (dependencies: *;)*/ +#define LV_USE_LINEMETER 1 +#if LV_USE_LINEMETER +/* Draw line more precisely at cost of performance. + * Useful if there are lot of lines any minor are visible + * 0: No extra precision + * 1: Some extra precision + * 2: Best precision + */ +# define LV_LINEMETER_PRECISE 1 +#endif + +/*Mask (dependencies: -)*/ +#define LV_USE_OBJMASK 1 + +/*Message box (dependencies: lv_rect, lv_btnm, lv_label)*/ +#define LV_USE_MSGBOX 1 + +/*Page (dependencies: lv_cont)*/ +#define LV_USE_PAGE 1 +#if LV_USE_PAGE != 0 +/*Focus default animation time [ms] (0: no animation)*/ +# define LV_PAGE_DEF_ANIM_TIME 400 +#endif + +/*Preload (dependencies: lv_arc, lv_anim)*/ +#define LV_USE_SPINNER 1 +#if LV_USE_SPINNER != 0 +# define LV_SPINNER_DEF_ARC_LENGTH 60 /*[deg]*/ +# define LV_SPINNER_DEF_SPIN_TIME 1000 /*[ms]*/ +# define LV_SPINNER_DEF_ANIM LV_SPINNER_TYPE_SPINNING_ARC +#endif + +/*Roller (dependencies: lv_ddlist)*/ +#define LV_USE_ROLLER 1 +#if LV_USE_ROLLER != 0 +/*Focus animation time [ms] (0: no animation)*/ +# define LV_ROLLER_DEF_ANIM_TIME 200 + +/*Number of extra "pages" when the roller is infinite*/ +# define LV_ROLLER_INF_PAGES 7 +#endif + +/*Slider (dependencies: lv_bar)*/ +#define LV_USE_SLIDER 1 + +/*Spinbox (dependencies: lv_ta)*/ +#define LV_USE_SPINBOX 1 + +/*Switch (dependencies: lv_slider)*/ +#define LV_USE_SWITCH 1 + +/*Text area (dependencies: lv_label, lv_page)*/ +#define LV_USE_TEXTAREA 1 +#if LV_USE_TEXTAREA != 0 +# define LV_TEXTAREA_DEF_CURSOR_BLINK_TIME 400 /*ms*/ +# define LV_TEXTAREA_DEF_PWD_SHOW_TIME 1500 /*ms*/ +#endif + +/*Table (dependencies: lv_label)*/ +#define LV_USE_TABLE 1 +#if LV_USE_TABLE +# define LV_TABLE_COL_MAX 12 +# define LV_TABLE_CELL_STYLE_CNT 4 +#endif + + +/*Tab (dependencies: lv_page, lv_btnm)*/ +#define LV_USE_TABVIEW 1 +# if LV_USE_TABVIEW != 0 +/*Time of slide animation [ms] (0: no animation)*/ +# define LV_TABVIEW_DEF_ANIM_TIME 300 +#endif + +/*Tileview (dependencies: lv_page) */ +#define LV_USE_TILEVIEW 1 +#if LV_USE_TILEVIEW +/*Time of slide animation [ms] (0: no animation)*/ +# define LV_TILEVIEW_DEF_ANIM_TIME 300 +#endif + +/*Window (dependencies: lv_cont, lv_btn, lv_label, lv_img, lv_page)*/ +#define LV_USE_WIN 1 + +/*================== + * Non-user section + *==================*/ + +#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) /* Disable warnings for Visual Studio*/ +# define _CRT_SECURE_NO_WARNINGS +#endif + +/*--END OF LV_CONF_H--*/ + +#endif /*LV_CONF_H*/ + +#endif /*End of "Content enable"*/ + +//Added by Sloeber +#pragma once