first commit
@@ -0,0 +1,6 @@
|
||||
# The following five lines of boilerplate have to be in your project's
|
||||
# CMakeLists in this exact order for cmake to work correctly
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
|
||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||
project(battery_adc_with_display)
|
||||
@@ -0,0 +1,102 @@
|
||||
dependencies:
|
||||
espressif/cmake_utilities:
|
||||
component_hash: 351350613ceafba240b761b4ea991e0f231ac7a9f59a9ee901f751bddc0bb18f
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.1'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 0.5.3
|
||||
espressif/esp_lcd_touch:
|
||||
component_hash: 779b4ba2464a3ae85681e4b860caa5fdc35801458c23f3039ee761bae7f442a4
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.4.2'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.1.2
|
||||
espressif/esp_lcd_touch_gt911:
|
||||
component_hash: acc1c184358aa29ef72506f618c9c76a8cc2bf12af38a2bff3d44d84f3a08857
|
||||
dependencies:
|
||||
- name: espressif/esp_lcd_touch
|
||||
registry_url: https://components.espressif.com
|
||||
require: public
|
||||
version: ^1.1.0
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.4.2'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
version: 1.1.3
|
||||
espressif/esp_lvgl_port:
|
||||
component_hash: e720c95cf0667554a204591bb5fade4655fb2990465557041200fa44b5bc7556
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.4'
|
||||
- name: lvgl/lvgl
|
||||
registry_url: https://components.espressif.com
|
||||
require: public
|
||||
version: '>=8,<10'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
version: 2.6.0
|
||||
espressif/i2c_bus:
|
||||
component_hash: e3dddc78baa172f4768f3973fbecbd6c6c1f2cb23cc6a36cf3132758be092482
|
||||
dependencies:
|
||||
- name: espressif/cmake_utilities
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: 0.*
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.0'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.4.0
|
||||
idf:
|
||||
source:
|
||||
type: idf
|
||||
version: 6.0.0
|
||||
lvgl/lvgl:
|
||||
component_hash: d7c1ac037ae6e85d94897f807d6e7ba0946a83e720074fc95a4f6241da9f9f53
|
||||
dependencies: []
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
version: 8.4.0
|
||||
waveshare/esp_lcd_jd9365_10_1:
|
||||
component_hash: 148d03ade699a7fa0f08c98e86c1df3d32e92580fac421c04e0ee5b779e86267
|
||||
dependencies:
|
||||
- name: espressif/cmake_utilities
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: 0.*
|
||||
- name: espressif/i2c_bus
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ^1.3.0
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=5.3'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
targets:
|
||||
- esp32p4
|
||||
version: 1.0.3
|
||||
direct_dependencies:
|
||||
- espressif/esp_lcd_touch_gt911
|
||||
- espressif/esp_lvgl_port
|
||||
- lvgl/lvgl
|
||||
- waveshare/esp_lcd_jd9365_10_1
|
||||
manifest_hash: 20a2057422e78de8dbc6744f0985070a13a76f7337d34a09e1b0ba474b066ee3
|
||||
target: esp32p4
|
||||
version: 2.0.0
|
||||
@@ -0,0 +1,2 @@
|
||||
idf_component_register(SRCS "battery_adc_with_display.c"
|
||||
INCLUDE_DIRS ".")
|
||||
@@ -0,0 +1,446 @@
|
||||
#include "freertos/FreeRTOS.h"
|
||||
#include "freertos/task.h"
|
||||
#include "driver/gpio.h"
|
||||
#include "driver/ledc.h"
|
||||
#include "driver/i2c_master.h"
|
||||
#include "nvs_flash.h"
|
||||
#include "nvs.h"
|
||||
#include "esp_log.h"
|
||||
#include "esp_err.h"
|
||||
#include "esp_check.h"
|
||||
#include "esp_memory_utils.h"
|
||||
|
||||
#include "esp_lcd_panel_ops.h"
|
||||
#include "esp_lcd_mipi_dsi.h"
|
||||
#include "esp_ldo_regulator.h"
|
||||
#include "esp_vfs_fat.h"
|
||||
#include "sd_pwr_ctrl_by_on_chip_ldo.h"
|
||||
|
||||
#include "esp_adc/adc_oneshot.h"
|
||||
#include "esp_adc/adc_cali.h"
|
||||
#include "esp_adc/adc_cali_scheme.h"
|
||||
|
||||
#include "esp_lcd_jd9365_10_1.h"
|
||||
#include "esp_lcd_touch_gt911.h"
|
||||
|
||||
#include "lvgl.h"
|
||||
#include "lv_demos.h"
|
||||
#include "esp_lvgl_port.h"
|
||||
|
||||
#define TAG "main"
|
||||
|
||||
|
||||
#define BSP_MIPI_DSI_PHY_PWR_LDO_CHAN (3) // LDO_VO3 is connected to VDD_MIPI_DPHY
|
||||
#define BSP_MIPI_DSI_PHY_PWR_LDO_VOLTAGE_MV (2500)
|
||||
|
||||
#define BSP_LCD_DPI_BUFFER_NUMS (2)
|
||||
|
||||
#define BSP_LCD_H_RES (800)
|
||||
#define BSP_LCD_V_RES (1280)
|
||||
|
||||
#define BSP_I2C_NUM (I2C_NUM_1)
|
||||
#define BSP_I2C_SDA (GPIO_NUM_7)
|
||||
#define BSP_I2C_SCL (GPIO_NUM_8)
|
||||
|
||||
#define BSP_LCD_TOUCH_RST (GPIO_NUM_NC)
|
||||
#define BSP_LCD_TOUCH_INT (GPIO_NUM_NC)
|
||||
|
||||
#define BSP_LCD_RST (GPIO_NUM_NC)
|
||||
#define BSP_LCD_BACKLIGHT (GPIO_NUM_NC)
|
||||
|
||||
#define EXAMPLE_ADC2_CHAN0 ADC_CHANNEL_4
|
||||
#define EXAMPLE_ADC_ATTEN ADC_ATTEN_DB_12
|
||||
|
||||
#define V_C_MAX (2450) // Charge to the maximum capacity
|
||||
#define V_C_MIN (2050) //Charge to the minimum capacity
|
||||
|
||||
#define V_MAX (2200) //Maximum battery capacity
|
||||
#define V_MIN (1800) //Minimum battery capacity
|
||||
|
||||
static int adc_raw;
|
||||
static int adc_raw_;
|
||||
static int adc_raw_tep;
|
||||
static int voltage_;
|
||||
static int voltage;
|
||||
static int voltage_per;
|
||||
static int voltage_per_;
|
||||
static int cnt = 0;
|
||||
static bool charging_ = false;
|
||||
static bool example_adc_calibration_init(adc_unit_t unit, adc_channel_t channel, adc_atten_t atten, adc_cali_handle_t *out_handle);
|
||||
static void example_adc_calibration_deinit(adc_cali_handle_t handle);
|
||||
|
||||
static lv_obj_t *obj = NULL;
|
||||
static lv_obj_t *label = NULL;
|
||||
static lv_obj_t *label2 = NULL;
|
||||
static lv_obj_t *label3 = NULL;
|
||||
static lv_obj_t *label4 = NULL;
|
||||
|
||||
i2c_master_bus_handle_t i2c_handle = NULL;
|
||||
|
||||
static void battery_test(void *arg)
|
||||
{
|
||||
adc_oneshot_chan_cfg_t config = {
|
||||
.atten = EXAMPLE_ADC_ATTEN,
|
||||
.bitwidth = ADC_BITWIDTH_DEFAULT,
|
||||
};
|
||||
//-------------ADC2 Init---------------//
|
||||
adc_oneshot_unit_handle_t adc2_handle;
|
||||
adc_oneshot_unit_init_cfg_t init_config2 = {
|
||||
.unit_id = ADC_UNIT_2,
|
||||
.ulp_mode = ADC_ULP_MODE_DISABLE,
|
||||
};
|
||||
ESP_ERROR_CHECK(adc_oneshot_new_unit(&init_config2, &adc2_handle));
|
||||
|
||||
//-------------ADC2 Calibration Init---------------//
|
||||
adc_cali_handle_t adc2_cali_handle = NULL;
|
||||
bool do_calibration2 = example_adc_calibration_init(ADC_UNIT_2, EXAMPLE_ADC2_CHAN0, EXAMPLE_ADC_ATTEN, &adc2_cali_handle);
|
||||
|
||||
//-------------ADC2 Config---------------//
|
||||
ESP_ERROR_CHECK(adc_oneshot_config_channel(adc2_handle, EXAMPLE_ADC2_CHAN0, &config));
|
||||
|
||||
while (1) {
|
||||
for(int i=0;i<500;i++)
|
||||
{
|
||||
ESP_ERROR_CHECK(adc_oneshot_read(adc2_handle, EXAMPLE_ADC2_CHAN0,&adc_raw));
|
||||
adc_raw_ += adc_raw;
|
||||
}
|
||||
adc_raw_tep = adc_raw_;
|
||||
adc_raw_ = adc_raw_ / 500;
|
||||
|
||||
if((adc_raw_tep - adc_raw_ > 50) && !charging_)
|
||||
{
|
||||
charging_ = true;
|
||||
}
|
||||
|
||||
if(!charging_)
|
||||
{
|
||||
if(adc_raw_ - adc_raw_tep > 0)
|
||||
cnt++;
|
||||
else
|
||||
cnt = 0;
|
||||
|
||||
if(cnt > 3)
|
||||
charging_ = true;
|
||||
}
|
||||
|
||||
ESP_LOGI(TAG, "ADC%d Channel[%d] Raw Data: %d", ADC_UNIT_2 + 1, EXAMPLE_ADC2_CHAN0, adc_raw_);
|
||||
|
||||
if (do_calibration2) {
|
||||
ESP_ERROR_CHECK(adc_cali_raw_to_voltage(adc2_cali_handle, adc_raw_, &voltage));
|
||||
ESP_LOGI(TAG, "ADC%d Channel[%d] Cali Voltage: %d mV", ADC_UNIT_2 + 1, EXAMPLE_ADC2_CHAN0, voltage);
|
||||
}
|
||||
|
||||
if(voltage > 2300 && !charging_)
|
||||
{
|
||||
charging_ = true;
|
||||
}
|
||||
|
||||
if(charging_)
|
||||
{
|
||||
voltage_ = voltage - V_C_MIN;
|
||||
if(voltage_ < 0)
|
||||
voltage_ = 0;
|
||||
voltage_per_ = voltage_per;
|
||||
voltage_per = voltage_ * 10000 / (V_C_MAX - V_C_MIN) / 100 ;
|
||||
voltage_per = (voltage_per_ + voltage_per) / 2;
|
||||
if(voltage_per > 100)
|
||||
voltage_per = 100;
|
||||
}
|
||||
else
|
||||
{
|
||||
voltage_ = voltage - V_MIN;
|
||||
if(voltage_ < 0)
|
||||
voltage_ = 0;
|
||||
voltage_per_ = voltage_per;
|
||||
voltage_per = voltage_ * 10000 / (V_MAX - V_MIN) / 100 ;
|
||||
voltage_per = (voltage_per_ + voltage_per) / 2;
|
||||
if(voltage_per > 100)
|
||||
voltage_per = 100;
|
||||
if(voltage_per <= 0 )
|
||||
voltage_per = 1;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
ESP_LOGI(TAG,"Battery charge: %d %%",voltage_per);
|
||||
|
||||
lvgl_port_lock(-1);
|
||||
|
||||
if(charging_)
|
||||
lv_label_set_text(label4,"Charging status : Charging");
|
||||
else
|
||||
lv_label_set_text(label4,"Charging status : Discharging");
|
||||
|
||||
lv_label_set_text_fmt(label,"ADC%d Channel[%d] Raw Data: %d", ADC_UNIT_2 + 1, EXAMPLE_ADC2_CHAN0, adc_raw_);
|
||||
lv_label_set_text_fmt(label2,"ADC%d Channel[%d] Cali Voltage: %d mV", ADC_UNIT_2 + 1, EXAMPLE_ADC2_CHAN0, voltage);
|
||||
lv_label_set_text_fmt(label3,"Battery charge: %d %%",voltage_per);
|
||||
lvgl_port_unlock();
|
||||
|
||||
vTaskDelay(pdMS_TO_TICKS(1000));
|
||||
}
|
||||
|
||||
|
||||
//Tear Down
|
||||
ESP_ERROR_CHECK(adc_oneshot_del_unit(adc2_handle));
|
||||
if (do_calibration2) {
|
||||
example_adc_calibration_deinit(adc2_cali_handle);
|
||||
}
|
||||
|
||||
vTaskDelete(NULL);
|
||||
}
|
||||
|
||||
static esp_err_t bsp_display_brightness_set(int brightness_percent)
|
||||
{
|
||||
if (brightness_percent > 100) {
|
||||
brightness_percent = 100;
|
||||
}
|
||||
if (brightness_percent < 0) {
|
||||
brightness_percent = 0;
|
||||
}
|
||||
|
||||
uint8_t data = (uint8_t)(255 * brightness_percent * 0.01);
|
||||
uint8_t chip_addr = 0x45;
|
||||
|
||||
uint8_t data_addr = 0x96;
|
||||
uint8_t data_to_send[2] = {data_addr, data};
|
||||
|
||||
i2c_device_config_t i2c_dev_conf = {
|
||||
.scl_speed_hz = 100 * 1000,
|
||||
.device_address = chip_addr,
|
||||
};
|
||||
|
||||
i2c_master_dev_handle_t dev_handle = NULL;
|
||||
if (i2c_master_bus_add_device(i2c_handle, &i2c_dev_conf, &dev_handle) != ESP_OK)
|
||||
{
|
||||
return ESP_FAIL;
|
||||
}
|
||||
|
||||
esp_err_t ret = i2c_master_transmit(dev_handle, data_to_send, sizeof(data_to_send), 50);
|
||||
if (ret != ESP_OK)
|
||||
{
|
||||
i2c_master_bus_rm_device(dev_handle);
|
||||
return ret;
|
||||
}
|
||||
|
||||
i2c_master_bus_rm_device(dev_handle);
|
||||
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
|
||||
void app_main(void)
|
||||
{
|
||||
|
||||
i2c_master_bus_config_t i2c_bus_conf = {
|
||||
.clk_source = I2C_CLK_SRC_DEFAULT,
|
||||
.sda_io_num = BSP_I2C_SDA,
|
||||
.scl_io_num = BSP_I2C_SCL,
|
||||
.i2c_port = BSP_I2C_NUM,
|
||||
};
|
||||
i2c_new_master_bus(&i2c_bus_conf, &i2c_handle);
|
||||
|
||||
static esp_ldo_channel_handle_t phy_pwr_chan = NULL;
|
||||
esp_ldo_channel_config_t ldo_cfg = {
|
||||
.chan_id = BSP_MIPI_DSI_PHY_PWR_LDO_CHAN,
|
||||
.voltage_mv = BSP_MIPI_DSI_PHY_PWR_LDO_VOLTAGE_MV,
|
||||
};
|
||||
esp_ldo_acquire_channel(&ldo_cfg, &phy_pwr_chan);
|
||||
ESP_LOGI(TAG, "MIPI DSI PHY Powered on");
|
||||
|
||||
esp_lcd_dsi_bus_handle_t mipi_dsi_bus;
|
||||
esp_lcd_dsi_bus_config_t bus_config = JD9365_PANEL_BUS_DSI_2CH_CONFIG();
|
||||
|
||||
esp_lcd_new_dsi_bus(&bus_config, &mipi_dsi_bus);
|
||||
|
||||
ESP_LOGI(TAG, "Install MIPI DSI LCD control panel");
|
||||
// we use DBI interface to send LCD commands and parameters
|
||||
esp_lcd_panel_io_handle_t io;
|
||||
esp_lcd_dbi_io_config_t dbi_config =JD9365_PANEL_IO_DBI_CONFIG();
|
||||
|
||||
esp_lcd_new_panel_io_dbi(mipi_dsi_bus, &dbi_config, &io);
|
||||
|
||||
esp_lcd_panel_handle_t disp_panel = NULL;
|
||||
esp_lcd_dpi_panel_config_t dpi_config = JD9365_800_1280_PANEL_60HZ_DPI_CONFIG(LCD_COLOR_PIXEL_FORMAT_RGB565);
|
||||
|
||||
dpi_config.num_fbs = BSP_LCD_DPI_BUFFER_NUMS;
|
||||
|
||||
jd9365_vendor_config_t vendor_config = {
|
||||
.flags = {
|
||||
.use_mipi_interface = 1,
|
||||
},
|
||||
.mipi_config = {
|
||||
.dsi_bus = mipi_dsi_bus,
|
||||
.dpi_config = &dpi_config,
|
||||
.lane_num = 2
|
||||
},
|
||||
};
|
||||
esp_lcd_panel_dev_config_t lcd_dev_config = {
|
||||
.bits_per_pixel = 16,
|
||||
.rgb_ele_order = ESP_LCD_COLOR_SPACE_RGB,
|
||||
.reset_gpio_num = BSP_LCD_RST,
|
||||
.vendor_config = &vendor_config,
|
||||
};
|
||||
esp_lcd_new_panel_jd9365(io, &lcd_dev_config, &disp_panel);
|
||||
esp_lcd_panel_reset(disp_panel);
|
||||
esp_lcd_panel_init(disp_panel);
|
||||
|
||||
const esp_lcd_touch_config_t tp_cfg = {
|
||||
.x_max = BSP_LCD_H_RES,
|
||||
.y_max = BSP_LCD_V_RES,
|
||||
.rst_gpio_num = BSP_LCD_TOUCH_RST, // Shared with LCD reset
|
||||
.int_gpio_num = BSP_LCD_TOUCH_INT,
|
||||
.levels = {
|
||||
.reset = 0,
|
||||
.interrupt = 0,
|
||||
},
|
||||
.flags = {
|
||||
.swap_xy = 0,
|
||||
.mirror_x = 0,
|
||||
.mirror_y = 0,
|
||||
},
|
||||
};
|
||||
esp_lcd_panel_io_handle_t tp_io_handle = NULL;
|
||||
esp_lcd_touch_handle_t tp;
|
||||
esp_lcd_panel_io_i2c_config_t tp_io_config = ESP_LCD_TOUCH_IO_I2C_GT911_CONFIG();
|
||||
tp_io_config.scl_speed_hz = 100000;
|
||||
esp_lcd_new_panel_io_i2c(i2c_handle, &tp_io_config, &tp_io_handle);
|
||||
esp_lcd_touch_new_i2c_gt911(tp_io_handle, &tp_cfg, &tp);
|
||||
|
||||
lvgl_port_cfg_t lv_Port = ESP_LVGL_PORT_INIT_CONFIG();
|
||||
lvgl_port_init(&lv_Port);
|
||||
|
||||
ESP_LOGD(TAG, "Add LCD screen");
|
||||
const lvgl_port_display_cfg_t disp_cfg = {
|
||||
.io_handle = io,
|
||||
.panel_handle = disp_panel,
|
||||
.control_handle = NULL,
|
||||
.buffer_size = BSP_LCD_H_RES *80,
|
||||
.double_buffer = false,
|
||||
.hres = BSP_LCD_H_RES,
|
||||
.vres = BSP_LCD_V_RES,
|
||||
.monochrome = false,
|
||||
/* Rotation values must be same as used in esp_lcd for initial settings of the screen */
|
||||
.rotation = {
|
||||
.swap_xy = false,
|
||||
.mirror_x = false,
|
||||
.mirror_y = false,
|
||||
},
|
||||
// .color_format = LV_COLOR_FORMAT_RGB565,
|
||||
.flags = {
|
||||
.buff_dma = true,
|
||||
.buff_spiram =false,
|
||||
.sw_rotate = false, /* Avoid tearing is not supported for SW rotation */
|
||||
.direct_mode = true,
|
||||
// .full_refresh = true,
|
||||
}
|
||||
};
|
||||
|
||||
const lvgl_port_display_dsi_cfg_t dpi_cfg = {
|
||||
.flags = {
|
||||
.avoid_tearing = true,
|
||||
}
|
||||
};
|
||||
|
||||
lv_display_t *disp =lvgl_port_add_disp_dsi(&disp_cfg, &dpi_cfg);
|
||||
|
||||
const lvgl_port_touch_cfg_t touch_cfg = {
|
||||
.disp = disp,
|
||||
.handle = tp,
|
||||
};
|
||||
|
||||
lvgl_port_add_touch(&touch_cfg);
|
||||
|
||||
bsp_display_brightness_set(100);
|
||||
|
||||
lvgl_port_lock(0);
|
||||
// lv_demo_music();
|
||||
// lv_demo_benchmark();
|
||||
// lv_demo_widgets();
|
||||
obj = lv_obj_create(lv_scr_act());
|
||||
lv_obj_set_size(obj,800,1280);
|
||||
|
||||
label = lv_label_create(obj);
|
||||
lv_obj_center(label);
|
||||
lv_label_set_text_fmt(label,"ADC%d Channel[%d] Raw Data: %d", ADC_UNIT_2 + 1, EXAMPLE_ADC2_CHAN0, adc_raw_);
|
||||
|
||||
label2 = lv_label_create(obj);
|
||||
lv_obj_align_to(label2,label,LV_ALIGN_OUT_BOTTOM_LEFT,0,5);
|
||||
lv_label_set_text_fmt(label2,"ADC%d Channel[%d] Cali Voltage: %d mV", ADC_UNIT_2 + 1, EXAMPLE_ADC2_CHAN0, voltage);
|
||||
|
||||
label3 = lv_label_create(obj);
|
||||
lv_obj_align_to(label3,label2,LV_ALIGN_OUT_BOTTOM_LEFT,0,5);
|
||||
lv_label_set_text_fmt(label3,"Battery charge: %d %%",voltage_per);
|
||||
|
||||
label4 = lv_label_create(obj);
|
||||
lv_obj_align_to(label4,label,LV_ALIGN_OUT_TOP_LEFT,0,-5);
|
||||
if(charging_)
|
||||
lv_label_set_text(label4,"Charging status : Charging");
|
||||
else
|
||||
lv_label_set_text(label4,"Charging status : Discharging");
|
||||
|
||||
lvgl_port_unlock();
|
||||
|
||||
xTaskCreatePinnedToCore(battery_test,"battery",4096,NULL,4,NULL,1);
|
||||
}
|
||||
|
||||
static bool example_adc_calibration_init(adc_unit_t unit, adc_channel_t channel, adc_atten_t atten, adc_cali_handle_t *out_handle)
|
||||
{
|
||||
adc_cali_handle_t handle = NULL;
|
||||
esp_err_t ret = ESP_FAIL;
|
||||
bool calibrated = false;
|
||||
|
||||
#if ADC_CALI_SCHEME_CURVE_FITTING_SUPPORTED
|
||||
if (!calibrated) {
|
||||
ESP_LOGI(TAG, "calibration scheme version is %s", "Curve Fitting");
|
||||
adc_cali_curve_fitting_config_t cali_config = {
|
||||
.unit_id = unit,
|
||||
.chan = channel,
|
||||
.atten = atten,
|
||||
.bitwidth = ADC_BITWIDTH_DEFAULT,
|
||||
};
|
||||
ret = adc_cali_create_scheme_curve_fitting(&cali_config, &handle);
|
||||
if (ret == ESP_OK) {
|
||||
calibrated = true;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
#if ADC_CALI_SCHEME_LINE_FITTING_SUPPORTED
|
||||
if (!calibrated) {
|
||||
ESP_LOGI(TAG, "calibration scheme version is %s", "Line Fitting");
|
||||
adc_cali_line_fitting_config_t cali_config = {
|
||||
.unit_id = unit,
|
||||
.atten = atten,
|
||||
.bitwidth = ADC_BITWIDTH_DEFAULT,
|
||||
};
|
||||
ret = adc_cali_create_scheme_line_fitting(&cali_config, &handle);
|
||||
if (ret == ESP_OK) {
|
||||
calibrated = true;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
*out_handle = handle;
|
||||
if (ret == ESP_OK) {
|
||||
ESP_LOGI(TAG, "Calibration Success");
|
||||
} else if (ret == ESP_ERR_NOT_SUPPORTED || !calibrated) {
|
||||
ESP_LOGW(TAG, "eFuse not burnt, skip software calibration");
|
||||
} else {
|
||||
ESP_LOGE(TAG, "Invalid arg or no memory");
|
||||
}
|
||||
|
||||
return calibrated;
|
||||
}
|
||||
|
||||
static void example_adc_calibration_deinit(adc_cali_handle_t handle)
|
||||
{
|
||||
#if ADC_CALI_SCHEME_CURVE_FITTING_SUPPORTED
|
||||
ESP_LOGI(TAG, "deregister %s calibration scheme", "Curve Fitting");
|
||||
ESP_ERROR_CHECK(adc_cali_delete_scheme_curve_fitting(handle));
|
||||
|
||||
#elif ADC_CALI_SCHEME_LINE_FITTING_SUPPORTED
|
||||
ESP_LOGI(TAG, "deregister %s calibration scheme", "Line Fitting");
|
||||
ESP_ERROR_CHECK(adc_cali_delete_scheme_line_fitting(handle));
|
||||
#endif
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
## IDF Component Manager Manifest File
|
||||
dependencies:
|
||||
lvgl/lvgl:
|
||||
version: 8.4.*
|
||||
public: true
|
||||
esp_lcd_touch_gt911: ^1
|
||||
waveshare/esp_lcd_jd9365_10_1: ^1.0.3
|
||||
espressif/esp_lvgl_port: "*"
|
||||
@@ -0,0 +1,6 @@
|
||||
# Name, Type, SubType, Offset, Size, Flags
|
||||
# Note: if you change the phy_init or app partition offset, make sure to change the offset in Kconfig.projbuild
|
||||
nvs, data, nvs, 0x9000, 0x6000,
|
||||
phy_init, data, phy, 0xf000, 0x1000,
|
||||
factory, app, factory, , 8M,
|
||||
storage, data, spiffs, , 7M,
|
||||
|
@@ -0,0 +1,53 @@
|
||||
# This file was generated using idf.py save-defconfig. It can be edited manually.
|
||||
# Espressif IoT Development Framework (ESP-IDF) 5.4.0 Project Minimal Configuration
|
||||
#
|
||||
CONFIG_IDF_TARGET="esp32p4"
|
||||
CONFIG_ESPTOOLPY_FLASHMODE_QIO=y
|
||||
CONFIG_ESPTOOLPY_FLASHSIZE_16MB=y
|
||||
CONFIG_PARTITION_TABLE_CUSTOM=y
|
||||
CONFIG_COMPILER_OPTIMIZATION_PERF=y
|
||||
CONFIG_SPIRAM=y
|
||||
CONFIG_SPIRAM_SPEED_200M=y
|
||||
CONFIG_SPIRAM_XIP_FROM_PSRAM=y
|
||||
CONFIG_CACHE_L2_CACHE_256KB=y
|
||||
CONFIG_CACHE_L2_CACHE_LINE_128B=y
|
||||
CONFIG_ESP_MAIN_TASK_STACK_SIZE=10240
|
||||
CONFIG_FREERTOS_HZ=1000
|
||||
CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID=y
|
||||
CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS=y
|
||||
CONFIG_LV_COLOR_SCREEN_TRANSP=y
|
||||
CONFIG_LV_MEM_CUSTOM=y
|
||||
CONFIG_LV_MEMCPY_MEMSET_STD=y
|
||||
CONFIG_LV_DISP_DEF_REFR_PERIOD=15
|
||||
CONFIG_LV_CIRCLE_CACHE_SIZE=10
|
||||
CONFIG_LV_LAYER_SIMPLE_BUF_SIZE=102400
|
||||
CONFIG_LV_IMG_CACHE_DEF_SIZE=5
|
||||
CONFIG_LV_GRAD_CACHE_DEF_SIZE=10240
|
||||
CONFIG_LV_USE_PERF_MONITOR=y
|
||||
CONFIG_LV_ATTRIBUTE_FAST_MEM_USE_IRAM=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_8=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_10=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_12=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_16=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_18=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_20=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_22=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_24=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_26=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_28=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_30=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_32=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_34=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_36=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_38=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_40=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_42=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_44=y
|
||||
CONFIG_LV_FONT_FMT_TXT_LARGE=y
|
||||
CONFIG_LV_USE_FONT_COMPRESSED=y
|
||||
CONFIG_LV_USE_DEMO_WIDGETS=y
|
||||
CONFIG_LV_USE_DEMO_BENCHMARK=y
|
||||
CONFIG_LV_USE_DEMO_STRESS=y
|
||||
CONFIG_LV_USE_DEMO_MUSIC=y
|
||||
CONFIG_LV_DEMO_MUSIC_AUTO_PLAY=y
|
||||
CONFIG_IDF_EXPERIMENTAL_FEATURES=y
|
||||
@@ -0,0 +1,20 @@
|
||||
set(SRCS "")
|
||||
list(APPEND SRCS
|
||||
"src/bsp_board_extra.c"
|
||||
)
|
||||
|
||||
set(INCLUDE_DIRS "")
|
||||
list(APPEND INCLUDE_DIRS "include")
|
||||
|
||||
foreach(SRC_DIR IN LISTS SRC_DIRS)
|
||||
file(GLOB_RECURSE SRC ${SRC_DIR}/*.c)
|
||||
list(APPEND SRCS ${SRC})
|
||||
list(APPEND INCLUDE_DIRS ${SRC_DIR}/include)
|
||||
endforeach()
|
||||
|
||||
idf_component_register(
|
||||
SRCS ${SRCS}
|
||||
INCLUDE_DIRS ${INCLUDE_DIRS}
|
||||
REQUIRES driver
|
||||
PRIV_REQUIRES esp_timer fatfs esp_psram esp_mm
|
||||
)
|
||||
@@ -0,0 +1,8 @@
|
||||
menu "Board Support Package"
|
||||
config BSP_I2S_NUM
|
||||
int "I2S peripheral index"
|
||||
default 1
|
||||
range 0 1
|
||||
help
|
||||
ESP32S3 has two I2S peripherals, pick the one you want to use.
|
||||
endmenu
|
||||
@@ -0,0 +1,202 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
@@ -0,0 +1,19 @@
|
||||
dependencies:
|
||||
idf:
|
||||
version: '>=5.3.0'
|
||||
|
||||
espressif/esp32_p4_function_ev_board:
|
||||
path: ../espressif__esp32_p4_function_ev_board
|
||||
|
||||
chmorgan/esp-audio-player:
|
||||
version: "1.0.*"
|
||||
public: true
|
||||
|
||||
chmorgan/esp-file-iterator:
|
||||
version: "1.0.0"
|
||||
public: true
|
||||
|
||||
description: Board Support Package for ESP32-P4-Function-ev-board
|
||||
targets:
|
||||
- esp32p4
|
||||
version: 0.0.2
|
||||
@@ -0,0 +1,219 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
#include <stdbool.h>
|
||||
#include "esp_codec_dev.h"
|
||||
#include "esp_err.h"
|
||||
#include "driver/gpio.h"
|
||||
#include "driver/i2s_std.h"
|
||||
#include "audio_player.h"
|
||||
#include "file_iterator.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define CODEC_DEFAULT_SAMPLE_RATE (16000)
|
||||
#define CODEC_DEFAULT_BIT_WIDTH (16)
|
||||
#define CODEC_DEFAULT_ADC_VOLUME (24.0)
|
||||
#define CODEC_DEFAULT_CHANNEL (2)
|
||||
#define CODEC_DEFAULT_VOLUME (60)
|
||||
|
||||
#define BSP_LCD_BACKLIGHT_BRIGHTNESS_MAX (95)
|
||||
#define BSP_LCD_BACKLIGHT_BRIGHTNESS_MIN (0)
|
||||
#define LCD_LEDC_CH (CONFIG_BSP_DISPLAY_BRIGHTNESS_LEDC_CH)
|
||||
|
||||
/**************************************************************************************************
|
||||
* BSP Extra interface
|
||||
* Mainly provided some I2S Codec interfaces.
|
||||
**************************************************************************************************/
|
||||
/**
|
||||
* @brief Player set mute.
|
||||
*
|
||||
* @param enable: true or false
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK: Success
|
||||
* - Others: Fail
|
||||
*/
|
||||
esp_err_t bsp_extra_codec_mute_set(bool enable);
|
||||
|
||||
/**
|
||||
* @brief Player set volume.
|
||||
*
|
||||
* @param volume: volume set
|
||||
* @param volume_set: volume set response
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK: Success
|
||||
* - Others: Fail
|
||||
*/
|
||||
esp_err_t bsp_extra_codec_volume_set(int volume, int *volume_set);
|
||||
|
||||
/**
|
||||
* @brief Player get volume.
|
||||
*
|
||||
* @return
|
||||
* - volume: volume get
|
||||
*/
|
||||
int bsp_extra_codec_volume_get(void);
|
||||
|
||||
/**
|
||||
* @brief Stop I2S function.
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK: Success
|
||||
* - Others: Fail
|
||||
*/
|
||||
esp_err_t bsp_extra_codec_dev_stop(void);
|
||||
|
||||
/**
|
||||
* @brief Resume I2S function.
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK: Success
|
||||
* - Others: Fail
|
||||
*/
|
||||
esp_err_t bsp_extra_codec_dev_resume(void);
|
||||
|
||||
/**
|
||||
* @brief Set I2S format to codec.
|
||||
*
|
||||
* @param rate: Sample rate of sample
|
||||
* @param bits_cfg: Bit lengths of one channel data
|
||||
* @param ch: Channels of sample
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK: Success
|
||||
* - Others: Fail
|
||||
*/
|
||||
esp_err_t bsp_extra_codec_set_fs(uint32_t rate, uint32_t bits_cfg, i2s_slot_mode_t ch);
|
||||
|
||||
/**
|
||||
* @brief Read data from recoder.
|
||||
*
|
||||
* @param audio_buffer: The pointer of receiving data buffer
|
||||
* @param len: Max data buffer length
|
||||
* @param bytes_read: Byte number that actually be read, can be NULL if not needed
|
||||
* @param timeout_ms: Max block time
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK: Success
|
||||
* - Others: Fail
|
||||
*/
|
||||
esp_err_t bsp_extra_i2s_read(void *audio_buffer, size_t len, size_t *bytes_read, uint32_t timeout_ms);
|
||||
|
||||
/**
|
||||
* @brief Write data to player.
|
||||
*
|
||||
* @param audio_buffer: The pointer of sent data buffer
|
||||
* @param len: Max data buffer length
|
||||
* @param bytes_written: Byte number that actually be sent, can be NULL if not needed
|
||||
* @param timeout_ms: Max block time
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK: Success
|
||||
* - Others: Fail
|
||||
*/
|
||||
esp_err_t bsp_extra_i2s_write(void *audio_buffer, size_t len, size_t *bytes_written, uint32_t timeout_ms);
|
||||
|
||||
|
||||
/**
|
||||
* @brief Initialize codec play and record handle.
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK: Success
|
||||
* - Others: Fail
|
||||
*/
|
||||
esp_err_t bsp_extra_codec_init();
|
||||
|
||||
/**
|
||||
* @brief Initialize audio player task.
|
||||
*
|
||||
* @param path file path
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK: Success
|
||||
* - Others: Fail
|
||||
*/
|
||||
esp_err_t bsp_extra_player_init(void);
|
||||
|
||||
/**
|
||||
* @brief Delete audio player task.
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK: Success
|
||||
* - Others: Fail
|
||||
*/
|
||||
esp_err_t bsp_extra_player_del(void);
|
||||
|
||||
/**
|
||||
* @brief Initialize a file iterator instance
|
||||
*
|
||||
* @param path The file path for the iterator.
|
||||
* @param ret_instance A pointer to the file iterator instance to be returned.
|
||||
* @return
|
||||
* - ESP_OK: Successfully initialized the file iterator instance.
|
||||
* - ESP_FAIL: Failed to initialize the file iterator instance due to invalid parameters or memory allocation failure.
|
||||
*/
|
||||
esp_err_t bsp_extra_file_instance_init(const char *path, file_iterator_instance_t **ret_instance);
|
||||
|
||||
/**
|
||||
* @brief Play the audio file at the specified index in the file iterator
|
||||
*
|
||||
* @param instance The file iterator instance.
|
||||
* @param index The index of the file to play within the iterator.
|
||||
* @return
|
||||
* - ESP_OK: Successfully started playing the audio file.
|
||||
* - ESP_FAIL: Failed to play the audio file due to invalid parameters or file access issues.
|
||||
*/
|
||||
esp_err_t bsp_extra_player_play_index(file_iterator_instance_t *instance, int index);
|
||||
|
||||
/**
|
||||
* @brief Play the audio file specified by the file path
|
||||
*
|
||||
* @param file_path The path to the audio file to be played.
|
||||
* @return
|
||||
* - ESP_OK: Successfully started playing the audio file.
|
||||
* - ESP_FAIL: Failed to play the audio file due to file access issues.
|
||||
*/
|
||||
esp_err_t bsp_extra_player_play_file(const char *file_path);
|
||||
|
||||
/**
|
||||
* @brief Register a callback function for the audio player
|
||||
*
|
||||
* @param cb The callback function to be registered.
|
||||
* @param user_data User data to be passed to the callback function.
|
||||
*/
|
||||
void bsp_extra_player_register_callback(audio_player_cb_t cb, void *user_data);
|
||||
|
||||
/**
|
||||
* @brief Check if the specified audio file is currently playing
|
||||
*
|
||||
* @param file_path The path to the audio file to check.
|
||||
* @return
|
||||
* - true: The specified audio file is currently playing.
|
||||
* - false: The specified audio file is not currently playing.
|
||||
*/
|
||||
bool bsp_extra_player_is_playing_by_path(const char *file_path);
|
||||
|
||||
/**
|
||||
* @brief Check if the audio file at the specified index is currently playing
|
||||
*
|
||||
* @param instance The file iterator instance.
|
||||
* @param index The index of the file to check.
|
||||
* @return
|
||||
* - true: The audio file at the specified index is currently playing.
|
||||
* - false: The audio file at the specified index is not currently playing.
|
||||
*/
|
||||
bool bsp_extra_player_is_playing_by_index(file_iterator_instance_t *instance, int index);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,259 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
#include <string.h>
|
||||
#include "esp_log.h"
|
||||
#include "esp_check.h"
|
||||
#include "esp_codec_dev_defaults.h"
|
||||
#include "esp_err.h"
|
||||
#include "esp_log.h"
|
||||
#include "esp_vfs_fat.h"
|
||||
#include "driver/i2c.h"
|
||||
#include "driver/i2s_std.h"
|
||||
#include "driver/gpio.h"
|
||||
#include "driver/ledc.h"
|
||||
|
||||
#include "bsp/esp-bsp.h"
|
||||
#include "bsp_board_extra.h"
|
||||
|
||||
static const char *TAG = "bsp_extra_board";
|
||||
|
||||
static esp_codec_dev_handle_t play_dev_handle;
|
||||
static esp_codec_dev_handle_t record_dev_handle;
|
||||
|
||||
static bool _is_audio_init = false;
|
||||
static bool _is_player_init = false;
|
||||
static int _vloume_intensity = CODEC_DEFAULT_VOLUME;
|
||||
|
||||
static audio_player_cb_t audio_idle_callback = NULL;
|
||||
static void *audio_idle_cb_user_data = NULL;
|
||||
static char audio_file_path[128];
|
||||
|
||||
/**************************************************************************************************
|
||||
*
|
||||
* Extra Board Function
|
||||
*
|
||||
**************************************************************************************************/
|
||||
|
||||
static esp_err_t audio_mute_function(AUDIO_PLAYER_MUTE_SETTING setting)
|
||||
{
|
||||
// Volume saved when muting and restored when unmuting. Restoring volume is necessary
|
||||
// as es8311_set_voice_mute(true) results in voice volume (REG32) being set to zero.
|
||||
|
||||
bsp_extra_codec_mute_set(setting == AUDIO_PLAYER_MUTE ? true : false);
|
||||
|
||||
// restore the voice volume upon unmuting
|
||||
if (setting == AUDIO_PLAYER_UNMUTE) {
|
||||
ESP_RETURN_ON_ERROR(esp_codec_dev_set_out_vol(play_dev_handle, _vloume_intensity), TAG, "Set Codec volume failed");
|
||||
}
|
||||
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
static void audio_callback(audio_player_cb_ctx_t *ctx)
|
||||
{
|
||||
if (audio_idle_callback) {
|
||||
ctx->user_ctx = audio_idle_cb_user_data;
|
||||
audio_idle_callback(ctx);
|
||||
}
|
||||
}
|
||||
|
||||
esp_err_t bsp_extra_i2s_read(void *audio_buffer, size_t len, size_t *bytes_read, uint32_t timeout_ms)
|
||||
{
|
||||
esp_err_t ret = ESP_OK;
|
||||
ret = esp_codec_dev_read(record_dev_handle, audio_buffer, len);
|
||||
*bytes_read = len;
|
||||
return ret;
|
||||
}
|
||||
|
||||
esp_err_t bsp_extra_i2s_write(void *audio_buffer, size_t len, size_t *bytes_written, uint32_t timeout_ms)
|
||||
{
|
||||
esp_err_t ret = ESP_OK;
|
||||
ret = esp_codec_dev_write(play_dev_handle, audio_buffer, len);
|
||||
*bytes_written = len;
|
||||
return ret;
|
||||
}
|
||||
|
||||
esp_err_t bsp_extra_codec_set_fs(uint32_t rate, uint32_t bits_cfg, i2s_slot_mode_t ch)
|
||||
{
|
||||
esp_err_t ret = ESP_OK;
|
||||
|
||||
esp_codec_dev_sample_info_t fs = {
|
||||
.sample_rate = rate,
|
||||
.channel = ch,
|
||||
.bits_per_sample = bits_cfg,
|
||||
};
|
||||
|
||||
if (play_dev_handle) {
|
||||
ret = esp_codec_dev_close(play_dev_handle);
|
||||
}
|
||||
if (record_dev_handle) {
|
||||
ret |= esp_codec_dev_close(record_dev_handle);
|
||||
ret |= esp_codec_dev_set_in_gain(record_dev_handle, CODEC_DEFAULT_ADC_VOLUME);
|
||||
}
|
||||
|
||||
if (play_dev_handle) {
|
||||
ret |= esp_codec_dev_open(play_dev_handle, &fs);
|
||||
}
|
||||
if (record_dev_handle) {
|
||||
ret |= esp_codec_dev_open(record_dev_handle, &fs);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
esp_err_t bsp_extra_codec_volume_set(int volume, int *volume_set)
|
||||
{
|
||||
ESP_RETURN_ON_ERROR(esp_codec_dev_set_out_vol(play_dev_handle, volume), TAG, "Set Codec volume failed");
|
||||
_vloume_intensity = volume;
|
||||
|
||||
ESP_LOGI(TAG, "Setting volume: %d", volume);
|
||||
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
int bsp_extra_codec_volume_get(void)
|
||||
{
|
||||
return _vloume_intensity;
|
||||
}
|
||||
|
||||
esp_err_t bsp_extra_codec_mute_set(bool enable)
|
||||
{
|
||||
esp_err_t ret = ESP_OK;
|
||||
ret = esp_codec_dev_set_out_mute(play_dev_handle, enable);
|
||||
return ret;
|
||||
}
|
||||
|
||||
esp_err_t bsp_extra_codec_dev_stop(void)
|
||||
{
|
||||
esp_err_t ret = ESP_OK;
|
||||
|
||||
if (play_dev_handle) {
|
||||
ret = esp_codec_dev_close(play_dev_handle);
|
||||
}
|
||||
|
||||
if (record_dev_handle) {
|
||||
ret = esp_codec_dev_close(record_dev_handle);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
esp_err_t bsp_extra_codec_dev_resume(void)
|
||||
{
|
||||
return bsp_extra_codec_set_fs(CODEC_DEFAULT_SAMPLE_RATE, CODEC_DEFAULT_BIT_WIDTH, CODEC_DEFAULT_CHANNEL);
|
||||
}
|
||||
|
||||
esp_err_t bsp_extra_codec_init()
|
||||
{
|
||||
if (_is_audio_init) {
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
play_dev_handle = bsp_audio_codec_speaker_init();
|
||||
assert((play_dev_handle) && "play_dev_handle not initialized");
|
||||
|
||||
record_dev_handle = bsp_audio_codec_microphone_init();
|
||||
assert((record_dev_handle) && "record_dev_handle not initialized");
|
||||
|
||||
bsp_extra_codec_set_fs(CODEC_DEFAULT_SAMPLE_RATE, CODEC_DEFAULT_BIT_WIDTH, CODEC_DEFAULT_CHANNEL);
|
||||
|
||||
_is_audio_init = true;
|
||||
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
esp_err_t bsp_extra_player_init(void)
|
||||
{
|
||||
if (_is_player_init) {
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
audio_player_config_t config = { .mute_fn = audio_mute_function,
|
||||
.write_fn = bsp_extra_i2s_write,
|
||||
.clk_set_fn = bsp_extra_codec_set_fs,
|
||||
.priority = 5
|
||||
};
|
||||
ESP_RETURN_ON_ERROR(audio_player_new(config), TAG, "audio_player_init failed");
|
||||
audio_player_callback_register(audio_callback, NULL);
|
||||
|
||||
_is_player_init = true;
|
||||
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
esp_err_t bsp_extra_player_del(void)
|
||||
{
|
||||
_is_player_init = false;
|
||||
|
||||
ESP_RETURN_ON_ERROR(audio_player_delete(), TAG, "audio_player_delete failed");
|
||||
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
esp_err_t bsp_extra_file_instance_init(const char *path, file_iterator_instance_t **ret_instance)
|
||||
{
|
||||
ESP_RETURN_ON_FALSE(path, ESP_FAIL, TAG, "path is NULL");
|
||||
ESP_RETURN_ON_FALSE(ret_instance, ESP_FAIL, TAG, "ret_instance is NULL");
|
||||
|
||||
file_iterator_instance_t *file_iterator = file_iterator_new(path);
|
||||
ESP_RETURN_ON_FALSE(file_iterator, ESP_FAIL, TAG, "file_iterator_new failed, %s", path);
|
||||
|
||||
*ret_instance = file_iterator;
|
||||
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
esp_err_t bsp_extra_player_play_index(file_iterator_instance_t *instance, int index)
|
||||
{
|
||||
ESP_RETURN_ON_FALSE(instance, ESP_FAIL, TAG, "instance is NULL");
|
||||
|
||||
ESP_LOGI(TAG, "play_index(%d)", index);
|
||||
char filename[128];
|
||||
int retval = file_iterator_get_full_path_from_index(instance, index, filename, sizeof(filename));
|
||||
ESP_RETURN_ON_FALSE(retval != 0, ESP_FAIL, TAG, "file_iterator_get_full_path_from_index failed");
|
||||
|
||||
ESP_LOGI(TAG, "opening file '%s'", filename);
|
||||
FILE *fp = fopen(filename, "rb");
|
||||
ESP_RETURN_ON_FALSE(fp, ESP_FAIL, TAG, "unable to open file");
|
||||
|
||||
ESP_LOGI(TAG, "Playing '%s'", filename);
|
||||
ESP_RETURN_ON_ERROR(audio_player_play(fp), TAG, "audio_player_play failed");
|
||||
|
||||
memcpy(audio_file_path, filename, sizeof(audio_file_path));
|
||||
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
esp_err_t bsp_extra_player_play_file(const char *file_path)
|
||||
{
|
||||
ESP_LOGI(TAG, "opening file '%s'", file_path);
|
||||
FILE *fp = fopen(file_path, "rb");
|
||||
ESP_RETURN_ON_FALSE(fp, ESP_FAIL, TAG, "unable to open file");
|
||||
|
||||
ESP_LOGI(TAG, "Playing '%s'", file_path);
|
||||
ESP_RETURN_ON_ERROR(audio_player_play(fp), TAG, "audio_player_play failed");
|
||||
|
||||
memcpy(audio_file_path, file_path, sizeof(audio_file_path));
|
||||
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
void bsp_extra_player_register_callback(audio_player_cb_t cb, void *user_data)
|
||||
{
|
||||
audio_idle_callback = cb;
|
||||
audio_idle_cb_user_data = user_data;
|
||||
}
|
||||
|
||||
bool bsp_extra_player_is_playing_by_path(const char *file_path)
|
||||
{
|
||||
return (strcmp(audio_file_path, file_path) == 0);
|
||||
}
|
||||
|
||||
bool bsp_extra_player_is_playing_by_index(file_iterator_instance_t *instance, int index)
|
||||
{
|
||||
return (index == file_iterator_get_index(instance));
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
1e0436b3d220275d6b7930330b1a9b828fedf0dbc81006531e592b059842641e
|
||||
@@ -0,0 +1,8 @@
|
||||
|
||||
idf_component_register(
|
||||
SRCS "esp32_p4_function_ev_board.c"
|
||||
INCLUDE_DIRS "include"
|
||||
PRIV_INCLUDE_DIRS "priv_include"
|
||||
REQUIRES driver
|
||||
PRIV_REQUIRES esp_lcd usb spiffs fatfs
|
||||
)
|
||||
@@ -0,0 +1,138 @@
|
||||
menu "Board Support Package(ESP32-P4)"
|
||||
|
||||
config BSP_ERROR_CHECK
|
||||
bool "Enable error check in BSP"
|
||||
default y
|
||||
help
|
||||
Error check assert the application before returning the error code.
|
||||
|
||||
menu "I2C"
|
||||
config BSP_I2C_NUM
|
||||
int "I2C peripheral index"
|
||||
default 1
|
||||
range 0 1
|
||||
help
|
||||
ESP32P4 has two I2C peripherals, pick the one you want to use.
|
||||
|
||||
config BSP_I2C_FAST_MODE
|
||||
bool "Enable I2C fast mode"
|
||||
default y
|
||||
help
|
||||
I2C has two speed modes: normal (100kHz) and fast (400kHz).
|
||||
|
||||
config BSP_I2C_CLK_SPEED_HZ
|
||||
int
|
||||
default 400000 if BSP_I2C_FAST_MODE
|
||||
default 100000
|
||||
endmenu
|
||||
|
||||
menu "I2S"
|
||||
config BSP_I2S_NUM
|
||||
int "I2S peripheral index"
|
||||
default 1
|
||||
range 0 2
|
||||
help
|
||||
ESP32P4 has three I2S peripherals, pick the one you want to use.
|
||||
endmenu
|
||||
|
||||
menu "uSD card - Virtual File System"
|
||||
config BSP_SD_FORMAT_ON_MOUNT_FAIL
|
||||
bool "Format uSD card if mounting fails"
|
||||
default n
|
||||
help
|
||||
The SDMMC host will format (FAT) the uSD card if it fails to mount the filesystem.
|
||||
|
||||
config BSP_SD_MOUNT_POINT
|
||||
string "uSD card mount point"
|
||||
default "/sdcard"
|
||||
help
|
||||
Mount point of the uSD card in the Virtual File System
|
||||
|
||||
endmenu
|
||||
|
||||
menu "SPIFFS - Virtual File System"
|
||||
config BSP_SPIFFS_FORMAT_ON_MOUNT_FAIL
|
||||
bool "Format SPIFFS if mounting fails"
|
||||
default n
|
||||
help
|
||||
Format SPIFFS if it fails to mount the filesystem.
|
||||
|
||||
config BSP_SPIFFS_MOUNT_POINT
|
||||
string "SPIFFS mount point"
|
||||
default "/spiffs"
|
||||
help
|
||||
Mount point of SPIFFS in the Virtual File System.
|
||||
|
||||
config BSP_SPIFFS_PARTITION_LABEL
|
||||
string "Partition label of SPIFFS"
|
||||
default "storage"
|
||||
help
|
||||
Partition label which stores SPIFFS.
|
||||
|
||||
config BSP_SPIFFS_MAX_FILES
|
||||
int "Max files supported for SPIFFS VFS"
|
||||
default 5
|
||||
help
|
||||
Supported max files for SPIFFS in the Virtual File System.
|
||||
endmenu
|
||||
|
||||
menu "Display"
|
||||
config BSP_LCD_DPI_BUFFER_NUMS
|
||||
int "Set number of frame buffers"
|
||||
default 1
|
||||
range 1 3
|
||||
help
|
||||
Let DPI LCD driver create a specified number of frame-size buffers. Only when it is set to multiple can the avoiding tearing be turned on.
|
||||
|
||||
config BSP_DISPLAY_LVGL_AVOID_TEAR
|
||||
bool "Avoid tearing effect"
|
||||
depends on BSP_LCD_DPI_BUFFER_NUMS > 1
|
||||
default "n"
|
||||
help
|
||||
Avoid tearing effect through LVGL buffer mode and double frame buffers of RGB LCD. This feature is only available for RGB LCD.
|
||||
|
||||
choice BSP_DISPLAY_LVGL_MODE
|
||||
depends on BSP_DISPLAY_LVGL_AVOID_TEAR
|
||||
prompt "Select LVGL buffer mode"
|
||||
default BSP_DISPLAY_LVGL_FULL_REFRESH
|
||||
config BSP_DISPLAY_LVGL_FULL_REFRESH
|
||||
bool "Full refresh"
|
||||
config BSP_DISPLAY_LVGL_DIRECT_MODE
|
||||
bool "Direct mode"
|
||||
endchoice
|
||||
|
||||
config BSP_DISPLAY_BRIGHTNESS_LEDC_CH
|
||||
int "LEDC channel index"
|
||||
default 1
|
||||
range 0 7
|
||||
help
|
||||
LEDC channel is used to generate PWM signal that controls display brightness.
|
||||
Set LEDC index that should be used.
|
||||
|
||||
choice BSP_LCD_COLOR_FORMAT
|
||||
prompt "Select LCD color format"
|
||||
default BSP_LCD_COLOR_FORMAT_RGB565
|
||||
help
|
||||
Select the LCD color format RGB565/RGB888.
|
||||
|
||||
config BSP_LCD_COLOR_FORMAT_RGB565
|
||||
bool "RGB565"
|
||||
config BSP_LCD_COLOR_FORMAT_RGB888
|
||||
bool "RGB888"
|
||||
endchoice
|
||||
|
||||
choice BSP_LCD_TYPE
|
||||
prompt "Select LCD type"
|
||||
default BSP_LCD_TYPE_1024_600
|
||||
help
|
||||
Select the LCD.
|
||||
|
||||
config BSP_LCD_TYPE_1024_600
|
||||
bool "LCD 7-inch 1024x600 - ek79007"
|
||||
config BSP_LCD_TYPE_1280_800
|
||||
bool "LCD 1280x800 - ili9881c"
|
||||
endchoice
|
||||
|
||||
endmenu
|
||||
|
||||
endmenu
|
||||
@@ -0,0 +1,202 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
@@ -0,0 +1,39 @@
|
||||
# BSP: ESP32-P4 Function EV Board
|
||||
|
||||
[](https://components.espressif.com/components/espressif/esp32_p4_function_ev_board)
|
||||
|
||||
ESP32-P4 Function EV Board is internal Espressif board for testing features on ESP32P4 chip.
|
||||
|
||||
| HW version | BSP Version |
|
||||
| :--------: | :---------: |
|
||||
| V1.0 | ^1 |
|
||||
| V1.2 | ^2 |
|
||||
| [V1.4](https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32p4/esp32-p4-function-ev-board/user_guide.html) | ^3 |
|
||||
|
||||
## Configuration
|
||||
|
||||
Configuration in `menuconfig`.
|
||||
|
||||
Selection LCD display `Board Support Package(ESP32-P4) --> Display --> Select LCD type`
|
||||
- LCD 7-inch 1280x800 - ili9881c (default)
|
||||
- LCD 1024x600 - ek79007
|
||||
|
||||
Selection color format `Board Support Package(ESP32-P4) --> Display --> Select LCD color format`
|
||||
- RGB565 (default)
|
||||
- RGB888
|
||||
|
||||
|
||||
<!-- Autogenerated start: Dependencies -->
|
||||
### Capabilities and dependencies
|
||||
| Capability | Available | Component |Version|
|
||||
|-------------|------------------|----------------------------------------------------------------------------------------------------------|-------|
|
||||
| DISPLAY |:heavy_check_mark:| [espressif/esp_lcd_ek79007](https://components.espressif.com/components/espressif/esp_lcd_ek79007) | 1.* |
|
||||
| LVGL_PORT |:heavy_check_mark:| [espressif/esp_lvgl_port](https://components.espressif.com/components/espressif/esp_lvgl_port) | ^2 |
|
||||
| TOUCH |:heavy_check_mark:|[espressif/esp_lcd_touch_gt911](https://components.espressif.com/components/espressif/esp_lcd_touch_gt911)| ^1 |
|
||||
| BUTTONS | :x: | | |
|
||||
| AUDIO |:heavy_check_mark:| [espressif/esp_codec_dev](https://components.espressif.com/components/espressif/esp_codec_dev) | 1.2.* |
|
||||
|AUDIO_SPEAKER|:heavy_check_mark:| | |
|
||||
| AUDIO_MIC |:heavy_check_mark:| | |
|
||||
| SDCARD |:heavy_check_mark:| idf | >=5.3 |
|
||||
| IMU | :x: | | |
|
||||
<!-- Autogenerated end: Dependencies -->
|
||||
@@ -0,0 +1,736 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include "sdkconfig.h"
|
||||
#include "driver/gpio.h"
|
||||
#include "driver/ledc.h"
|
||||
#include "esp_err.h"
|
||||
#include "esp_log.h"
|
||||
#include "esp_check.h"
|
||||
#include "esp_spiffs.h"
|
||||
#include "esp_lcd_panel_ops.h"
|
||||
#include "esp_lcd_mipi_dsi.h"
|
||||
#include "esp_ldo_regulator.h"
|
||||
#include "esp_vfs_fat.h"
|
||||
#include "usb/usb_host.h"
|
||||
#include "sd_pwr_ctrl_by_on_chip_ldo.h"
|
||||
|
||||
#include "esp_lcd_jd9365_10_1.h"
|
||||
#if CONFIG_BSP_LCD_TYPE_1024_600
|
||||
#include "esp_lcd_ek79007.h"
|
||||
#else
|
||||
#include "esp_lcd_ili9881c.h"
|
||||
#endif
|
||||
|
||||
#include "bsp/esp32_p4_function_ev_board.h"
|
||||
#include "bsp/display.h"
|
||||
#include "bsp/touch.h"
|
||||
#include "esp_lcd_touch_gt911.h"
|
||||
#include "bsp_err_check.h"
|
||||
#include "esp_codec_dev_defaults.h"
|
||||
#include "lvgl.h"
|
||||
|
||||
static const char *TAG = "ESP32_P4_EV";
|
||||
|
||||
#if (BSP_CONFIG_NO_GRAPHIC_LIB == 0)
|
||||
static lv_indev_t *disp_indev = NULL;
|
||||
#endif // (BSP_CONFIG_NO_GRAPHIC_LIB == 0)
|
||||
|
||||
sdmmc_card_t *bsp_sdcard = NULL; // Global uSD card handler
|
||||
static bool i2c_initialized = false;
|
||||
static TaskHandle_t usb_host_task; // USB Host Library task
|
||||
#if (ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 3, 0))
|
||||
static i2c_master_bus_handle_t i2c_handle = NULL; // I2C Handle
|
||||
#endif
|
||||
static i2s_chan_handle_t i2s_tx_chan = NULL;
|
||||
static i2s_chan_handle_t i2s_rx_chan = NULL;
|
||||
static const audio_codec_data_if_t *i2s_data_if = NULL; /* Codec data interface */
|
||||
|
||||
/* Can be used for `i2s_std_gpio_config_t` and/or `i2s_std_config_t` initialization */
|
||||
#define BSP_I2S_GPIO_CFG \
|
||||
{ \
|
||||
.mclk = BSP_I2S_MCLK, \
|
||||
.bclk = BSP_I2S_SCLK, \
|
||||
.ws = BSP_I2S_LCLK, \
|
||||
.dout = BSP_I2S_DOUT, \
|
||||
.din = BSP_I2S_DSIN, \
|
||||
.invert_flags = { \
|
||||
.mclk_inv = false, \
|
||||
.bclk_inv = false, \
|
||||
.ws_inv = false, \
|
||||
}, \
|
||||
}
|
||||
|
||||
/* This configuration is used by default in `bsp_extra_audio_init()` */
|
||||
#define BSP_I2S_DUPLEX_MONO_CFG(_sample_rate) \
|
||||
{ \
|
||||
.clk_cfg = I2S_STD_CLK_DEFAULT_CONFIG(_sample_rate), \
|
||||
.slot_cfg = I2S_STD_PHILIP_SLOT_DEFAULT_CONFIG(I2S_DATA_BIT_WIDTH_16BIT, I2S_SLOT_MODE_MONO), \
|
||||
.gpio_cfg = BSP_I2S_GPIO_CFG, \
|
||||
}
|
||||
|
||||
esp_err_t bsp_i2c_init(void)
|
||||
{
|
||||
/* I2C was initialized before */
|
||||
if (i2c_initialized) {
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
i2c_master_bus_config_t i2c_bus_conf = {
|
||||
.clk_source = I2C_CLK_SRC_DEFAULT,
|
||||
.sda_io_num = BSP_I2C_SDA,
|
||||
.scl_io_num = BSP_I2C_SCL,
|
||||
.i2c_port = BSP_I2C_NUM,
|
||||
};
|
||||
BSP_ERROR_CHECK_RETURN_ERR(i2c_new_master_bus(&i2c_bus_conf, &i2c_handle));
|
||||
|
||||
i2c_initialized = true;
|
||||
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
esp_err_t bsp_i2c_deinit(void)
|
||||
{
|
||||
BSP_ERROR_CHECK_RETURN_ERR(i2c_del_master_bus(i2c_handle));
|
||||
i2c_initialized = false;
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
i2c_master_bus_handle_t bsp_i2c_get_handle(void)
|
||||
{
|
||||
return i2c_handle;
|
||||
}
|
||||
|
||||
esp_err_t bsp_sdcard_mount(void)
|
||||
{
|
||||
const esp_vfs_fat_sdmmc_mount_config_t mount_config = {
|
||||
#ifdef CONFIG_BSP_SD_FORMAT_ON_MOUNT_FAIL
|
||||
.format_if_mount_failed = true,
|
||||
#else
|
||||
.format_if_mount_failed = false,
|
||||
#endif
|
||||
.max_files = 5,
|
||||
.allocation_unit_size = 64 * 1024
|
||||
};
|
||||
|
||||
sdmmc_host_t host = SDMMC_HOST_DEFAULT();
|
||||
host.slot = SDMMC_HOST_SLOT_0;
|
||||
host.max_freq_khz = SDMMC_FREQ_HIGHSPEED;
|
||||
|
||||
sd_pwr_ctrl_ldo_config_t ldo_config = {
|
||||
.ldo_chan_id = 4,
|
||||
};
|
||||
sd_pwr_ctrl_handle_t pwr_ctrl_handle = NULL;
|
||||
esp_err_t ret = sd_pwr_ctrl_new_on_chip_ldo(&ldo_config, &pwr_ctrl_handle);
|
||||
if (ret != ESP_OK) {
|
||||
ESP_LOGE(TAG, "Failed to create a new on-chip LDO power control driver");
|
||||
return ret;
|
||||
}
|
||||
host.pwr_ctrl_handle = pwr_ctrl_handle;
|
||||
|
||||
const sdmmc_slot_config_t slot_config = {
|
||||
/* SD card is connected to Slot 0 pins. Slot 0 uses IO MUX, so not specifying the pins here */
|
||||
.cd = SDMMC_SLOT_NO_CD,
|
||||
.wp = SDMMC_SLOT_NO_WP,
|
||||
.width = 4,
|
||||
.flags = 0,
|
||||
};
|
||||
|
||||
return esp_vfs_fat_sdmmc_mount(BSP_SD_MOUNT_POINT, &host, &slot_config, &mount_config, &bsp_sdcard);
|
||||
}
|
||||
|
||||
esp_err_t bsp_sdcard_unmount(void)
|
||||
{
|
||||
return esp_vfs_fat_sdcard_unmount(BSP_SD_MOUNT_POINT, bsp_sdcard);
|
||||
}
|
||||
|
||||
esp_err_t bsp_spiffs_mount(void)
|
||||
{
|
||||
esp_vfs_spiffs_conf_t conf = {
|
||||
.base_path = CONFIG_BSP_SPIFFS_MOUNT_POINT,
|
||||
.partition_label = CONFIG_BSP_SPIFFS_PARTITION_LABEL,
|
||||
.max_files = CONFIG_BSP_SPIFFS_MAX_FILES,
|
||||
#ifdef CONFIG_BSP_SPIFFS_FORMAT_ON_MOUNT_FAIL
|
||||
.format_if_mount_failed = true,
|
||||
#else
|
||||
.format_if_mount_failed = false,
|
||||
#endif
|
||||
};
|
||||
|
||||
esp_err_t ret_val = esp_vfs_spiffs_register(&conf);
|
||||
|
||||
BSP_ERROR_CHECK_RETURN_ERR(ret_val);
|
||||
|
||||
size_t total = 0, used = 0;
|
||||
ret_val = esp_spiffs_info(conf.partition_label, &total, &used);
|
||||
if (ret_val != ESP_OK) {
|
||||
ESP_LOGE(TAG, "Failed to get SPIFFS partition information (%s)", esp_err_to_name(ret_val));
|
||||
} else {
|
||||
ESP_LOGI(TAG, "Partition size: total: %d, used: %d", total, used);
|
||||
}
|
||||
|
||||
return ret_val;
|
||||
}
|
||||
|
||||
esp_err_t bsp_spiffs_unmount(void)
|
||||
{
|
||||
return esp_vfs_spiffs_unregister(CONFIG_BSP_SPIFFS_PARTITION_LABEL);
|
||||
}
|
||||
|
||||
esp_err_t bsp_audio_init(const i2s_std_config_t *i2s_config)
|
||||
{
|
||||
if (i2s_tx_chan && i2s_rx_chan) {
|
||||
/* Audio was initialized before */
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
/* Setup I2S peripheral */
|
||||
i2s_chan_config_t chan_cfg = I2S_CHANNEL_DEFAULT_CONFIG(CONFIG_BSP_I2S_NUM, I2S_ROLE_MASTER);
|
||||
chan_cfg.auto_clear = true; // Auto clear the legacy data in the DMA buffer
|
||||
ESP_ERROR_CHECK(i2s_new_channel(&chan_cfg, &i2s_tx_chan, &i2s_rx_chan));
|
||||
|
||||
/* Setup I2S channels */
|
||||
const i2s_std_config_t std_cfg_default = BSP_I2S_DUPLEX_MONO_CFG(22050);
|
||||
const i2s_std_config_t *p_i2s_cfg = &std_cfg_default;
|
||||
if (i2s_config != NULL) {
|
||||
p_i2s_cfg = i2s_config;
|
||||
}
|
||||
|
||||
if (i2s_tx_chan != NULL) {
|
||||
ESP_ERROR_CHECK(i2s_channel_init_std_mode(i2s_tx_chan, p_i2s_cfg));
|
||||
ESP_ERROR_CHECK(i2s_channel_enable(i2s_tx_chan));
|
||||
}
|
||||
|
||||
if (i2s_rx_chan != NULL) {
|
||||
ESP_ERROR_CHECK(i2s_channel_init_std_mode(i2s_rx_chan, p_i2s_cfg));
|
||||
ESP_ERROR_CHECK(i2s_channel_enable(i2s_rx_chan));
|
||||
}
|
||||
|
||||
audio_codec_i2s_cfg_t i2s_cfg = {
|
||||
.port = CONFIG_BSP_I2S_NUM,
|
||||
.tx_handle = i2s_tx_chan,
|
||||
.rx_handle = i2s_rx_chan,
|
||||
};
|
||||
i2s_data_if = audio_codec_new_i2s_data(&i2s_cfg);
|
||||
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
esp_codec_dev_handle_t bsp_audio_codec_speaker_init(void)
|
||||
{
|
||||
if (i2s_data_if == NULL) {
|
||||
/* Initilize I2C */
|
||||
ESP_ERROR_CHECK(bsp_i2c_init());
|
||||
/* Configure I2S peripheral and Power Amplifier */
|
||||
ESP_ERROR_CHECK(bsp_audio_init(NULL));
|
||||
}
|
||||
assert(i2s_data_if);
|
||||
|
||||
const audio_codec_gpio_if_t *gpio_if = audio_codec_new_gpio();
|
||||
|
||||
audio_codec_i2c_cfg_t i2c_cfg = {
|
||||
.port = BSP_I2C_NUM,
|
||||
.addr = ES8311_CODEC_DEFAULT_ADDR,
|
||||
.bus_handle = i2c_handle,
|
||||
};
|
||||
const audio_codec_ctrl_if_t *i2c_ctrl_if = audio_codec_new_i2c_ctrl(&i2c_cfg);
|
||||
assert(i2c_ctrl_if);
|
||||
|
||||
esp_codec_dev_hw_gain_t gain = {
|
||||
.pa_voltage = 5.0,
|
||||
.codec_dac_voltage = 3.3,
|
||||
};
|
||||
|
||||
es8311_codec_cfg_t es8311_cfg = {
|
||||
.ctrl_if = i2c_ctrl_if,
|
||||
.gpio_if = gpio_if,
|
||||
.codec_mode = ESP_CODEC_DEV_TYPE_OUT,
|
||||
.pa_pin = BSP_POWER_AMP_IO,
|
||||
.pa_reverted = false,
|
||||
.master_mode = false,
|
||||
.use_mclk = true,
|
||||
.digital_mic = false,
|
||||
.invert_mclk = false,
|
||||
.invert_sclk = false,
|
||||
.hw_gain = gain,
|
||||
};
|
||||
const audio_codec_if_t *es8311_dev = es8311_codec_new(&es8311_cfg);
|
||||
assert(es8311_dev);
|
||||
|
||||
esp_codec_dev_cfg_t codec_dev_cfg = {
|
||||
.dev_type = ESP_CODEC_DEV_TYPE_IN_OUT,
|
||||
.codec_if = es8311_dev,
|
||||
.data_if = i2s_data_if,
|
||||
};
|
||||
return esp_codec_dev_new(&codec_dev_cfg);
|
||||
}
|
||||
|
||||
esp_codec_dev_handle_t bsp_audio_codec_microphone_init(void)
|
||||
{
|
||||
if (i2s_data_if == NULL) {
|
||||
/* Initilize I2C */
|
||||
ESP_ERROR_CHECK(bsp_i2c_init());
|
||||
/* Configure I2S peripheral and Power Amplifier */
|
||||
ESP_ERROR_CHECK(bsp_audio_init(NULL));
|
||||
}
|
||||
assert(i2s_data_if);
|
||||
|
||||
const audio_codec_gpio_if_t *gpio_if = audio_codec_new_gpio();
|
||||
|
||||
audio_codec_i2c_cfg_t i2c_cfg = {
|
||||
.port = BSP_I2C_NUM,
|
||||
.addr = ES8311_CODEC_DEFAULT_ADDR,
|
||||
.bus_handle = i2c_handle,
|
||||
};
|
||||
const audio_codec_ctrl_if_t *i2c_ctrl_if = audio_codec_new_i2c_ctrl(&i2c_cfg);
|
||||
assert(i2c_ctrl_if);
|
||||
|
||||
esp_codec_dev_hw_gain_t gain = {
|
||||
.pa_voltage = 5.0,
|
||||
.codec_dac_voltage = 3.3,
|
||||
};
|
||||
|
||||
es8311_codec_cfg_t es8311_cfg = {
|
||||
.ctrl_if = i2c_ctrl_if,
|
||||
.gpio_if = gpio_if,
|
||||
.codec_mode = ESP_CODEC_DEV_WORK_MODE_BOTH,
|
||||
.pa_pin = BSP_POWER_AMP_IO,
|
||||
.pa_reverted = false,
|
||||
.master_mode = false,
|
||||
.use_mclk = true,
|
||||
.digital_mic = false,
|
||||
.invert_mclk = false,
|
||||
.invert_sclk = false,
|
||||
.hw_gain = gain,
|
||||
};
|
||||
|
||||
const audio_codec_if_t *es8311_dev = es8311_codec_new(&es8311_cfg);
|
||||
assert(es8311_dev);
|
||||
|
||||
esp_codec_dev_cfg_t codec_es8311_dev_cfg = {
|
||||
.dev_type = ESP_CODEC_DEV_TYPE_IN,
|
||||
.codec_if = es8311_dev,
|
||||
.data_if = i2s_data_if,
|
||||
};
|
||||
return esp_codec_dev_new(&codec_es8311_dev_cfg);
|
||||
}
|
||||
|
||||
// Bit number used to represent command and parameter
|
||||
#define LCD_LEDC_CH CONFIG_BSP_DISPLAY_BRIGHTNESS_LEDC_CH
|
||||
|
||||
esp_err_t bsp_display_brightness_init(void)
|
||||
{
|
||||
bsp_i2c_init();
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
esp_err_t bsp_display_brightness_set(int brightness_percent)
|
||||
{
|
||||
if (brightness_percent > 100) {
|
||||
brightness_percent = 100;
|
||||
}
|
||||
if (brightness_percent < 0) {
|
||||
brightness_percent = 0;
|
||||
}
|
||||
|
||||
uint8_t data = (uint8_t)(255 * brightness_percent * 0.01);
|
||||
uint8_t chip_addr = 0x45;
|
||||
|
||||
uint8_t data_addr = 0x96;
|
||||
uint8_t data_to_send[2] = {data_addr, data};
|
||||
|
||||
i2c_device_config_t i2c_dev_conf = {
|
||||
.scl_speed_hz = 100 * 1000,
|
||||
.device_address = chip_addr,
|
||||
};
|
||||
|
||||
i2c_master_dev_handle_t dev_handle = NULL;
|
||||
if (i2c_master_bus_add_device(i2c_handle, &i2c_dev_conf, &dev_handle) != ESP_OK)
|
||||
{
|
||||
return ESP_FAIL;
|
||||
}
|
||||
|
||||
|
||||
esp_err_t ret = i2c_master_transmit(dev_handle, data_to_send, sizeof(data_to_send), 50);
|
||||
if (ret != ESP_OK)
|
||||
{
|
||||
i2c_master_bus_rm_device(dev_handle);
|
||||
return ret;
|
||||
}
|
||||
|
||||
i2c_master_bus_rm_device(dev_handle);
|
||||
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
esp_err_t bsp_display_backlight_off(void)
|
||||
{
|
||||
return bsp_display_brightness_set(0);
|
||||
}
|
||||
|
||||
esp_err_t bsp_display_backlight_on(void)
|
||||
{
|
||||
return bsp_display_brightness_set(100);
|
||||
}
|
||||
|
||||
static esp_err_t bsp_enable_dsi_phy_power(void)
|
||||
{
|
||||
#if BSP_MIPI_DSI_PHY_PWR_LDO_CHAN > 0
|
||||
// Turn on the power for MIPI DSI PHY, so it can go from "No Power" state to "Shutdown" state
|
||||
static esp_ldo_channel_handle_t phy_pwr_chan = NULL;
|
||||
esp_ldo_channel_config_t ldo_cfg = {
|
||||
.chan_id = BSP_MIPI_DSI_PHY_PWR_LDO_CHAN,
|
||||
.voltage_mv = BSP_MIPI_DSI_PHY_PWR_LDO_VOLTAGE_MV,
|
||||
};
|
||||
ESP_RETURN_ON_ERROR(esp_ldo_acquire_channel(&ldo_cfg, &phy_pwr_chan), TAG, "Acquire LDO channel for DPHY failed");
|
||||
ESP_LOGI(TAG, "MIPI DSI PHY Powered on");
|
||||
#endif // BSP_MIPI_DSI_PHY_PWR_LDO_CHAN > 0
|
||||
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
esp_err_t bsp_display_new(const bsp_display_config_t *config, esp_lcd_panel_handle_t *ret_panel, esp_lcd_panel_io_handle_t *ret_io)
|
||||
{
|
||||
esp_err_t ret = ESP_OK;
|
||||
bsp_lcd_handles_t handles;
|
||||
ret = bsp_display_new_with_handles(config, &handles);
|
||||
|
||||
*ret_panel = handles.panel;
|
||||
*ret_io = handles.io;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
esp_err_t bsp_display_new_with_handles(const bsp_display_config_t *config, bsp_lcd_handles_t *ret_handles)
|
||||
{
|
||||
esp_err_t ret = ESP_OK;
|
||||
|
||||
ESP_RETURN_ON_ERROR(bsp_display_brightness_init(), TAG, "Brightness init failed");
|
||||
ESP_RETURN_ON_ERROR(bsp_enable_dsi_phy_power(), TAG, "DSI PHY power failed");
|
||||
|
||||
/* create MIPI DSI bus first, it will initialize the DSI PHY as well */
|
||||
esp_lcd_dsi_bus_handle_t mipi_dsi_bus;
|
||||
esp_lcd_dsi_bus_config_t bus_config = {
|
||||
.bus_id = 0,
|
||||
.num_data_lanes = BSP_LCD_MIPI_DSI_LANE_NUM,
|
||||
.phy_clk_src = MIPI_DSI_PHY_CLK_SRC_DEFAULT,
|
||||
.lane_bit_rate_mbps = BSP_LCD_MIPI_DSI_LANE_BITRATE_MBPS,
|
||||
};
|
||||
ESP_RETURN_ON_ERROR(esp_lcd_new_dsi_bus(&bus_config, &mipi_dsi_bus), TAG, "New DSI bus init failed");
|
||||
|
||||
ESP_LOGI(TAG, "Install MIPI DSI LCD control panel");
|
||||
// we use DBI interface to send LCD commands and parameters
|
||||
esp_lcd_panel_io_handle_t io;
|
||||
esp_lcd_dbi_io_config_t dbi_config = {
|
||||
.virtual_channel = 0,
|
||||
.lcd_cmd_bits = 8, // according to the LCD ILI9881C spec
|
||||
.lcd_param_bits = 8, // according to the LCD ILI9881C spec
|
||||
};
|
||||
ESP_GOTO_ON_ERROR(esp_lcd_new_panel_io_dbi(mipi_dsi_bus, &dbi_config, &io), err, TAG, "New panel IO failed");
|
||||
|
||||
esp_lcd_panel_handle_t disp_panel = NULL;
|
||||
#if CONFIG_BSP_LCD_TYPE_1024_600
|
||||
// create EK79007 control panel
|
||||
ESP_LOGI(TAG, "Install JD9365 LCD control panel");
|
||||
|
||||
#if CONFIG_BSP_LCD_COLOR_FORMAT_RGB888
|
||||
esp_lcd_dpi_panel_config_t dpi_config = JD9365_800_1280_PANEL_60HZ_DPI_CONFIG(LCD_COLOR_PIXEL_FORMAT_RGB888);
|
||||
#else
|
||||
esp_lcd_dpi_panel_config_t dpi_config = JD9365_800_1280_PANEL_60HZ_DPI_CONFIG(LCD_COLOR_PIXEL_FORMAT_RGB565);
|
||||
#endif
|
||||
dpi_config.num_fbs = CONFIG_BSP_LCD_DPI_BUFFER_NUMS;
|
||||
|
||||
jd9365_vendor_config_t vendor_config = {
|
||||
.flags = {
|
||||
.use_mipi_interface = 1,
|
||||
},
|
||||
.mipi_config = {
|
||||
.dsi_bus = mipi_dsi_bus,
|
||||
.dpi_config = &dpi_config,
|
||||
.lane_num = 2
|
||||
},
|
||||
};
|
||||
esp_lcd_panel_dev_config_t lcd_dev_config = {
|
||||
#if CONFIG_BSP_LCD_COLOR_FORMAT_RGB888
|
||||
.bits_per_pixel = 24,
|
||||
#else
|
||||
.bits_per_pixel = 16,
|
||||
#endif
|
||||
.rgb_ele_order = BSP_LCD_COLOR_SPACE,
|
||||
.reset_gpio_num = BSP_LCD_RST,
|
||||
.vendor_config = &vendor_config,
|
||||
};
|
||||
ESP_GOTO_ON_ERROR(esp_lcd_new_panel_jd9365(io, &lcd_dev_config, &disp_panel), err, TAG, "New LCD panel JD9365 failed");
|
||||
ESP_GOTO_ON_ERROR(esp_lcd_panel_reset(disp_panel), err, TAG, "LCD panel reset failed");
|
||||
ESP_GOTO_ON_ERROR(esp_lcd_panel_init(disp_panel), err, TAG, "LCD panel init failed");
|
||||
// ESP_GOTO_ON_ERROR(esp_lcd_panel_disp_on_off(disp_panel, true), err, TAG, "LCD panel ON failed");
|
||||
// ESP_GOTO_ON_ERROR(esp_lcd_panel_disp_sleep(disp_panel, false), err, TAG, "LCD Sleep ON failed");
|
||||
|
||||
#else
|
||||
// create ILI9881C control panel
|
||||
ESP_LOGI(TAG, "Install ILI9881C LCD control panel");
|
||||
#if CONFIG_BSP_LCD_COLOR_FORMAT_RGB888
|
||||
esp_lcd_dpi_panel_config_t dpi_config = ILI9881C_800_1280_PANEL_60HZ_DPI_CONFIG(LCD_COLOR_PIXEL_FORMAT_RGB888);
|
||||
#else
|
||||
esp_lcd_dpi_panel_config_t dpi_config = ILI9881C_800_1280_PANEL_60HZ_DPI_CONFIG(LCD_COLOR_PIXEL_FORMAT_RGB565);
|
||||
#endif
|
||||
dpi_config.num_fbs = CONFIG_BSP_LCD_DPI_BUFFER_NUMS;
|
||||
|
||||
ili9881c_vendor_config_t vendor_config = {
|
||||
.mipi_config = {
|
||||
.dsi_bus = mipi_dsi_bus,
|
||||
.dpi_config = &dpi_config,
|
||||
.lane_num = BSP_LCD_MIPI_DSI_LANE_NUM,
|
||||
},
|
||||
};
|
||||
const esp_lcd_panel_dev_config_t lcd_dev_config = {
|
||||
.reset_gpio_num = BSP_LCD_RST,
|
||||
.rgb_ele_order = BSP_LCD_COLOR_SPACE,
|
||||
.bits_per_pixel = 16,
|
||||
.vendor_config = &vendor_config,
|
||||
};
|
||||
ESP_GOTO_ON_ERROR(esp_lcd_new_panel_ili9881c(io, &lcd_dev_config, &disp_panel), err, TAG, "New LCD panel ILI9881C failed");
|
||||
ESP_GOTO_ON_ERROR(esp_lcd_panel_reset(disp_panel), err, TAG, "LCD panel reset failed");
|
||||
ESP_GOTO_ON_ERROR(esp_lcd_panel_init(disp_panel), err, TAG, "LCD panel init failed");
|
||||
ESP_GOTO_ON_ERROR(esp_lcd_panel_disp_on_off(disp_panel, true), err, TAG, "LCD panel ON failed");
|
||||
#endif
|
||||
|
||||
/* Return all handles */
|
||||
ret_handles->io = io;
|
||||
ret_handles->mipi_dsi_bus = mipi_dsi_bus;
|
||||
ret_handles->panel = disp_panel;
|
||||
ret_handles->control = NULL;
|
||||
|
||||
ESP_LOGI(TAG, "Display initialized");
|
||||
|
||||
return ret;
|
||||
|
||||
err:
|
||||
if (disp_panel) {
|
||||
esp_lcd_panel_del(disp_panel);
|
||||
}
|
||||
if (io) {
|
||||
esp_lcd_panel_io_del(io);
|
||||
}
|
||||
if (mipi_dsi_bus) {
|
||||
esp_lcd_del_dsi_bus(mipi_dsi_bus);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
esp_err_t bsp_touch_new(const bsp_touch_config_t *config, esp_lcd_touch_handle_t *ret_touch)
|
||||
{
|
||||
/* Initilize I2C */
|
||||
BSP_ERROR_CHECK_RETURN_ERR(bsp_i2c_init());
|
||||
|
||||
/* Initialize touch */
|
||||
const esp_lcd_touch_config_t tp_cfg = {
|
||||
.x_max = BSP_LCD_H_RES,
|
||||
.y_max = BSP_LCD_V_RES,
|
||||
.rst_gpio_num = BSP_LCD_TOUCH_RST, // Shared with LCD reset
|
||||
.int_gpio_num = BSP_LCD_TOUCH_INT,
|
||||
.levels = {
|
||||
.reset = 0,
|
||||
.interrupt = 0,
|
||||
},
|
||||
.flags = {
|
||||
.swap_xy = 0,
|
||||
#if CONFIG_BSP_LCD_TYPE_1024_600
|
||||
.mirror_x = 0,
|
||||
.mirror_y = 0,
|
||||
#else
|
||||
.mirror_x = 0,
|
||||
.mirror_y = 0,
|
||||
#endif
|
||||
},
|
||||
};
|
||||
esp_lcd_panel_io_handle_t tp_io_handle = NULL;
|
||||
esp_lcd_panel_io_i2c_config_t tp_io_config = ESP_LCD_TOUCH_IO_I2C_GT911_CONFIG();
|
||||
tp_io_config.scl_speed_hz = 100000;
|
||||
ESP_RETURN_ON_ERROR(esp_lcd_new_panel_io_i2c(i2c_handle, &tp_io_config, &tp_io_handle), TAG, "");
|
||||
return esp_lcd_touch_new_i2c_gt911(tp_io_handle, &tp_cfg, ret_touch);
|
||||
}
|
||||
|
||||
#if (BSP_CONFIG_NO_GRAPHIC_LIB == 0)
|
||||
static lv_display_t *bsp_display_lcd_init(const bsp_display_cfg_t *cfg)
|
||||
{
|
||||
assert(cfg != NULL);
|
||||
bsp_lcd_handles_t lcd_panels;
|
||||
BSP_ERROR_CHECK_RETURN_NULL(bsp_display_new_with_handles(NULL, &lcd_panels));
|
||||
|
||||
/* Add LCD screen */
|
||||
ESP_LOGD(TAG, "Add LCD screen");
|
||||
const lvgl_port_display_cfg_t disp_cfg = {
|
||||
.io_handle = lcd_panels.io,
|
||||
.panel_handle = lcd_panels.panel,
|
||||
.control_handle = lcd_panels.control,
|
||||
.buffer_size = cfg->buffer_size,
|
||||
.double_buffer = cfg->double_buffer,
|
||||
.hres = BSP_LCD_H_RES,
|
||||
.vres = BSP_LCD_V_RES,
|
||||
.monochrome = false,
|
||||
/* Rotation values must be same as used in esp_lcd for initial settings of the screen */
|
||||
.rotation = {
|
||||
.swap_xy = true,
|
||||
.mirror_x = false,
|
||||
.mirror_y = false,
|
||||
},
|
||||
#if LVGL_VERSION_MAJOR >= 9
|
||||
#if CONFIG_BSP_LCD_COLOR_FORMAT_RGB888
|
||||
.color_format = LV_COLOR_FORMAT_RGB888,
|
||||
#else
|
||||
.color_format = LV_COLOR_FORMAT_RGB565,
|
||||
#endif
|
||||
#endif
|
||||
.flags = {
|
||||
.buff_dma = cfg->flags.buff_dma,
|
||||
.buff_spiram = cfg->flags.buff_spiram,
|
||||
#if LVGL_VERSION_MAJOR >= 9
|
||||
.swap_bytes = (BSP_LCD_BIGENDIAN ? true : false),
|
||||
#endif
|
||||
#if CONFIG_BSP_DISPLAY_LVGL_AVOID_TEAR
|
||||
.sw_rotate = false, /* Avoid tearing is not supported for SW rotation */
|
||||
#else
|
||||
.sw_rotate = cfg->flags.sw_rotate, /* Only SW rotation is supported for 90° and 270° */
|
||||
#endif
|
||||
#if CONFIG_BSP_DISPLAY_LVGL_FULL_REFRESH
|
||||
.full_refresh = true,
|
||||
#elif CONFIG_BSP_DISPLAY_LVGL_DIRECT_MODE
|
||||
.direct_mode = true,
|
||||
#endif
|
||||
}
|
||||
};
|
||||
|
||||
const lvgl_port_display_dsi_cfg_t dpi_cfg = {
|
||||
.flags = {
|
||||
#if CONFIG_BSP_DISPLAY_LVGL_AVOID_TEAR
|
||||
.avoid_tearing = true,
|
||||
#else
|
||||
.avoid_tearing = false,
|
||||
#endif
|
||||
}
|
||||
};
|
||||
|
||||
return lvgl_port_add_disp_dsi(&disp_cfg, &dpi_cfg);
|
||||
}
|
||||
|
||||
static lv_indev_t *bsp_display_indev_init(lv_display_t *disp)
|
||||
{
|
||||
esp_lcd_touch_handle_t tp;
|
||||
BSP_ERROR_CHECK_RETURN_NULL(bsp_touch_new(NULL, &tp));
|
||||
assert(tp);
|
||||
|
||||
/* Add touch input (for selected screen) */
|
||||
const lvgl_port_touch_cfg_t touch_cfg = {
|
||||
.disp = disp,
|
||||
.handle = tp,
|
||||
};
|
||||
|
||||
return lvgl_port_add_touch(&touch_cfg);
|
||||
}
|
||||
|
||||
lv_display_t *bsp_display_start(void)
|
||||
{
|
||||
bsp_display_cfg_t cfg = {
|
||||
.lvgl_port_cfg = ESP_LVGL_PORT_INIT_CONFIG(),
|
||||
.buffer_size = BSP_LCD_DRAW_BUFF_SIZE,
|
||||
.double_buffer = BSP_LCD_DRAW_BUFF_DOUBLE,
|
||||
.flags = {
|
||||
#if CONFIG_BSP_LCD_COLOR_FORMAT_RGB888
|
||||
.buff_dma = false,
|
||||
#else
|
||||
.buff_dma = true,
|
||||
#endif
|
||||
.buff_spiram = false,
|
||||
.sw_rotate = true,
|
||||
}
|
||||
};
|
||||
return bsp_display_start_with_config(&cfg);
|
||||
}
|
||||
|
||||
lv_display_t *bsp_display_start_with_config(const bsp_display_cfg_t *cfg)
|
||||
{
|
||||
lv_display_t *disp;
|
||||
|
||||
assert(cfg != NULL);
|
||||
BSP_ERROR_CHECK_RETURN_NULL(lvgl_port_init(&cfg->lvgl_port_cfg));
|
||||
|
||||
BSP_ERROR_CHECK_RETURN_NULL(bsp_display_brightness_init());
|
||||
|
||||
BSP_NULL_CHECK(disp = bsp_display_lcd_init(cfg), NULL);
|
||||
|
||||
BSP_NULL_CHECK(disp_indev = bsp_display_indev_init(disp), NULL);
|
||||
|
||||
return disp;
|
||||
}
|
||||
|
||||
lv_indev_t *bsp_display_get_input_dev(void)
|
||||
{
|
||||
return disp_indev;
|
||||
}
|
||||
|
||||
void bsp_display_rotate(lv_display_t *disp, lv_disp_rotation_t rotation)
|
||||
{
|
||||
lv_disp_set_rotation(disp, rotation);
|
||||
}
|
||||
|
||||
bool bsp_display_lock(uint32_t timeout_ms)
|
||||
{
|
||||
return lvgl_port_lock(timeout_ms);
|
||||
}
|
||||
|
||||
void bsp_display_unlock(void)
|
||||
{
|
||||
lvgl_port_unlock();
|
||||
}
|
||||
|
||||
#endif // (BSP_CONFIG_NO_GRAPHIC_LIB == 0)
|
||||
|
||||
static void usb_lib_task(void *arg)
|
||||
{
|
||||
while (1) {
|
||||
// Start handling system events
|
||||
uint32_t event_flags;
|
||||
usb_host_lib_handle_events(portMAX_DELAY, &event_flags);
|
||||
if (event_flags & USB_HOST_LIB_EVENT_FLAGS_NO_CLIENTS) {
|
||||
ESP_ERROR_CHECK(usb_host_device_free_all());
|
||||
}
|
||||
if (event_flags & USB_HOST_LIB_EVENT_FLAGS_ALL_FREE) {
|
||||
ESP_LOGI(TAG, "USB: All devices freed");
|
||||
// Continue handling USB events to allow device reconnection
|
||||
// The only way this task can be stopped is by calling bsp_usb_host_stop()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
esp_err_t bsp_usb_host_start(bsp_usb_host_power_mode_t mode, bool limit_500mA)
|
||||
{
|
||||
//Install USB Host driver. Should only be called once in entire application
|
||||
ESP_LOGI(TAG, "Installing USB Host");
|
||||
const usb_host_config_t host_config = {
|
||||
.skip_phy_setup = false,
|
||||
.intr_flags = ESP_INTR_FLAG_LEVEL1,
|
||||
};
|
||||
BSP_ERROR_CHECK_RETURN_ERR(usb_host_install(&host_config));
|
||||
|
||||
// Create a task that will handle USB library events
|
||||
if (xTaskCreate(usb_lib_task, "usb_lib", 4096, NULL, 10, &usb_host_task) != pdTRUE) {
|
||||
ESP_LOGE(TAG, "Creating USB host lib task failed");
|
||||
abort();
|
||||
}
|
||||
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
esp_err_t bsp_usb_host_stop(void)
|
||||
{
|
||||
usb_host_uninstall();
|
||||
if (usb_host_task) {
|
||||
vTaskSuspend(usb_host_task);
|
||||
vTaskDelete(usb_host_task);
|
||||
}
|
||||
return ESP_OK;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
dependencies:
|
||||
esp_codec_dev:
|
||||
public: true
|
||||
version: 1.2.*
|
||||
esp_lcd_ek79007: 1.*
|
||||
esp_lcd_ili9881c: 1.*
|
||||
esp_lcd_touch_gt911: ^1
|
||||
waveshare/esp_lcd_jd9365_10_1: ^1.0.3
|
||||
espressif/esp_lvgl_port:
|
||||
public: true
|
||||
version: ^2
|
||||
idf: '>=5.3'
|
||||
lvgl/lvgl: '>=8,<10'
|
||||
description: Board Support Package (BSP) for ESP32-P4 Function EV Board (preview)
|
||||
repository: git://github.com/espressif/esp-bsp.git
|
||||
repository_info:
|
||||
commit_sha: 0064ab931c38699fc993ee161713ac1d1c0943a5
|
||||
path: bsp/esp32_p4_function_ev_board
|
||||
tags:
|
||||
- bsp
|
||||
targets:
|
||||
- esp32p4
|
||||
url: https://github.com/espressif/esp-bsp/tree/master/bsp/esp32_p4_function_ev_board
|
||||
version: 4.1.1
|
||||
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**************************************************************************************************
|
||||
* BSP configuration
|
||||
**************************************************************************************************/
|
||||
// By default, this BSP is shipped with LVGL graphical library. Enabling this option will exclude it.
|
||||
// If you want to use BSP without LVGL, select BSP version with 'noglib' suffix.
|
||||
#if !defined(BSP_CONFIG_NO_GRAPHIC_LIB) // Check if the symbol is not coming from compiler definitions (-D...)
|
||||
#define BSP_CONFIG_NO_GRAPHIC_LIB (0)
|
||||
#endif
|
||||
@@ -0,0 +1,192 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file
|
||||
* @brief BSP LCD
|
||||
*
|
||||
* This file offers API for basic LCD control.
|
||||
* It is useful for users who want to use the LCD without the default Graphical Library LVGL.
|
||||
*
|
||||
* For standard LCD initialization with LVGL graphical library, you can call all-in-one function bsp_display_start().
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include "esp_lcd_types.h"
|
||||
#include "esp_lcd_mipi_dsi.h"
|
||||
#include "sdkconfig.h"
|
||||
|
||||
/* LCD color formats */
|
||||
#define ESP_LCD_COLOR_FORMAT_RGB565 (1)
|
||||
#define ESP_LCD_COLOR_FORMAT_RGB888 (2)
|
||||
|
||||
/* LCD display color format */
|
||||
#if CONFIG_BSP_LCD_COLOR_FORMAT_RGB888
|
||||
#define BSP_LCD_COLOR_FORMAT (ESP_LCD_COLOR_FORMAT_RGB888)
|
||||
#else
|
||||
#define BSP_LCD_COLOR_FORMAT (ESP_LCD_COLOR_FORMAT_RGB565)
|
||||
#endif
|
||||
/* LCD display color bytes endianess */
|
||||
#define BSP_LCD_BIGENDIAN (0)
|
||||
/* LCD display color bits */
|
||||
#define BSP_LCD_BITS_PER_PIXEL (16)
|
||||
/* LCD display color space */
|
||||
#define BSP_LCD_COLOR_SPACE (ESP_LCD_COLOR_SPACE_RGB)
|
||||
|
||||
#if CONFIG_BSP_LCD_TYPE_1024_600
|
||||
/* LCD display definition 1024x600 */
|
||||
#define BSP_LCD_H_RES (800)
|
||||
#define BSP_LCD_V_RES (1280)
|
||||
|
||||
#define BSP_LCD_MIPI_DSI_LCD_HSYNC (40)
|
||||
#define BSP_LCD_MIPI_DSI_LCD_HBP (140)
|
||||
#define BSP_LCD_MIPI_DSI_LCD_HFP (40)
|
||||
#define BSP_LCD_MIPI_DSI_LCD_VSYNC (4)
|
||||
#define BSP_LCD_MIPI_DSI_LCD_VBP (16)
|
||||
#define BSP_LCD_MIPI_DSI_LCD_VFP (16)
|
||||
#else
|
||||
/* LCD display definition 1280x800 */
|
||||
#define BSP_LCD_H_RES (800)
|
||||
#define BSP_LCD_V_RES (1280)
|
||||
|
||||
#define BSP_LCD_MIPI_DSI_LCD_HSYNC (40)
|
||||
#define BSP_LCD_MIPI_DSI_LCD_HBP (140)
|
||||
#define BSP_LCD_MIPI_DSI_LCD_HFP (40)
|
||||
#define BSP_LCD_MIPI_DSI_LCD_VSYNC (4)
|
||||
#define BSP_LCD_MIPI_DSI_LCD_VBP (16)
|
||||
#define BSP_LCD_MIPI_DSI_LCD_VFP (16)
|
||||
#endif
|
||||
|
||||
#define BSP_LCD_MIPI_DSI_LANE_NUM (2) // 2 data lanes
|
||||
#define BSP_LCD_MIPI_DSI_LANE_BITRATE_MBPS (1500) // 1Gbps
|
||||
|
||||
#define BSP_MIPI_DSI_PHY_PWR_LDO_CHAN (3) // LDO_VO3 is connected to VDD_MIPI_DPHY
|
||||
#define BSP_MIPI_DSI_PHY_PWR_LDO_VOLTAGE_MV (2500)
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @brief BSP display configuration structure
|
||||
*
|
||||
*/
|
||||
typedef struct {
|
||||
int dummy;
|
||||
} bsp_display_config_t;
|
||||
|
||||
/**
|
||||
* @brief BSP display return handles
|
||||
*
|
||||
*/
|
||||
typedef struct {
|
||||
esp_lcd_dsi_bus_handle_t mipi_dsi_bus; /*!< MIPI DSI bus handle */
|
||||
esp_lcd_panel_io_handle_t io; /*!< ESP LCD IO handle */
|
||||
esp_lcd_panel_handle_t panel; /*!< ESP LCD panel (color) handle */
|
||||
esp_lcd_panel_handle_t control; /*!< ESP LCD panel (control) handle */
|
||||
} bsp_lcd_handles_t;
|
||||
|
||||
/**
|
||||
* @brief Create new display panel
|
||||
*
|
||||
* For maximum flexibility, this function performs only reset and initialization of the display.
|
||||
* You must turn on the display explicitly by calling esp_lcd_panel_disp_on_off().
|
||||
* The display's backlight is not turned on either. You can use bsp_display_backlight_on/off(),
|
||||
* bsp_display_brightness_set() (on supported boards) or implement your own backlight control.
|
||||
*
|
||||
* If you want to free resources allocated by this function, you can use esp_lcd API, ie.:
|
||||
*
|
||||
* \code{.c}
|
||||
* esp_lcd_panel_del(panel);
|
||||
* esp_lcd_panel_io_del(io);
|
||||
* esp_lcd_del_dsi_bus(mipi_dsi_bus);
|
||||
* \endcode
|
||||
*
|
||||
* @param[in] config display configuration
|
||||
* @param[out] ret_panel esp_lcd panel handle
|
||||
* @param[out] ret_io esp_lcd IO handle
|
||||
* @return
|
||||
* - ESP_OK On success
|
||||
* - Else esp_lcd failure
|
||||
*/
|
||||
esp_err_t bsp_display_new(const bsp_display_config_t *config, esp_lcd_panel_handle_t *ret_panel, esp_lcd_panel_io_handle_t *ret_io);
|
||||
|
||||
/**
|
||||
* @brief Create new display panel
|
||||
*
|
||||
* For maximum flexibility, this function performs only reset and initialization of the display.
|
||||
* You must turn on the display explicitly by calling esp_lcd_panel_disp_on_off().
|
||||
* The display's backlight is not turned on either. You can use bsp_display_backlight_on/off(),
|
||||
* bsp_display_brightness_set() (on supported boards) or implement your own backlight control.
|
||||
*
|
||||
* If you want to free resources allocated by this function, you can use esp_lcd API, ie.:
|
||||
*
|
||||
* \code{.c}
|
||||
* esp_lcd_panel_del(panel);
|
||||
* esp_lcd_panel_del(control);
|
||||
* esp_lcd_panel_io_del(io);
|
||||
* esp_lcd_del_dsi_bus(mipi_dsi_bus);
|
||||
* \endcode
|
||||
*
|
||||
* @param[in] config display configuration
|
||||
* @param[out] ret_handles all esp_lcd handles in one structure
|
||||
* @return
|
||||
* - ESP_OK On success
|
||||
* - Else esp_lcd failure
|
||||
*/
|
||||
esp_err_t bsp_display_new_with_handles(const bsp_display_config_t *config, bsp_lcd_handles_t *ret_handles);
|
||||
|
||||
/**
|
||||
* @brief Initialize display's brightness
|
||||
*
|
||||
* Brightness is controlled with PWM signal to a pin controlling backlight.
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK On success
|
||||
* - ESP_ERR_INVALID_ARG Parameter error
|
||||
*/
|
||||
esp_err_t bsp_display_brightness_init(void);
|
||||
|
||||
/**
|
||||
* @brief Set display's brightness
|
||||
*
|
||||
* Brightness is controlled with PWM signal to a pin controlling backlight.
|
||||
* Brightness must be already initialized by calling bsp_display_brightness_init() or bsp_display_new()
|
||||
*
|
||||
* @param[in] brightness_percent Brightness in [%]
|
||||
* @return
|
||||
* - ESP_OK On success
|
||||
* - ESP_ERR_INVALID_ARG Parameter error
|
||||
*/
|
||||
esp_err_t bsp_display_brightness_set(int brightness_percent);
|
||||
|
||||
/**
|
||||
* @brief Turn on display backlight
|
||||
*
|
||||
* Brightness is controlled with PWM signal to a pin controlling backlight.
|
||||
* Brightness must be already initialized by calling bsp_display_brightness_init() or bsp_display_new()
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK On success
|
||||
* - ESP_ERR_INVALID_ARG Parameter error
|
||||
*/
|
||||
esp_err_t bsp_display_backlight_on(void);
|
||||
|
||||
/**
|
||||
* @brief Turn off display backlight
|
||||
*
|
||||
* Brightness is controlled with PWM signal to a pin controlling backlight.
|
||||
* Brightness must be already initialized by calling bsp_display_brightness_init() or bsp_display_new()
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK On success
|
||||
* - ESP_ERR_INVALID_ARG Parameter error
|
||||
*/
|
||||
esp_err_t bsp_display_backlight_off(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,8 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include "bsp/esp32_p4_function_ev_board.h"
|
||||
@@ -0,0 +1,382 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file
|
||||
* @brief ESP BSP: ESP32-P4 Function EV Board
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "sdkconfig.h"
|
||||
#include "driver/gpio.h"
|
||||
#include "driver/i2c_master.h"
|
||||
#include "driver/sdmmc_host.h"
|
||||
#include "driver/i2s_std.h"
|
||||
#include "bsp/config.h"
|
||||
#include "bsp/display.h"
|
||||
#include "esp_codec_dev.h"
|
||||
#include "sdkconfig.h"
|
||||
|
||||
#if (BSP_CONFIG_NO_GRAPHIC_LIB == 0)
|
||||
#include "lvgl.h"
|
||||
#include "esp_lvgl_port.h"
|
||||
#endif // BSP_CONFIG_NO_GRAPHIC_LIB == 0
|
||||
|
||||
/**************************************************************************************************
|
||||
* BSP Capabilities
|
||||
**************************************************************************************************/
|
||||
|
||||
#define BSP_CAPS_DISPLAY 1
|
||||
#define BSP_CAPS_TOUCH 1
|
||||
#define BSP_CAPS_BUTTONS 0
|
||||
#define BSP_CAPS_AUDIO 1
|
||||
#define BSP_CAPS_AUDIO_SPEAKER 1
|
||||
#define BSP_CAPS_AUDIO_MIC 1
|
||||
#define BSP_CAPS_SDCARD 1
|
||||
#define BSP_CAPS_IMU 0
|
||||
|
||||
/**************************************************************************************************
|
||||
* ESP-BOX pinout
|
||||
**************************************************************************************************/
|
||||
/* I2C */
|
||||
#define BSP_I2C_SCL (GPIO_NUM_8)
|
||||
#define BSP_I2C_SDA (GPIO_NUM_7)
|
||||
|
||||
/* Audio */
|
||||
#define BSP_I2S_SCLK (GPIO_NUM_12)
|
||||
#define BSP_I2S_MCLK (GPIO_NUM_13)
|
||||
#define BSP_I2S_LCLK (GPIO_NUM_10)
|
||||
#define BSP_I2S_DOUT (GPIO_NUM_9)
|
||||
#define BSP_I2S_DSIN (GPIO_NUM_48)
|
||||
#define BSP_POWER_AMP_IO (GPIO_NUM_11)
|
||||
|
||||
/* Display */
|
||||
#if CONFIG_BSP_LCD_TYPE_1024_600
|
||||
#define BSP_LCD_BACKLIGHT (GPIO_NUM_NC)
|
||||
#define BSP_LCD_RST (GPIO_NUM_NC)
|
||||
#define BSP_LCD_TOUCH_RST (GPIO_NUM_NC)
|
||||
#define BSP_LCD_TOUCH_INT (GPIO_NUM_NC)
|
||||
#else
|
||||
#define BSP_LCD_BACKLIGHT (GPIO_NUM_23)
|
||||
#define BSP_LCD_RST (GPIO_NUM_NC)
|
||||
#define BSP_LCD_TOUCH_RST (GPIO_NUM_NC)
|
||||
#define BSP_LCD_TOUCH_INT (GPIO_NUM_NC)
|
||||
#endif
|
||||
|
||||
/* uSD card */
|
||||
#define BSP_SD_D0 (GPIO_NUM_39)
|
||||
#define BSP_SD_D1 (GPIO_NUM_40)
|
||||
#define BSP_SD_D2 (GPIO_NUM_41)
|
||||
#define BSP_SD_D3 (GPIO_NUM_42)
|
||||
#define BSP_SD_CMD (GPIO_NUM_44)
|
||||
#define BSP_SD_CLK (GPIO_NUM_43)
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**************************************************************************************************
|
||||
*
|
||||
* I2C interface
|
||||
*
|
||||
* There are multiple devices connected to I2C peripheral:
|
||||
* - Codec ES8311 (configuration only)
|
||||
* - LCD Touch controller
|
||||
**************************************************************************************************/
|
||||
#define BSP_I2C_NUM CONFIG_BSP_I2C_NUM
|
||||
|
||||
/**
|
||||
* @brief Init I2C driver
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK On success
|
||||
* - ESP_ERR_INVALID_ARG I2C parameter error
|
||||
* - ESP_FAIL I2C driver installation error
|
||||
*
|
||||
*/
|
||||
esp_err_t bsp_i2c_init(void);
|
||||
|
||||
/**
|
||||
* @brief Deinit I2C driver and free its resources
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK On success
|
||||
* - ESP_ERR_INVALID_ARG I2C parameter error
|
||||
*
|
||||
*/
|
||||
esp_err_t bsp_i2c_deinit(void);
|
||||
|
||||
/**
|
||||
* @brief Get I2C driver handle
|
||||
*
|
||||
* @return
|
||||
* - I2C handle
|
||||
*
|
||||
*/
|
||||
i2c_master_bus_handle_t bsp_i2c_get_handle(void);
|
||||
|
||||
/**************************************************************************************************
|
||||
*
|
||||
* I2S audio interface
|
||||
*
|
||||
* There are two devices connected to the I2S peripheral:
|
||||
* - Codec ES8311 for output(playback) and input(recording) path
|
||||
*
|
||||
* For speaker initialization use bsp_audio_codec_speaker_init() which is inside initialize I2S with bsp_audio_init().
|
||||
* For microphone initialization use bsp_audio_codec_microphone_init() which is inside initialize I2S with bsp_audio_init().
|
||||
* After speaker or microphone initialization, use functions from esp_codec_dev for play/record audio.
|
||||
* Example audio play:
|
||||
* \code{.c}
|
||||
* esp_codec_dev_set_out_vol(spk_codec_dev, DEFAULT_VOLUME);
|
||||
* esp_codec_dev_open(spk_codec_dev, &fs);
|
||||
* esp_codec_dev_write(spk_codec_dev, wav_bytes, bytes_read_from_spiffs);
|
||||
* esp_codec_dev_close(spk_codec_dev);
|
||||
* \endcode
|
||||
**************************************************************************************************/
|
||||
|
||||
/**
|
||||
* @brief Init audio
|
||||
*
|
||||
* @note There is no deinit audio function. Users can free audio resources by calling i2s_del_channel()
|
||||
* @warning The type of i2s_config param is depending on IDF version.
|
||||
* @param[in] i2s_config I2S configuration. Pass NULL to use default values (Mono, duplex, 16bit, 22050 Hz)
|
||||
* @return
|
||||
* - ESP_OK On success
|
||||
* - ESP_ERR_NOT_SUPPORTED The communication mode is not supported on the current chip
|
||||
* - ESP_ERR_INVALID_ARG NULL pointer or invalid configuration
|
||||
* - ESP_ERR_NOT_FOUND No available I2S channel found
|
||||
* - ESP_ERR_NO_MEM No memory for storing the channel information
|
||||
* - ESP_ERR_INVALID_STATE This channel has not initialized or already started
|
||||
*/
|
||||
esp_err_t bsp_audio_init(const i2s_std_config_t *i2s_config);
|
||||
|
||||
/**
|
||||
* @brief Initialize speaker codec device
|
||||
*
|
||||
* @return Pointer to codec device handle or NULL when error occurred
|
||||
*/
|
||||
esp_codec_dev_handle_t bsp_audio_codec_speaker_init(void);
|
||||
|
||||
/**
|
||||
* @brief Initialize microphone codec device
|
||||
*
|
||||
* @return Pointer to codec device handle or NULL when error occurred
|
||||
*/
|
||||
esp_codec_dev_handle_t bsp_audio_codec_microphone_init(void);
|
||||
|
||||
/**************************************************************************************************
|
||||
*
|
||||
* SPIFFS
|
||||
*
|
||||
* After mounting the SPIFFS, it can be accessed with stdio functions ie.:
|
||||
* \code{.c}
|
||||
* FILE* f = fopen(BSP_SPIFFS_MOUNT_POINT"/hello.txt", "w");
|
||||
* fprintf(f, "Hello World!\n");
|
||||
* fclose(f);
|
||||
* \endcode
|
||||
**************************************************************************************************/
|
||||
#define BSP_SPIFFS_MOUNT_POINT CONFIG_BSP_SPIFFS_MOUNT_POINT
|
||||
|
||||
/**
|
||||
* @brief Mount SPIFFS to virtual file system
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK on success
|
||||
* - ESP_ERR_INVALID_STATE if esp_vfs_spiffs_register was already called
|
||||
* - ESP_ERR_NO_MEM if memory can not be allocated
|
||||
* - ESP_FAIL if partition can not be mounted
|
||||
* - other error codes
|
||||
*/
|
||||
esp_err_t bsp_spiffs_mount(void);
|
||||
|
||||
/**
|
||||
* @brief Unmount SPIFFS from virtual file system
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK on success
|
||||
* - ESP_ERR_NOT_FOUND if the partition table does not contain SPIFFS partition with given label
|
||||
* - ESP_ERR_INVALID_STATE if esp_vfs_spiffs_unregister was already called
|
||||
* - ESP_ERR_NO_MEM if memory can not be allocated
|
||||
* - ESP_FAIL if partition can not be mounted
|
||||
* - other error codes
|
||||
*/
|
||||
esp_err_t bsp_spiffs_unmount(void);
|
||||
|
||||
/**************************************************************************************************
|
||||
*
|
||||
* uSD card
|
||||
*
|
||||
* After mounting the uSD card, it can be accessed with stdio functions ie.:
|
||||
* \code{.c}
|
||||
* FILE* f = fopen(BSP_MOUNT_POINT"/hello.txt", "w");
|
||||
* fprintf(f, "Hello %s!\n", bsp_sdcard->cid.name);
|
||||
* fclose(f);
|
||||
* \endcode
|
||||
**************************************************************************************************/
|
||||
#define BSP_SD_MOUNT_POINT CONFIG_BSP_SD_MOUNT_POINT
|
||||
extern sdmmc_card_t *bsp_sdcard;
|
||||
|
||||
/**
|
||||
* @brief Mount microSD card to virtual file system
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK on success
|
||||
* - ESP_ERR_INVALID_STATE if esp_vfs_fat_sdmmc_mount was already called
|
||||
* - ESP_ERR_NO_MEM if memory cannot be allocated
|
||||
* - ESP_FAIL if partition cannot be mounted
|
||||
* - other error codes from SDMMC or SPI drivers, SDMMC protocol, or FATFS drivers
|
||||
*/
|
||||
esp_err_t bsp_sdcard_mount(void);
|
||||
|
||||
/**
|
||||
* @brief Unmount microSD card from virtual file system
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK on success
|
||||
* - ESP_ERR_NOT_FOUND if the partition table does not contain FATFS partition with given label
|
||||
* - ESP_ERR_INVALID_STATE if esp_vfs_fat_spiflash_mount was already called
|
||||
* - ESP_ERR_NO_MEM if memory can not be allocated
|
||||
* - ESP_FAIL if partition can not be mounted
|
||||
* - other error codes from wear levelling library, SPI flash driver, or FATFS drivers
|
||||
*/
|
||||
esp_err_t bsp_sdcard_unmount(void);
|
||||
|
||||
/**************************************************************************************************
|
||||
*
|
||||
* LCD interface
|
||||
*
|
||||
* ESP-BOX is shipped with 2.4inch ST7789 display controller.
|
||||
* It features 16-bit colors, 320x240 resolution and capacitive touch controller.
|
||||
*
|
||||
* LVGL is used as graphics library. LVGL is NOT thread safe, therefore the user must take LVGL mutex
|
||||
* by calling bsp_display_lock() before calling and LVGL API (lv_...) and then give the mutex with
|
||||
* bsp_display_unlock().
|
||||
*
|
||||
* Display's backlight must be enabled explicitly by calling bsp_display_backlight_on()
|
||||
**************************************************************************************************/
|
||||
#define BSP_LCD_PIXEL_CLOCK_MHZ (80)
|
||||
|
||||
#if (BSP_CONFIG_NO_GRAPHIC_LIB == 0)
|
||||
|
||||
#define BSP_LCD_DRAW_BUFF_SIZE (BSP_LCD_H_RES * 50) // Frame buffer size in pixels
|
||||
#define BSP_LCD_DRAW_BUFF_DOUBLE (0)
|
||||
|
||||
/**
|
||||
* @brief BSP display configuration structure
|
||||
*
|
||||
*/
|
||||
typedef struct {
|
||||
lvgl_port_cfg_t lvgl_port_cfg; /*!< LVGL port configuration */
|
||||
uint32_t buffer_size; /*!< Size of the buffer for the screen in pixels */
|
||||
bool double_buffer; /*!< True, if should be allocated two buffers */
|
||||
struct {
|
||||
unsigned int buff_dma: 1; /*!< Allocated LVGL buffer will be DMA capable */
|
||||
unsigned int buff_spiram: 1; /*!< Allocated LVGL buffer will be in PSRAM */
|
||||
unsigned int sw_rotate: 1; /*!< Use software rotation (slower), The feature is unavailable under avoid-tear mode */
|
||||
} flags;
|
||||
} bsp_display_cfg_t;
|
||||
|
||||
/**
|
||||
* @brief Initialize display
|
||||
*
|
||||
* This function initializes SPI, display controller and starts LVGL handling task.
|
||||
* LCD backlight must be enabled separately by calling bsp_display_brightness_set()
|
||||
*
|
||||
* @return Pointer to LVGL display or NULL when error occured
|
||||
*/
|
||||
lv_display_t *bsp_display_start(void);
|
||||
|
||||
/**
|
||||
* @brief Initialize display
|
||||
*
|
||||
* This function initializes SPI, display controller and starts LVGL handling task.
|
||||
* LCD backlight must be enabled separately by calling bsp_display_brightness_set()
|
||||
*
|
||||
* @param cfg display configuration
|
||||
*
|
||||
* @return Pointer to LVGL display or NULL when error occured
|
||||
*/
|
||||
lv_display_t *bsp_display_start_with_config(const bsp_display_cfg_t *cfg);
|
||||
|
||||
/**
|
||||
* @brief Get pointer to input device (touch, buttons, ...)
|
||||
*
|
||||
* @note The LVGL input device is initialized in bsp_display_start() function.
|
||||
*
|
||||
* @return Pointer to LVGL input device or NULL when not initialized
|
||||
*/
|
||||
lv_indev_t *bsp_display_get_input_dev(void);
|
||||
|
||||
/**
|
||||
* @brief Take LVGL mutex
|
||||
*
|
||||
* @param timeout_ms Timeout in [ms]. 0 will block indefinitely.
|
||||
* @return true Mutex was taken
|
||||
* @return false Mutex was NOT taken
|
||||
*/
|
||||
bool bsp_display_lock(uint32_t timeout_ms);
|
||||
|
||||
/**
|
||||
* @brief Give LVGL mutex
|
||||
*
|
||||
*/
|
||||
void bsp_display_unlock(void);
|
||||
|
||||
/**
|
||||
* @brief Rotate screen
|
||||
*
|
||||
* Display must be already initialized by calling bsp_display_start()
|
||||
*
|
||||
* @param[in] disp Pointer to LVGL display
|
||||
* @param[in] rotation Angle of the display rotation
|
||||
*/
|
||||
void bsp_display_rotate(lv_display_t *disp, lv_disp_rotation_t rotation);
|
||||
#endif // BSP_CONFIG_NO_GRAPHIC_LIB == 0
|
||||
|
||||
/**************************************************************************************************
|
||||
*
|
||||
* USB
|
||||
*
|
||||
**************************************************************************************************/
|
||||
|
||||
|
||||
/**
|
||||
* @brief Power modes of USB Host connector
|
||||
*/
|
||||
typedef enum bsp_usb_host_power_mode_t {
|
||||
BSP_USB_HOST_POWER_MODE_USB_DEV, //!< Power from USB DEV port
|
||||
} bsp_usb_host_power_mode_t;
|
||||
|
||||
/**
|
||||
* @brief Start USB host
|
||||
*
|
||||
* This is a one-stop-shop function that will configure the board for USB Host mode
|
||||
* and start USB Host library
|
||||
*
|
||||
* @param[in] mode USB Host connector power mode (Not used on this board)
|
||||
* @param[in] limit_500mA Limit output current to 500mA (Not used on this board)
|
||||
* @return
|
||||
* - ESP_OK On success
|
||||
* - ESP_ERR_INVALID_ARG Parameter error
|
||||
* - ESP_ERR_NO_MEM Memory cannot be allocated
|
||||
*/
|
||||
esp_err_t bsp_usb_host_start(bsp_usb_host_power_mode_t mode, bool limit_500mA);
|
||||
|
||||
/**
|
||||
* @brief Stop USB host
|
||||
*
|
||||
* USB Host lib will be uninstalled and power from connector removed.
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK On success
|
||||
* - ESP_ERR_INVALID_ARG Parameter error
|
||||
*/
|
||||
esp_err_t bsp_usb_host_stop(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,51 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file
|
||||
* @brief BSP Touchscreen
|
||||
*
|
||||
* This file offers API for basic touchscreen initialization.
|
||||
* It is useful for users who want to use the touchscreen without the default Graphical Library LVGL.
|
||||
*
|
||||
* For standard LCD initialization with LVGL graphical library, you can call all-in-one function bsp_display_start().
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include "esp_lcd_touch.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @brief BSP touch configuration structure
|
||||
*
|
||||
*/
|
||||
typedef struct {
|
||||
void *dummy; /*!< Prepared for future use. */
|
||||
} bsp_touch_config_t;
|
||||
|
||||
/**
|
||||
* @brief Create new touchscreen
|
||||
*
|
||||
* If you want to free resources allocated by this function, you can use esp_lcd_touch API, ie.:
|
||||
*
|
||||
* \code{.c}
|
||||
* esp_lcd_touch_del(tp);
|
||||
* \endcode
|
||||
*
|
||||
* @param[in] config touch configuration
|
||||
* @param[out] ret_touch esp_lcd_touch touchscreen handle
|
||||
* @return
|
||||
* - ESP_OK On success
|
||||
* - Else esp_lcd_touch failure
|
||||
*/
|
||||
esp_err_t bsp_touch_new(const bsp_touch_config_t *config, esp_lcd_touch_handle_t *ret_touch);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,58 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "esp_check.h"
|
||||
#include "sdkconfig.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/* Assert on error, if selected in menuconfig. Otherwise return error code. */
|
||||
#if CONFIG_BSP_ERROR_CHECK
|
||||
#define BSP_ERROR_CHECK_RETURN_ERR(x) ESP_ERROR_CHECK(x)
|
||||
#define BSP_ERROR_CHECK_RETURN_NULL(x) ESP_ERROR_CHECK(x)
|
||||
#define BSP_ERROR_CHECK(x, ret) ESP_ERROR_CHECK(x)
|
||||
#define BSP_NULL_CHECK(x, ret) assert(x)
|
||||
#define BSP_NULL_CHECK_GOTO(x, goto_tag) assert(x)
|
||||
#else
|
||||
#define BSP_ERROR_CHECK_RETURN_ERR(x) do { \
|
||||
esp_err_t err_rc_ = (x); \
|
||||
if (unlikely(err_rc_ != ESP_OK)) { \
|
||||
return err_rc_; \
|
||||
} \
|
||||
} while(0)
|
||||
|
||||
#define BSP_ERROR_CHECK_RETURN_NULL(x) do { \
|
||||
if (unlikely((x) != ESP_OK)) { \
|
||||
return NULL; \
|
||||
} \
|
||||
} while(0)
|
||||
|
||||
#define BSP_NULL_CHECK(x, ret) do { \
|
||||
if ((x) == NULL) { \
|
||||
return ret; \
|
||||
} \
|
||||
} while(0)
|
||||
|
||||
#define BSP_ERROR_CHECK(x, ret) do { \
|
||||
if (unlikely((x) != ESP_OK)) { \
|
||||
return ret; \
|
||||
} \
|
||||
} while(0)
|
||||
|
||||
#define BSP_NULL_CHECK_GOTO(x, goto_tag) do { \
|
||||
if ((x) == NULL) { \
|
||||
goto goto_tag; \
|
||||
} \
|
||||
} while(0)
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,3 @@
|
||||
**/squareline/backup/**
|
||||
**/squareline/autosave/**
|
||||
components/lvgl/**
|
||||
@@ -0,0 +1,10 @@
|
||||
# The following lines of boilerplate have to be in your project's
|
||||
# CMakeLists in this exact order for cmake to work correctly
|
||||
cmake_minimum_required(VERSION 3.5)
|
||||
|
||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||
|
||||
|
||||
add_compile_options(-Wno-format)
|
||||
add_compile_options(-Wno-ignored-qualifiers)
|
||||
project(lvgl_demo_v8)
|
||||
@@ -0,0 +1,170 @@
|
||||
# LVGL Demo v8
|
||||
|
||||
[中文版本](./README_CN.md)
|
||||
|
||||
This example demonstrates how to port LVGL v8 and conduct performance testing using LVGL's built-in demos. The example utilizes the development board's MIPI-DSI interface. Based on this example, applications based on LVGL v8 can be developed.
|
||||
|
||||
|
||||
## Getting Started
|
||||
|
||||
|
||||
### Prerequisites
|
||||
|
||||
* An ESP32-P4-Function-EV-Board.
|
||||
* A 7-inch 1024 x 600 LCD screen powered by the [EK79007](https://dl.espressif.com/dl/schematics/display_driver_chip_EK79007AD_datasheet.pdf) IC, accompanied by a 32-pin FPC connection [adapter board](https://dl.espressif.com/dl/schematics/esp32-p4-function-ev-board-lcd-subboard-schematics.pdf) ([LCD Specifications](https://dl.espressif.com/dl/schematics/display_datasheet.pdf)).
|
||||
* A USB-C cable for power supply and programming.
|
||||
* Please refer to the following steps for the connection:
|
||||
* **Step 1**. According to the table below, connect the pins on the back of the screen adapter board to the corresponding pins on the development board.
|
||||
|
||||
| Screen Adapter Board | ESP32-P4-Function-EV-Board |
|
||||
| -------------------- | -------------------------- |
|
||||
| 5V (any one) | 5V (any one) |
|
||||
| GND (any one) | GND (any one) |
|
||||
| PWM | GPIO26 |
|
||||
| LCD_RST | GPIO27 |
|
||||
|
||||
* **Step 2**. Connect the FPC of LCD through the `MIPI_DSI` interface.
|
||||
* **Step 3**. Use a USB-C cable to connect the `USB-UART` port to a PC (Used for power supply and viewing serial output).
|
||||
* **Step 4**. Turn on the power switch of the board.
|
||||
|
||||
|
||||
### ESP-IDF Required
|
||||
|
||||
- This example supports ESP-IDF release/v5.3 and later branches. By default, it runs on ESP-IDF release/v5.3.
|
||||
- Please follow the [ESP-IDF Programming Guide](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/get-started/index.html) to set up the development environment. **We highly recommend** you [Build Your First Project](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/get-started/index.html#build-your-first-project) to get familiar with ESP-IDF and make sure the environment is set up correctly.
|
||||
|
||||
### Get the esp-dev-kits Repository
|
||||
|
||||
To start from the examples in esp-dev-kits, clone the repository to the local PC by running the following commands in the terminal:
|
||||
|
||||
```
|
||||
git clone --recursive https://github.com/espressif/esp-dev-kits.git
|
||||
```
|
||||
|
||||
|
||||
### Configuration
|
||||
|
||||
Run ``idf.py menuconfig`` and go to ``Board Support Package(ESP32-P4)``:
|
||||
|
||||
```
|
||||
menuconfig > Component config > Board Support Package
|
||||
```
|
||||
|
||||
|
||||
## How to Use the Example
|
||||
|
||||
|
||||
### Build and Flash the Example
|
||||
|
||||
Build the project and flash it to the board, then run monitor tool to view serial output (replace `PORT` with your board's serial port name):
|
||||
|
||||
```c
|
||||
idf.py -p PORT flash monitor
|
||||
```
|
||||
|
||||
To exit the serial monitor, type ``Ctrl-]``.
|
||||
|
||||
See the [ESP-IDF Getting Started Guide](https://docs.espressif.com/projects/esp-idf/en/latest/get-started/index.html) for full steps to configure and use ESP-IDF to build projects.
|
||||
|
||||
|
||||
### Example Output
|
||||
|
||||
- The complete log is as follows:
|
||||
|
||||
```c
|
||||
I (25) boot: ESP-IDF v5.4-dev-2167-gdef35b1ca7-dirty 2nd stage bootloader
|
||||
I (26) boot: compile time Sep 27 2024 16:56:08
|
||||
I (27) boot: Multicore bootloader
|
||||
I (32) boot: chip revision: v0.1
|
||||
I (35) qio_mode: Enabling default flash chip QIO
|
||||
I (40) boot.esp32p4: SPI Speed : 80MHz
|
||||
I (45) boot.esp32p4: SPI Mode : QIO
|
||||
I (49) boot.esp32p4: SPI Flash Size : 16MB
|
||||
I (54) boot: Enabling RNG early entropy source...
|
||||
I (60) boot: Partition Table:
|
||||
I (63) boot: ## Label Usage Type ST Offset Length
|
||||
I (70) boot: 0 nvs WiFi data 01 02 00009000 00006000
|
||||
I (78) boot: 1 phy_init RF data 01 01 0000f000 00001000
|
||||
I (85) boot: 2 factory factory app 00 00 00010000 00800000
|
||||
I (93) boot: 3 storage Unknown data 01 82 00810000 00700000
|
||||
I (101) boot: End of partition table
|
||||
I (105) esp_image: segment 0: paddr=00010020 vaddr=48060020 size=7573ch (481084) map
|
||||
I (189) esp_image: segment 1: paddr=00085764 vaddr=30100000 size=00020h ( 32) load
|
||||
I (191) esp_image: segment 2: paddr=0008578c vaddr=30100020 size=0003ch ( 60) load
|
||||
I (196) esp_image: segment 3: paddr=000857d0 vaddr=4ff00000 size=0a848h ( 43080) load
|
||||
I (212) esp_image: segment 4: paddr=00090020 vaddr=48000020 size=58208h (360968) map
|
||||
I (270) esp_image: segment 5: paddr=000e8230 vaddr=4ff0a848 size=0e2b8h ( 58040) load
|
||||
I (283) esp_image: segment 6: paddr=000f64f0 vaddr=4ff18b00 size=031b4h ( 12724) load
|
||||
I (291) boot: Loaded app from partition at offset 0x10000
|
||||
I (292) boot: Disabling RNG early entropy source...
|
||||
I (303) hex_psram: vendor id : 0x0d (AP)
|
||||
I (304) hex_psram: Latency : 0x01 (Fixed)
|
||||
I (304) hex_psram: DriveStr. : 0x00 (25 Ohm)
|
||||
I (307) hex_psram: dev id : 0x03 (generation 4)
|
||||
I (313) hex_psram: density : 0x07 (256 Mbit)
|
||||
I (318) hex_psram: good-die : 0x06 (Pass)
|
||||
I (323) hex_psram: SRF : 0x02 (Slow Refresh)
|
||||
I (329) hex_psram: BurstType : 0x00 ( Wrap)
|
||||
I (334) hex_psram: BurstLen : 0x03 (2048 Byte)
|
||||
I (340) hex_psram: BitMode : 0x01 (X16 Mode)
|
||||
I (345) hex_psram: Readlatency : 0x04 (14 cycles@Fixed)
|
||||
I (351) hex_psram: DriveStrength: 0x00 (1/1)
|
||||
I (356) MSPI DQS: tuning success, best phase id is 2
|
||||
I (544) MSPI DQS: tuning success, best delayline id is 11
|
||||
I esp_psram: Found 32MB PSRAM device
|
||||
I esp_psram: Speed: 200MHz
|
||||
I (545) mmu_psram: flash_drom_paddr_start: 0x10000
|
||||
I (575) mmu_psram: flash_irom_paddr_start: 0x90000
|
||||
I (594) hex_psram: psram CS IO is dedicated
|
||||
I (594) cpu_start: Multicore app
|
||||
I (1050) esp_psram: SPI SRAM memory test OK
|
||||
W (1060) clk: esp_perip_clk_init() has not been implemented yet
|
||||
I (1067) cpu_start: Pro cpu start user code
|
||||
I (1067) cpu_start: cpu freq: 360000000 Hz
|
||||
I (1067) app_init: Application information:
|
||||
I (1070) app_init: Project name: lvgl_demo_v8
|
||||
I (1076) app_init: App version: 7e53cd00-dirty
|
||||
I (1081) app_init: Compile time: Sep 27 2024 16:55:57
|
||||
I (1087) app_init: ELF file SHA256: f111a533d...
|
||||
I (1093) app_init: ESP-IDF: v5.4-dev-2167-gdef35b1ca7-dirty
|
||||
I (1100) efuse_init: Min chip rev: v0.1
|
||||
I (1104) efuse_init: Max chip rev: v0.99
|
||||
I (1109) efuse_init: Chip rev: v0.1
|
||||
I (1114) heap_init: Initializing. RAM available for dynamic allocation:
|
||||
I (1122) heap_init: At 4FF1DCE0 len 0001D2E0 (116 KiB): RAM
|
||||
I (1128) heap_init: At 4FF3AFC0 len 00004BF0 (18 KiB): RAM
|
||||
I (1134) heap_init: At 4FF40000 len 00040000 (256 KiB): RAM
|
||||
I (1140) heap_init: At 50108080 len 00007F80 (31 KiB): RTCRAM
|
||||
I (1147) heap_init: At 3010005C len 00001FA4 (7 KiB): TCM
|
||||
I (1153) esp_psram: Adding pool of 31360K of PSRAM memory to heap allocator
|
||||
I (1161) spi_flash: detected chip: generic
|
||||
I (1165) spi_flash: flash io: qio
|
||||
W (1169) i2c: This driver is an old driver, please migrate your application code to adapt `driver/i2c_master.h`
|
||||
I (1180) main_task: Started on CPU0
|
||||
I (1203) esp_psram: Reserving pool of 32K of internal memory for DMA/internal allocations
|
||||
I (1203) main_task: Calling app_main()
|
||||
I (1205) LVGL: Starting LVGL task
|
||||
W (1209) ledc: GPIO 26 is not usable, maybe conflict with others
|
||||
I (1216) ESP32_P4_EV: MIPI DSI PHY Powered on
|
||||
I (1222) ESP32_P4_EV: Install MIPI DSI LCD control panel
|
||||
I (1227) ESP32_P4_EV: Install EK79007 LCD control panel
|
||||
I (1233) ek79007: version: 0.1.0
|
||||
I (1237) gpio: GPIO[27]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0
|
||||
I (1403) ESP32_P4_EV: Display initialized
|
||||
E (1404) lcd_panel: esp_lcd_panel_swap_xy(50): swap_xy is not supported by this panel
|
||||
W (1405) GT911: Unable to initialize the I2C address
|
||||
I (1411) GT911: TouchPad_ID:0x39,0x31,0x31
|
||||
I (1415) GT911: TouchPad_Config_Version:89
|
||||
I (1420) ESP32_P4_EV: Setting LCD backlight: 100%
|
||||
I (1489) main_task: Returned from app_main()
|
||||
...
|
||||
```
|
||||
|
||||
## Technical Support and Feedback
|
||||
|
||||
Please use the following feedback channels:
|
||||
|
||||
- For technical queries, go to the [esp32.com](https://esp32.com/viewforum.php?f=22) forum.
|
||||
- For a feature request or bug report, create a [GitHub issue](https://github.com/espressif/esp-dev-kits/issues).
|
||||
|
||||
We will get back to you as soon as possible.
|
||||
@@ -0,0 +1,166 @@
|
||||
# LVGL Demo v8
|
||||
|
||||
[英文版本](./README.md)
|
||||
|
||||
该示例演示了如何移植 LVGL v8 并使用 LVGL 内置的示例进行性能测试。该示例使用了开发板的 MIPI-DSI 接口。基于此示例,可以开发基于 LVGL v8 的应用。
|
||||
|
||||
## 快速入门
|
||||
|
||||
### 准备工作
|
||||
|
||||
* 一块 ESP32-P4-Function-EV-Board 开发板。
|
||||
* 一块由 [EK79007](https://dl.espressif.com/dl/schematics/display_driver_chip_EK79007AD_datasheet.pdf) 芯片驱动的 7 英寸 1024 x 600 LCD 屏幕,配有 32 针 FPC 连接 [适配板](https://dl.espressif.com/dl/schematics/esp32-p4-function-ev-board-lcd-subboard-schematics.pdf) ([LCD 规格](https://dl.espressif.com/dl/schematics/display_datasheet.pdf))。
|
||||
* 用于供电和编程的 USB-C 电缆。
|
||||
* 请参考以下步骤进行连接:
|
||||
* **步骤 1**. 根据下表,将屏幕适配板背面的引脚连接到开发板的相应引脚。
|
||||
|
||||
| 屏幕适配板 | ESP32-P4-Function-EV-Board |
|
||||
| -------------------- | -------------------------- |
|
||||
| 5V(任意一个) | 5V(任意一个) |
|
||||
| GND(任意一个) | GND(任意一个) |
|
||||
| PWM | GPIO26 |
|
||||
| LCD_RST | GPIO27 |
|
||||
|
||||
* **步骤 2**. 通过 `MIPI_DSI` 接口连接 LCD 的 FPC。
|
||||
* **步骤 3**. 使用 USB-C 电缆将 `USB-UART` 端口连接到 PC(用于供电和查看串行输出)。
|
||||
* **步骤 4**. 打开开发板的电源开关。
|
||||
|
||||
### ESP-IDF 要求
|
||||
|
||||
- 此示例支持 ESP-IDF release/v5.3 及以上版本。默认情况下,在 ESP-IDF release/v5.3 上运行。
|
||||
- 请参照 [ESP-IDF 编程指南](https://docs.espressif.com/projects/esp-idf/zh_CN/latest/esp32/get-started/index.html) 设置开发环境。**强烈推荐** 通过 [编译第一个工程](https://docs.espressif.com/projects/esp-idf/zh_CN/latest/esp32/get-started/index.html#id8) 来熟悉 ESP-IDF,并确保环境设置正确。
|
||||
|
||||
### 获取 esp-dev-kits 仓库
|
||||
|
||||
在编译 esp-dev-kits 仓库中的示例之前,请先在终端中运行以下命令,将该仓库克隆到本地:
|
||||
|
||||
```
|
||||
git clone --recursive https://github.com/espressif/esp-dev-kits.git
|
||||
```
|
||||
|
||||
### 配置
|
||||
|
||||
|
||||
运行 ``idf.py menuconfig`` 并修改 ``Board Support Package(ESP32-P4)`` 配置:
|
||||
|
||||
```
|
||||
menuconfig > Component config > Board Support Package
|
||||
```
|
||||
|
||||
## 如何使用示例
|
||||
|
||||
|
||||
### 编译和烧录示例
|
||||
|
||||
编译项目并将其烧录到开发板上,运行监视工具可查看串行端口输出(将 `PORT` 替换为所用开发板的串行端口名):
|
||||
|
||||
```c
|
||||
idf.py -p PORT flash monitor
|
||||
```
|
||||
|
||||
输入``Ctrl-]`` 可退出串口监视。
|
||||
|
||||
有关配置和使用 ESP-IDF 来编译项目的完整步骤,请参阅 [ESP-IDF 快速入门指南](https://docs.espressif.com/projects/esp-idf/zh_CN/latest/esp32/get-started/index.html) 。
|
||||
|
||||
### 示例输出
|
||||
|
||||
- 完整日志如下所示:
|
||||
|
||||
```c
|
||||
I (25) boot: ESP-IDF v5.4-dev-2167-gdef35b1ca7-dirty 2nd stage bootloader
|
||||
I (26) boot: compile time Sep 27 2024 16:56:08
|
||||
I (27) boot: Multicore bootloader
|
||||
I (32) boot: chip revision: v0.1
|
||||
I (35) qio_mode: Enabling default flash chip QIO
|
||||
I (40) boot.esp32p4: SPI Speed : 80MHz
|
||||
I (45) boot.esp32p4: SPI Mode : QIO
|
||||
I (49) boot.esp32p4: SPI Flash Size : 16MB
|
||||
I (54) boot: Enabling RNG early entropy source...
|
||||
I (60) boot: Partition Table:
|
||||
I (63) boot: ## Label Usage Type ST Offset Length
|
||||
I (70) boot: 0 nvs WiFi data 01 02 00009000 00006000
|
||||
I (78) boot: 1 phy_init RF data 01 01 0000f000 00001000
|
||||
I (85) boot: 2 factory factory app 00 00 00010000 00800000
|
||||
I (93) boot: 3 storage Unknown data 01 82 00810000 00700000
|
||||
I (101) boot: End of partition table
|
||||
I (105) esp_image: segment 0: paddr=00010020 vaddr=48060020 size=7573ch (481084) map
|
||||
I (189) esp_image: segment 1: paddr=00085764 vaddr=30100000 size=00020h ( 32) load
|
||||
I (191) esp_image: segment 2: paddr=0008578c vaddr=30100020 size=0003ch ( 60) load
|
||||
I (196) esp_image: segment 3: paddr=000857d0 vaddr=4ff00000 size=0a848h ( 43080) load
|
||||
I (212) esp_image: segment 4: paddr=00090020 vaddr=48000020 size=58208h (360968) map
|
||||
I (270) esp_image: segment 5: paddr=000e8230 vaddr=4ff0a848 size=0e2b8h ( 58040) load
|
||||
I (283) esp_image: segment 6: paddr=000f64f0 vaddr=4ff18b00 size=031b4h ( 12724) load
|
||||
I (291) boot: Loaded app from partition at offset 0x10000
|
||||
I (292) boot: Disabling RNG early entropy source...
|
||||
I (303) hex_psram: vendor id : 0x0d (AP)
|
||||
I (304) hex_psram: Latency : 0x01 (Fixed)
|
||||
I (304) hex_psram: DriveStr. : 0x00 (25 Ohm)
|
||||
I (307) hex_psram: dev id : 0x03 (generation 4)
|
||||
I (313) hex_psram: density : 0x07 (256 Mbit)
|
||||
I (318) hex_psram: good-die : 0x06 (Pass)
|
||||
I (323) hex_psram: SRF : 0x02 (Slow Refresh)
|
||||
I (329) hex_psram: BurstType : 0x00 ( Wrap)
|
||||
I (334) hex_psram: BurstLen : 0x03 (2048 Byte)
|
||||
I (340) hex_psram: BitMode : 0x01 (X16 Mode)
|
||||
I (345) hex_psram: Readlatency : 0x04 (14 cycles@Fixed)
|
||||
I (351) hex_psram: DriveStrength: 0x00 (1/1)
|
||||
I (356) MSPI DQS: tuning success, best phase id is 2
|
||||
I (544) MSPI DQS: tuning success, best delayline id is 11
|
||||
I esp_psram: Found 32MB PSRAM device
|
||||
I esp_psram: Speed: 200MHz
|
||||
I (545) mmu_psram: flash_drom_paddr_start: 0x10000
|
||||
I (575) mmu_psram: flash_irom_paddr_start: 0x90000
|
||||
I (594) hex_psram: psram CS IO is dedicated
|
||||
I (594) cpu_start: Multicore app
|
||||
I (1050) esp_psram: SPI SRAM memory test OK
|
||||
W (1060) clk: esp_perip_clk_init() has not been implemented yet
|
||||
I (1067) cpu_start: Pro cpu start user code
|
||||
I (1067) cpu_start: cpu freq: 360000000 Hz
|
||||
I (1067) app_init: Application information:
|
||||
I (1070) app_init: Project name: lvgl_demo_v8
|
||||
I (1076) app_init: App version: 7e53cd00-dirty
|
||||
I (1081) app_init: Compile time: Sep 27 2024 16:55:57
|
||||
I (1087) app_init: ELF file SHA256: f111a533d...
|
||||
I (1093) app_init: ESP-IDF: v5.4-dev-2167-gdef35b1ca7-dirty
|
||||
I (1100) efuse_init: Min chip rev: v0.1
|
||||
I (1104) efuse_init: Max chip rev: v0.99
|
||||
I (1109) efuse_init: Chip rev: v0.1
|
||||
I (1114) heap_init: Initializing. RAM available for dynamic allocation:
|
||||
I (1122) heap_init: At 4FF1DCE0 len 0001D2E0 (116 KiB): RAM
|
||||
I (1128) heap_init: At 4FF3AFC0 len 00004BF0 (18 KiB): RAM
|
||||
I (1134) heap_init: At 4FF40000 len 00040000 (256 KiB): RAM
|
||||
I (1140) heap_init: At 50108080 len 00007F80 (31 KiB): RTCRAM
|
||||
I (1147) heap_init: At 3010005C len 00001FA4 (7 KiB): TCM
|
||||
I (1153) esp_psram: Adding pool of 31360K of PSRAM memory to heap allocator
|
||||
I (1161) spi_flash: detected chip: generic
|
||||
I (1165) spi_flash: flash io: qio
|
||||
W (1169) i2c: This driver is an old driver, please migrate your application code to adapt `driver/i2c_master.h`
|
||||
I (1180) main_task: Started on CPU0
|
||||
I (1203) esp_psram: Reserving pool of 32K of internal memory for DMA/internal allocations
|
||||
I (1203) main_task: Calling app_main()
|
||||
I (1205) LVGL: Starting LVGL task
|
||||
W (1209) ledc: GPIO 26 is not usable, maybe conflict with others
|
||||
I (1216) ESP32_P4_EV: MIPI DSI PHY Powered on
|
||||
I (1222) ESP32_P4_EV: Install MIPI DSI LCD control panel
|
||||
I (1227) ESP32_P4_EV: Install EK79007 LCD control panel
|
||||
I (1233) ek79007: version: 0.1.0
|
||||
I (1237) gpio: GPIO[27]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0
|
||||
I (1403) ESP32_P4_EV: Display initialized
|
||||
E (1404) lcd_panel: esp_lcd_panel_swap_xy(50): swap_xy is not supported by this panel
|
||||
W (1405) GT911: Unable to initialize the I2C address
|
||||
I (1411) GT911: TouchPad_ID:0x39,0x31,0x31
|
||||
I (1415) GT911: TouchPad_Config_Version:89
|
||||
I (1420) ESP32_P4_EV: Setting LCD backlight: 100%
|
||||
I (1489) main_task: Returned from app_main()
|
||||
...
|
||||
```
|
||||
|
||||
## 技术支持与反馈
|
||||
|
||||
请通过以下渠道进行反馈:
|
||||
|
||||
- 有关技术问题,请访问 [esp32.com](https://esp32.com/viewforum.php?f=22) 论坛。
|
||||
- 有关功能请求或错误报告,请创建新的 [GitHub 问题](https://github.com/espressif/esp-dev-kits/issues)。
|
||||
|
||||
|
||||
我们会尽快回复。
|
||||
@@ -0,0 +1,102 @@
|
||||
dependencies:
|
||||
espressif/cmake_utilities:
|
||||
component_hash: 351350613ceafba240b761b4ea991e0f231ac7a9f59a9ee901f751bddc0bb18f
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.1'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 0.5.3
|
||||
espressif/esp_lcd_touch:
|
||||
component_hash: 779b4ba2464a3ae85681e4b860caa5fdc35801458c23f3039ee761bae7f442a4
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.4.2'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.1.2
|
||||
espressif/esp_lcd_touch_gt911:
|
||||
component_hash: acc1c184358aa29ef72506f618c9c76a8cc2bf12af38a2bff3d44d84f3a08857
|
||||
dependencies:
|
||||
- name: espressif/esp_lcd_touch
|
||||
registry_url: https://components.espressif.com
|
||||
require: public
|
||||
version: ^1.1.0
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.4.2'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
version: 1.1.3
|
||||
espressif/esp_lvgl_port:
|
||||
component_hash: e720c95cf0667554a204591bb5fade4655fb2990465557041200fa44b5bc7556
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.4'
|
||||
- name: lvgl/lvgl
|
||||
registry_url: https://components.espressif.com
|
||||
require: public
|
||||
version: '>=8,<10'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
version: 2.6.0
|
||||
espressif/i2c_bus:
|
||||
component_hash: e3dddc78baa172f4768f3973fbecbd6c6c1f2cb23cc6a36cf3132758be092482
|
||||
dependencies:
|
||||
- name: espressif/cmake_utilities
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: 0.*
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.0'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.4.0
|
||||
idf:
|
||||
source:
|
||||
type: idf
|
||||
version: 6.0.0
|
||||
lvgl/lvgl:
|
||||
component_hash: d7c1ac037ae6e85d94897f807d6e7ba0946a83e720074fc95a4f6241da9f9f53
|
||||
dependencies: []
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
version: 8.4.0
|
||||
waveshare/esp_lcd_jd9365_10_1:
|
||||
component_hash: 148d03ade699a7fa0f08c98e86c1df3d32e92580fac421c04e0ee5b779e86267
|
||||
dependencies:
|
||||
- name: espressif/cmake_utilities
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: 0.*
|
||||
- name: espressif/i2c_bus
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ^1.3.0
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=5.3'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
targets:
|
||||
- esp32p4
|
||||
version: 1.0.3
|
||||
direct_dependencies:
|
||||
- espressif/esp_lcd_touch_gt911
|
||||
- espressif/esp_lvgl_port
|
||||
- lvgl/lvgl
|
||||
- waveshare/esp_lcd_jd9365_10_1
|
||||
manifest_hash: 20a2057422e78de8dbc6744f0985070a13a76f7337d34a09e1b0ba474b066ee3
|
||||
target: esp32p4
|
||||
version: 2.0.0
|
||||
@@ -0,0 +1,11 @@
|
||||
idf_component_register(
|
||||
SRCS main.c
|
||||
INCLUDE_DIRS .)
|
||||
|
||||
idf_component_get_property(LVGL_LIB lvgl__lvgl COMPONENT_LIB)
|
||||
target_compile_options(
|
||||
${LVGL_LIB}
|
||||
PRIVATE
|
||||
-DLV_LVGL_H_INCLUDE_SIMPLE
|
||||
-DLV_USE_DEMO_MUSIC
|
||||
)
|
||||
@@ -0,0 +1,5 @@
|
||||
#
|
||||
# "main" pseudo-component makefile.
|
||||
#
|
||||
# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
## IDF Component Manager Manifest File
|
||||
dependencies:
|
||||
lvgl/lvgl:
|
||||
version: 8.4.*
|
||||
public: true
|
||||
esp_lcd_touch_gt911: ^1
|
||||
waveshare/esp_lcd_jd9365_10_1: ^1.0.3
|
||||
espressif/esp_lvgl_port: "*"
|
||||
@@ -0,0 +1,219 @@
|
||||
#include "freertos/FreeRTOS.h"
|
||||
#include "freertos/task.h"
|
||||
#include "driver/gpio.h"
|
||||
#include "driver/ledc.h"
|
||||
#include "driver/i2c_master.h"
|
||||
#include "nvs_flash.h"
|
||||
#include "nvs.h"
|
||||
#include "esp_log.h"
|
||||
#include "esp_err.h"
|
||||
#include "esp_check.h"
|
||||
#include "esp_memory_utils.h"
|
||||
|
||||
#include "esp_lcd_panel_ops.h"
|
||||
#include "esp_lcd_mipi_dsi.h"
|
||||
#include "esp_ldo_regulator.h"
|
||||
#include "esp_vfs_fat.h"
|
||||
#include "sd_pwr_ctrl_by_on_chip_ldo.h"
|
||||
|
||||
#include "esp_lcd_jd9365_10_1.h"
|
||||
#include "esp_lcd_touch_gt911.h"
|
||||
|
||||
#include "lvgl.h"
|
||||
#include "lv_demos.h"
|
||||
#include "esp_lvgl_port.h"
|
||||
|
||||
#define TAG "main"
|
||||
|
||||
|
||||
#define BSP_MIPI_DSI_PHY_PWR_LDO_CHAN (3) // LDO_VO3 is connected to VDD_MIPI_DPHY
|
||||
#define BSP_MIPI_DSI_PHY_PWR_LDO_VOLTAGE_MV (2500)
|
||||
|
||||
#define BSP_LCD_DPI_BUFFER_NUMS (2)
|
||||
|
||||
#define BSP_LCD_H_RES (800)
|
||||
#define BSP_LCD_V_RES (1280)
|
||||
|
||||
#define BSP_I2C_NUM (I2C_NUM_1)
|
||||
#define BSP_I2C_SDA (GPIO_NUM_7)
|
||||
#define BSP_I2C_SCL (GPIO_NUM_8)
|
||||
|
||||
#define BSP_LCD_TOUCH_RST (GPIO_NUM_NC)
|
||||
#define BSP_LCD_TOUCH_INT (GPIO_NUM_NC)
|
||||
|
||||
#define BSP_LCD_RST (GPIO_NUM_NC)
|
||||
#define BSP_LCD_BACKLIGHT (GPIO_NUM_NC)
|
||||
|
||||
i2c_master_bus_handle_t i2c_handle = NULL;
|
||||
|
||||
|
||||
static esp_err_t bsp_display_brightness_set(int brightness_percent)
|
||||
{
|
||||
if (brightness_percent > 100) {
|
||||
brightness_percent = 100;
|
||||
}
|
||||
if (brightness_percent < 0) {
|
||||
brightness_percent = 0;
|
||||
}
|
||||
|
||||
uint8_t data = (uint8_t)(255 * brightness_percent * 0.01);
|
||||
uint8_t chip_addr = 0x45;
|
||||
|
||||
uint8_t data_addr = 0x96;
|
||||
uint8_t data_to_send[2] = {data_addr, data};
|
||||
|
||||
i2c_device_config_t i2c_dev_conf = {
|
||||
.scl_speed_hz = 100 * 1000,
|
||||
.device_address = chip_addr,
|
||||
};
|
||||
|
||||
i2c_master_dev_handle_t dev_handle = NULL;
|
||||
if (i2c_master_bus_add_device(i2c_handle, &i2c_dev_conf, &dev_handle) != ESP_OK)
|
||||
{
|
||||
return ESP_FAIL;
|
||||
}
|
||||
|
||||
esp_err_t ret = i2c_master_transmit(dev_handle, data_to_send, sizeof(data_to_send), 50);
|
||||
if (ret != ESP_OK)
|
||||
{
|
||||
i2c_master_bus_rm_device(dev_handle);
|
||||
return ret;
|
||||
}
|
||||
|
||||
i2c_master_bus_rm_device(dev_handle);
|
||||
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
|
||||
void app_main(void)
|
||||
{
|
||||
|
||||
i2c_master_bus_config_t i2c_bus_conf = {
|
||||
.clk_source = I2C_CLK_SRC_DEFAULT,
|
||||
.sda_io_num = BSP_I2C_SDA,
|
||||
.scl_io_num = BSP_I2C_SCL,
|
||||
.i2c_port = BSP_I2C_NUM,
|
||||
};
|
||||
i2c_new_master_bus(&i2c_bus_conf, &i2c_handle);
|
||||
|
||||
static esp_ldo_channel_handle_t phy_pwr_chan = NULL;
|
||||
esp_ldo_channel_config_t ldo_cfg = {
|
||||
.chan_id = BSP_MIPI_DSI_PHY_PWR_LDO_CHAN,
|
||||
.voltage_mv = BSP_MIPI_DSI_PHY_PWR_LDO_VOLTAGE_MV,
|
||||
};
|
||||
esp_ldo_acquire_channel(&ldo_cfg, &phy_pwr_chan);
|
||||
ESP_LOGI(TAG, "MIPI DSI PHY Powered on");
|
||||
|
||||
esp_lcd_dsi_bus_handle_t mipi_dsi_bus;
|
||||
esp_lcd_dsi_bus_config_t bus_config = JD9365_PANEL_BUS_DSI_2CH_CONFIG();
|
||||
|
||||
esp_lcd_new_dsi_bus(&bus_config, &mipi_dsi_bus);
|
||||
|
||||
ESP_LOGI(TAG, "Install MIPI DSI LCD control panel");
|
||||
// we use DBI interface to send LCD commands and parameters
|
||||
esp_lcd_panel_io_handle_t io;
|
||||
esp_lcd_dbi_io_config_t dbi_config =JD9365_PANEL_IO_DBI_CONFIG();
|
||||
|
||||
esp_lcd_new_panel_io_dbi(mipi_dsi_bus, &dbi_config, &io);
|
||||
|
||||
esp_lcd_panel_handle_t disp_panel = NULL;
|
||||
esp_lcd_dpi_panel_config_t dpi_config = JD9365_800_1280_PANEL_60HZ_DPI_CONFIG(LCD_COLOR_PIXEL_FORMAT_RGB565);
|
||||
|
||||
dpi_config.num_fbs = BSP_LCD_DPI_BUFFER_NUMS;
|
||||
|
||||
jd9365_vendor_config_t vendor_config = {
|
||||
.flags = {
|
||||
.use_mipi_interface = 1,
|
||||
},
|
||||
.mipi_config = {
|
||||
.dsi_bus = mipi_dsi_bus,
|
||||
.dpi_config = &dpi_config,
|
||||
.lane_num = 2
|
||||
},
|
||||
};
|
||||
esp_lcd_panel_dev_config_t lcd_dev_config = {
|
||||
.bits_per_pixel = 16,
|
||||
.rgb_ele_order = ESP_LCD_COLOR_SPACE_RGB,
|
||||
.reset_gpio_num = BSP_LCD_RST,
|
||||
.vendor_config = &vendor_config,
|
||||
};
|
||||
esp_lcd_new_panel_jd9365(io, &lcd_dev_config, &disp_panel);
|
||||
esp_lcd_panel_reset(disp_panel);
|
||||
esp_lcd_panel_init(disp_panel);
|
||||
|
||||
const esp_lcd_touch_config_t tp_cfg = {
|
||||
.x_max = BSP_LCD_H_RES,
|
||||
.y_max = BSP_LCD_V_RES,
|
||||
.rst_gpio_num = BSP_LCD_TOUCH_RST, // Shared with LCD reset
|
||||
.int_gpio_num = BSP_LCD_TOUCH_INT,
|
||||
.levels = {
|
||||
.reset = 0,
|
||||
.interrupt = 0,
|
||||
},
|
||||
.flags = {
|
||||
.swap_xy = 0,
|
||||
.mirror_x = 0,
|
||||
.mirror_y = 0,
|
||||
},
|
||||
};
|
||||
esp_lcd_panel_io_handle_t tp_io_handle = NULL;
|
||||
esp_lcd_touch_handle_t tp;
|
||||
esp_lcd_panel_io_i2c_config_t tp_io_config = ESP_LCD_TOUCH_IO_I2C_GT911_CONFIG();
|
||||
tp_io_config.scl_speed_hz = 100000;
|
||||
esp_lcd_new_panel_io_i2c(i2c_handle, &tp_io_config, &tp_io_handle);
|
||||
esp_lcd_touch_new_i2c_gt911(tp_io_handle, &tp_cfg, &tp);
|
||||
|
||||
lvgl_port_cfg_t lv_Port = ESP_LVGL_PORT_INIT_CONFIG();
|
||||
lvgl_port_init(&lv_Port);
|
||||
|
||||
ESP_LOGD(TAG, "Add LCD screen");
|
||||
const lvgl_port_display_cfg_t disp_cfg = {
|
||||
.io_handle = io,
|
||||
.panel_handle = disp_panel,
|
||||
.control_handle = NULL,
|
||||
.buffer_size = BSP_LCD_H_RES *80,
|
||||
.double_buffer = false,
|
||||
.hres = BSP_LCD_H_RES,
|
||||
.vres = BSP_LCD_V_RES,
|
||||
.monochrome = false,
|
||||
/* Rotation values must be same as used in esp_lcd for initial settings of the screen */
|
||||
.rotation = {
|
||||
.swap_xy = false,
|
||||
.mirror_x = false,
|
||||
.mirror_y = false,
|
||||
},
|
||||
// .color_format = LV_COLOR_FORMAT_RGB565,
|
||||
.flags = {
|
||||
.buff_dma = true,
|
||||
.buff_spiram =false,
|
||||
.sw_rotate = false, /* Avoid tearing is not supported for SW rotation */
|
||||
.direct_mode = true,
|
||||
// .full_refresh = true,
|
||||
}
|
||||
};
|
||||
|
||||
const lvgl_port_display_dsi_cfg_t dpi_cfg = {
|
||||
.flags = {
|
||||
.avoid_tearing = true,
|
||||
}
|
||||
};
|
||||
|
||||
lv_display_t *disp =lvgl_port_add_disp_dsi(&disp_cfg, &dpi_cfg);
|
||||
|
||||
const lvgl_port_touch_cfg_t touch_cfg = {
|
||||
.disp = disp,
|
||||
.handle = tp,
|
||||
};
|
||||
|
||||
lvgl_port_add_touch(&touch_cfg);
|
||||
|
||||
bsp_display_brightness_set(100);
|
||||
|
||||
lvgl_port_lock(0);
|
||||
// lv_demo_music();
|
||||
// lv_demo_benchmark();
|
||||
lv_demo_widgets();
|
||||
|
||||
lvgl_port_unlock();
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
# Name, Type, SubType, Offset, Size, Flags
|
||||
# Note: if you change the phy_init or app partition offset, make sure to change the offset in Kconfig.projbuild
|
||||
nvs, data, nvs, 0x9000, 0x6000,
|
||||
phy_init, data, phy, 0xf000, 0x1000,
|
||||
factory, app, factory, , 8M,
|
||||
storage, data, spiffs, , 7M,
|
||||
|
@@ -0,0 +1,53 @@
|
||||
# This file was generated using idf.py save-defconfig. It can be edited manually.
|
||||
# Espressif IoT Development Framework (ESP-IDF) 5.4.0 Project Minimal Configuration
|
||||
#
|
||||
CONFIG_IDF_TARGET="esp32p4"
|
||||
CONFIG_ESPTOOLPY_FLASHMODE_QIO=y
|
||||
CONFIG_ESPTOOLPY_FLASHSIZE_16MB=y
|
||||
CONFIG_PARTITION_TABLE_CUSTOM=y
|
||||
CONFIG_COMPILER_OPTIMIZATION_PERF=y
|
||||
CONFIG_SPIRAM=y
|
||||
CONFIG_SPIRAM_SPEED_200M=y
|
||||
CONFIG_SPIRAM_XIP_FROM_PSRAM=y
|
||||
CONFIG_CACHE_L2_CACHE_256KB=y
|
||||
CONFIG_CACHE_L2_CACHE_LINE_128B=y
|
||||
CONFIG_ESP_MAIN_TASK_STACK_SIZE=10240
|
||||
CONFIG_FREERTOS_HZ=1000
|
||||
CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID=y
|
||||
CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS=y
|
||||
CONFIG_LV_COLOR_SCREEN_TRANSP=y
|
||||
CONFIG_LV_MEM_CUSTOM=y
|
||||
CONFIG_LV_MEMCPY_MEMSET_STD=y
|
||||
CONFIG_LV_DISP_DEF_REFR_PERIOD=15
|
||||
CONFIG_LV_CIRCLE_CACHE_SIZE=10
|
||||
CONFIG_LV_LAYER_SIMPLE_BUF_SIZE=102400
|
||||
CONFIG_LV_IMG_CACHE_DEF_SIZE=5
|
||||
CONFIG_LV_GRAD_CACHE_DEF_SIZE=10240
|
||||
CONFIG_LV_USE_PERF_MONITOR=y
|
||||
CONFIG_LV_ATTRIBUTE_FAST_MEM_USE_IRAM=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_8=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_10=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_12=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_16=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_18=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_20=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_22=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_24=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_26=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_28=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_30=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_32=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_34=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_36=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_38=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_40=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_42=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_44=y
|
||||
CONFIG_LV_FONT_FMT_TXT_LARGE=y
|
||||
CONFIG_LV_USE_FONT_COMPRESSED=y
|
||||
CONFIG_LV_USE_DEMO_WIDGETS=y
|
||||
CONFIG_LV_USE_DEMO_BENCHMARK=y
|
||||
CONFIG_LV_USE_DEMO_STRESS=y
|
||||
CONFIG_LV_USE_DEMO_MUSIC=y
|
||||
CONFIG_LV_DEMO_MUSIC_AUTO_PLAY=y
|
||||
CONFIG_IDF_EXPERIMENTAL_FEATURES=y
|
||||
@@ -0,0 +1,3 @@
|
||||
**/squareline/backup/**
|
||||
**/squareline/autosave/**
|
||||
components/lvgl/**
|
||||
@@ -0,0 +1,15 @@
|
||||
# The following lines of boilerplate have to be in your project's
|
||||
# CMakeLists in this exact order for cmake to work correctly
|
||||
cmake_minimum_required(VERSION 3.5)
|
||||
|
||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||
|
||||
set(EXTRA_COMPONENT_DIRS
|
||||
../common_components
|
||||
)
|
||||
|
||||
add_compile_options(-Wno-format)
|
||||
add_compile_options(-Wno-ignored-qualifiers)
|
||||
add_compile_options(-Wno-attributes)
|
||||
add_compile_options(-Wno-unused-function)
|
||||
project(lvgl_demo_v9)
|
||||
@@ -0,0 +1,170 @@
|
||||
# LVGL Demo v9
|
||||
|
||||
[中文版本](./README_CN.md)
|
||||
|
||||
This example demonstrates how to port LVGL v9 and conduct performance testing using LVGL's built-in demos. The example utilizes the development board's MIPI-DSI interface. Based on this example, applications based on LVGL v9 can be developed.
|
||||
|
||||
|
||||
## Getting Started
|
||||
|
||||
|
||||
### Prerequisites
|
||||
|
||||
* An ESP32-P4-Function-EV-Board.
|
||||
* A 7-inch 1024 x 600 LCD screen powered by the [EK79007](https://dl.espressif.com/dl/schematics/display_driver_chip_EK79007AD_datasheet.pdf) IC, accompanied by a 32-pin FPC connection [adapter board](https://dl.espressif.com/dl/schematics/esp32-p4-function-ev-board-lcd-subboard-schematics.pdf) ([LCD Specifications](https://dl.espressif.com/dl/schematics/display_datasheet.pdf)).
|
||||
* A USB-C cable for power supply and programming.
|
||||
* Please refer to the following steps for the connection:
|
||||
* **Step 1**. According to the table below, connect the pins on the back of the screen adapter board to the corresponding pins on the development board.
|
||||
|
||||
| Screen Adapter Board | ESP32-P4-Function-EV-Board |
|
||||
| -------------------- | -------------------------- |
|
||||
| 5V (any one) | 5V (any one) |
|
||||
| GND (any one) | GND (any one) |
|
||||
| PWM | GPIO26 |
|
||||
| LCD_RST | GPIO27 |
|
||||
|
||||
* **Step 2**. Connect the FPC of LCD through the `MIPI_DSI` interface.
|
||||
* **Step 3**. Use a USB-C cable to connect the `USB-UART` port to a PC (Used for power supply and viewing serial output).
|
||||
* **Step 4**. Turn on the power switch of the board.
|
||||
|
||||
|
||||
### ESP-IDF Required
|
||||
|
||||
- This example supports ESP-IDF release/v5.3 and later branches. By default, it runs on ESP-IDF release/v5.3.
|
||||
- Please follow the [ESP-IDF Programming Guide](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/get-started/index.html) to set up the development environment. **We highly recommend** you [Build Your First Project](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/get-started/index.html#build-your-first-project) to get familiar with ESP-IDF and make sure the environment is set up correctly.
|
||||
|
||||
### Get the esp-dev-kits Repository
|
||||
|
||||
To start from the examples in esp-dev-kits, clone the repository to the local PC by running the following commands in the terminal:
|
||||
|
||||
```
|
||||
git clone --recursive https://github.com/espressif/esp-dev-kits.git
|
||||
```
|
||||
|
||||
|
||||
### Configuration
|
||||
|
||||
Run ``idf.py menuconfig`` and go to ``Board Support Package(ESP32-P4)``:
|
||||
|
||||
```
|
||||
menuconfig > Component config > Board Support Package
|
||||
```
|
||||
|
||||
|
||||
## How to Use the Example
|
||||
|
||||
|
||||
### Build and Flash the Example
|
||||
|
||||
Build the project and flash it to the board, then run monitor tool to view serial output (replace `PORT` with your board's serial port name):
|
||||
|
||||
```c
|
||||
idf.py -p PORT flash monitor
|
||||
```
|
||||
|
||||
To exit the serial monitor, type ``Ctrl-]``.
|
||||
|
||||
See the [ESP-IDF Getting Started Guide](https://docs.espressif.com/projects/esp-idf/en/latest/get-started/index.html) for full steps to configure and use ESP-IDF to build projects.
|
||||
|
||||
|
||||
### Example Output
|
||||
|
||||
- The complete log is as follows:
|
||||
|
||||
```c
|
||||
I (25) boot: ESP-IDF v5.4-dev-2167-gdef35b1ca7-dirty 2nd stage bootloader
|
||||
I (26) boot: compile time Sep 27 2024 17:00:31
|
||||
I (27) boot: Multicore bootloader
|
||||
I (32) boot: chip revision: v0.1
|
||||
I (35) qio_mode: Enabling default flash chip QIO
|
||||
I (40) boot.esp32p4: SPI Speed : 80MHz
|
||||
I (45) boot.esp32p4: SPI Mode : QIO
|
||||
I (49) boot.esp32p4: SPI Flash Size : 16MB
|
||||
I (54) boot: Enabling RNG early entropy source...
|
||||
I (60) boot: Partition Table:
|
||||
I (63) boot: ## Label Usage Type ST Offset Length
|
||||
I (70) boot: 0 nvs WiFi data 01 02 00009000 00006000
|
||||
I (78) boot: 1 phy_init RF data 01 01 0000f000 00001000
|
||||
I (85) boot: 2 factory factory app 00 00 00010000 00800000
|
||||
I (93) boot: 3 storage Unknown data 01 82 00810000 00700000
|
||||
I (101) boot: End of partition table
|
||||
I (105) esp_image: segment 0: paddr=00010020 vaddr=48060020 size=bacdch (765148) map
|
||||
I (233) esp_image: segment 1: paddr=000cad04 vaddr=30100000 size=00020h ( 32) load
|
||||
I (235) esp_image: segment 2: paddr=000cad2c vaddr=30100020 size=0003ch ( 60) load
|
||||
I (240) esp_image: segment 3: paddr=000cad70 vaddr=4ff00000 size=052a8h ( 21160) load
|
||||
I (253) esp_image: segment 4: paddr=000d0020 vaddr=48000020 size=5b534h (374068) map
|
||||
I (315) esp_image: segment 5: paddr=0012b55c vaddr=4ff052a8 size=1caa0h (117408) load
|
||||
I (338) esp_image: segment 6: paddr=00148004 vaddr=4ff21d80 size=03074h ( 12404) load
|
||||
I (348) boot: Loaded app from partition at offset 0x10000
|
||||
I (349) boot: Disabling RNG early entropy source...
|
||||
I (360) hex_psram: vendor id : 0x0d (AP)
|
||||
I (361) hex_psram: Latency : 0x01 (Fixed)
|
||||
I (361) hex_psram: DriveStr. : 0x00 (25 Ohm)
|
||||
I (364) hex_psram: dev id : 0x03 (generation 4)
|
||||
I (370) hex_psram: density : 0x07 (256 Mbit)
|
||||
I (375) hex_psram: good-die : 0x06 (Pass)
|
||||
I (380) hex_psram: SRF : 0x02 (Slow Refresh)
|
||||
I (386) hex_psram: BurstType : 0x00 ( Wrap)
|
||||
I (391) hex_psram: BurstLen : 0x03 (2048 Byte)
|
||||
I (397) hex_psram: BitMode : 0x01 (X16 Mode)
|
||||
I (402) hex_psram: Readlatency : 0x04 (14 cycles@Fixed)
|
||||
I (408) hex_psram: DriveStrength: 0x00 (1/1)
|
||||
I (413) MSPI DQS: tuning success, best phase id is 2
|
||||
I (597) MSPI DQS: tuning success, best delayline id is 11
|
||||
I esp_psram: Found 32MB PSRAM device
|
||||
I esp_psram: Speed: 200MHz
|
||||
I (597) mmu_psram: flash_drom_paddr_start: 0x10000
|
||||
I (640) mmu_psram: flash_irom_paddr_start: 0xd0000
|
||||
I (659) hex_psram: psram CS IO is dedicated
|
||||
I (659) cpu_start: Multicore app
|
||||
I (1091) esp_psram: SPI SRAM memory test OK
|
||||
W (1101) clk: esp_perip_clk_init() has not been implemented yet
|
||||
I (1108) cpu_start: Pro cpu start user code
|
||||
I (1108) cpu_start: cpu freq: 360000000 Hz
|
||||
I (1108) app_init: Application information:
|
||||
I (1111) app_init: Project name: lvgl_demo_v9
|
||||
I (1117) app_init: App version: 7e53cd00-dirty
|
||||
I (1122) app_init: Compile time: Sep 27 2024 17:00:22
|
||||
I (1128) app_init: ELF file SHA256: 506da7290...
|
||||
I (1134) app_init: ESP-IDF: v5.4-dev-2167-gdef35b1ca7-dirty
|
||||
I (1141) efuse_init: Min chip rev: v0.1
|
||||
I (1146) efuse_init: Max chip rev: v0.99
|
||||
I (1151) efuse_init: Chip rev: v0.1
|
||||
I (1155) heap_init: Initializing. RAM available for dynamic allocation:
|
||||
I (1163) heap_init: At 4FF26B50 len 00014470 (81 KiB): RAM
|
||||
I (1169) heap_init: At 4FF3AFC0 len 00004BF0 (18 KiB): RAM
|
||||
I (1175) heap_init: At 4FF40000 len 00040000 (256 KiB): RAM
|
||||
I (1182) heap_init: At 50108080 len 00007F80 (31 KiB): RTCRAM
|
||||
I (1188) heap_init: At 3010005C len 00001FA4 (7 KiB): TCM
|
||||
I (1194) esp_psram: Adding pool of 30848K of PSRAM memory to heap allocator
|
||||
I (1202) spi_flash: detected chip: generic
|
||||
I (1206) spi_flash: flash io: qio
|
||||
W (1210) i2c: This driver is an old driver, please migrate your application code to adapt `driver/i2c_master.h`
|
||||
I (1221) main_task: Started on CPU0
|
||||
I (1244) esp_psram: Reserving pool of 32K of internal memory for DMA/internal allocations
|
||||
I (1244) main_task: Calling app_main()
|
||||
I (1246) LVGL: Starting LVGL task
|
||||
W (1250) ledc: GPIO 26 is not usable, maybe conflict with others
|
||||
I (1257) ESP32_P4_EV: MIPI DSI PHY Powered on
|
||||
I (1263) ESP32_P4_EV: Install MIPI DSI LCD control panel
|
||||
I (1268) ESP32_P4_EV: Install EK79007 LCD control panel
|
||||
I (1274) ek79007: version: 0.1.0
|
||||
I (1278) gpio: GPIO[27]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0
|
||||
I (1444) ESP32_P4_EV: Display initialized
|
||||
E (1446) lcd_panel: esp_lcd_panel_swap_xy(50): swap_xy is not supported by this panel
|
||||
W (1446) GT911: Unable to initialize the I2C address
|
||||
I (1452) GT911: TouchPad_ID:0x39,0x31,0x31
|
||||
I (1456) GT911: TouchPad_Config_Version:89
|
||||
I (1461) ESP32_P4_EV: Setting LCD backlight: 100%
|
||||
I (1542) main_task: Returned from app_main()
|
||||
...
|
||||
```
|
||||
|
||||
## Technical Support and Feedback
|
||||
|
||||
Please use the following feedback channels:
|
||||
|
||||
- For technical queries, go to the [esp32.com](https://esp32.com/viewforum.php?f=22) forum.
|
||||
- For a feature request or bug report, create a [GitHub issue](https://github.com/espressif/esp-dev-kits/issues).
|
||||
|
||||
We will get back to you as soon as possible.
|
||||
@@ -0,0 +1,166 @@
|
||||
# LVGL Demo v9
|
||||
|
||||
[英文版本](./README.md)
|
||||
|
||||
该示例演示了如何移植 LVGL v9 并使用 LVGL 内置的示例进行性能测试。该示例使用了开发板的 MIPI-DSI 接口。基于此示例,可以开发基于 LVGL v9 的应用。
|
||||
|
||||
## 快速入门
|
||||
|
||||
### 准备工作
|
||||
|
||||
* 一块 ESP32-P4-Function-EV-Board 开发板。
|
||||
* 一块由 [EK79007](https://dl.espressif.com/dl/schematics/display_driver_chip_EK79007AD_datasheet.pdf) 芯片驱动的 7 英寸 1024 x 600 LCD 屏幕,配有 32 针 FPC 连接 [适配板](https://dl.espressif.com/dl/schematics/esp32-p4-function-ev-board-lcd-subboard-schematics.pdf) ([LCD 规格](https://dl.espressif.com/dl/schematics/display_datasheet.pdf))。
|
||||
* 用于供电和编程的 USB-C 电缆。
|
||||
* 请参考以下步骤进行连接:
|
||||
* **步骤 1**. 根据下表,将屏幕适配板背面的引脚连接到开发板的相应引脚。
|
||||
|
||||
| 屏幕适配板 | ESP32-P4-Function-EV-Board |
|
||||
| -------------------- | -------------------------- |
|
||||
| 5V(任意一个) | 5V(任意一个) |
|
||||
| GND(任意一个) | GND(任意一个) |
|
||||
| PWM | GPIO26 |
|
||||
| LCD_RST | GPIO27 |
|
||||
|
||||
* **步骤 2**. 通过 `MIPI_DSI` 接口连接 LCD 的 FPC。
|
||||
* **步骤 3**. 使用 USB-C 电缆将 `USB-UART` 端口连接到 PC(用于供电和查看串行输出)。
|
||||
* **步骤 4**. 打开开发板的电源开关。
|
||||
|
||||
### ESP-IDF 要求
|
||||
|
||||
- 此示例支持 ESP-IDF release/v5.3 及以上版本。默认情况下,在 ESP-IDF release/v5.3 上运行。
|
||||
- 请参照 [ESP-IDF 编程指南](https://docs.espressif.com/projects/esp-idf/zh_CN/latest/esp32/get-started/index.html) 设置开发环境。**强烈推荐** 通过 [编译第一个工程](https://docs.espressif.com/projects/esp-idf/zh_CN/latest/esp32/get-started/index.html#id8) 来熟悉 ESP-IDF,并确保环境设置正确。
|
||||
|
||||
### 获取 esp-dev-kits 仓库
|
||||
|
||||
在编译 esp-dev-kits 仓库中的示例之前,请先在终端中运行以下命令,将该仓库克隆到本地:
|
||||
|
||||
```
|
||||
git clone --recursive https://github.com/espressif/esp-dev-kits.git
|
||||
```
|
||||
|
||||
### 配置
|
||||
|
||||
|
||||
运行 ``idf.py menuconfig`` 并修改 ``Board Support Package(ESP32-P4)`` 配置:
|
||||
|
||||
```
|
||||
menuconfig > Component config > Board Support Package
|
||||
```
|
||||
|
||||
## 如何使用示例
|
||||
|
||||
|
||||
### 编译和烧录示例
|
||||
|
||||
编译项目并将其烧录到开发板上,运行监视工具可查看串行端口输出(将 `PORT` 替换为所用开发板的串行端口名):
|
||||
|
||||
```c
|
||||
idf.py -p PORT flash monitor
|
||||
```
|
||||
|
||||
输入``Ctrl-]`` 可退出串口监视。
|
||||
|
||||
有关配置和使用 ESP-IDF 来编译项目的完整步骤,请参阅 [ESP-IDF 快速入门指南](https://docs.espressif.com/projects/esp-idf/zh_CN/latest/esp32/get-started/index.html) 。
|
||||
|
||||
### 示例输出
|
||||
|
||||
- 完整日志如下所示:
|
||||
|
||||
```c
|
||||
I (25) boot: ESP-IDF v5.4-dev-2167-gdef35b1ca7-dirty 2nd stage bootloader
|
||||
I (26) boot: compile time Sep 27 2024 17:00:31
|
||||
I (27) boot: Multicore bootloader
|
||||
I (32) boot: chip revision: v0.1
|
||||
I (35) qio_mode: Enabling default flash chip QIO
|
||||
I (40) boot.esp32p4: SPI Speed : 80MHz
|
||||
I (45) boot.esp32p4: SPI Mode : QIO
|
||||
I (49) boot.esp32p4: SPI Flash Size : 16MB
|
||||
I (54) boot: Enabling RNG early entropy source...
|
||||
I (60) boot: Partition Table:
|
||||
I (63) boot: ## Label Usage Type ST Offset Length
|
||||
I (70) boot: 0 nvs WiFi data 01 02 00009000 00006000
|
||||
I (78) boot: 1 phy_init RF data 01 01 0000f000 00001000
|
||||
I (85) boot: 2 factory factory app 00 00 00010000 00800000
|
||||
I (93) boot: 3 storage Unknown data 01 82 00810000 00700000
|
||||
I (101) boot: End of partition table
|
||||
I (105) esp_image: segment 0: paddr=00010020 vaddr=48060020 size=bacdch (765148) map
|
||||
I (233) esp_image: segment 1: paddr=000cad04 vaddr=30100000 size=00020h ( 32) load
|
||||
I (235) esp_image: segment 2: paddr=000cad2c vaddr=30100020 size=0003ch ( 60) load
|
||||
I (240) esp_image: segment 3: paddr=000cad70 vaddr=4ff00000 size=052a8h ( 21160) load
|
||||
I (253) esp_image: segment 4: paddr=000d0020 vaddr=48000020 size=5b534h (374068) map
|
||||
I (315) esp_image: segment 5: paddr=0012b55c vaddr=4ff052a8 size=1caa0h (117408) load
|
||||
I (338) esp_image: segment 6: paddr=00148004 vaddr=4ff21d80 size=03074h ( 12404) load
|
||||
I (348) boot: Loaded app from partition at offset 0x10000
|
||||
I (349) boot: Disabling RNG early entropy source...
|
||||
I (360) hex_psram: vendor id : 0x0d (AP)
|
||||
I (361) hex_psram: Latency : 0x01 (Fixed)
|
||||
I (361) hex_psram: DriveStr. : 0x00 (25 Ohm)
|
||||
I (364) hex_psram: dev id : 0x03 (generation 4)
|
||||
I (370) hex_psram: density : 0x07 (256 Mbit)
|
||||
I (375) hex_psram: good-die : 0x06 (Pass)
|
||||
I (380) hex_psram: SRF : 0x02 (Slow Refresh)
|
||||
I (386) hex_psram: BurstType : 0x00 ( Wrap)
|
||||
I (391) hex_psram: BurstLen : 0x03 (2048 Byte)
|
||||
I (397) hex_psram: BitMode : 0x01 (X16 Mode)
|
||||
I (402) hex_psram: Readlatency : 0x04 (14 cycles@Fixed)
|
||||
I (408) hex_psram: DriveStrength: 0x00 (1/1)
|
||||
I (413) MSPI DQS: tuning success, best phase id is 2
|
||||
I (597) MSPI DQS: tuning success, best delayline id is 11
|
||||
I esp_psram: Found 32MB PSRAM device
|
||||
I esp_psram: Speed: 200MHz
|
||||
I (597) mmu_psram: flash_drom_paddr_start: 0x10000
|
||||
I (640) mmu_psram: flash_irom_paddr_start: 0xd0000
|
||||
I (659) hex_psram: psram CS IO is dedicated
|
||||
I (659) cpu_start: Multicore app
|
||||
I (1091) esp_psram: SPI SRAM memory test OK
|
||||
W (1101) clk: esp_perip_clk_init() has not been implemented yet
|
||||
I (1108) cpu_start: Pro cpu start user code
|
||||
I (1108) cpu_start: cpu freq: 360000000 Hz
|
||||
I (1108) app_init: Application information:
|
||||
I (1111) app_init: Project name: lvgl_demo_v9
|
||||
I (1117) app_init: App version: 7e53cd00-dirty
|
||||
I (1122) app_init: Compile time: Sep 27 2024 17:00:22
|
||||
I (1128) app_init: ELF file SHA256: 506da7290...
|
||||
I (1134) app_init: ESP-IDF: v5.4-dev-2167-gdef35b1ca7-dirty
|
||||
I (1141) efuse_init: Min chip rev: v0.1
|
||||
I (1146) efuse_init: Max chip rev: v0.99
|
||||
I (1151) efuse_init: Chip rev: v0.1
|
||||
I (1155) heap_init: Initializing. RAM available for dynamic allocation:
|
||||
I (1163) heap_init: At 4FF26B50 len 00014470 (81 KiB): RAM
|
||||
I (1169) heap_init: At 4FF3AFC0 len 00004BF0 (18 KiB): RAM
|
||||
I (1175) heap_init: At 4FF40000 len 00040000 (256 KiB): RAM
|
||||
I (1182) heap_init: At 50108080 len 00007F80 (31 KiB): RTCRAM
|
||||
I (1188) heap_init: At 3010005C len 00001FA4 (7 KiB): TCM
|
||||
I (1194) esp_psram: Adding pool of 30848K of PSRAM memory to heap allocator
|
||||
I (1202) spi_flash: detected chip: generic
|
||||
I (1206) spi_flash: flash io: qio
|
||||
W (1210) i2c: This driver is an old driver, please migrate your application code to adapt `driver/i2c_master.h`
|
||||
I (1221) main_task: Started on CPU0
|
||||
I (1244) esp_psram: Reserving pool of 32K of internal memory for DMA/internal allocations
|
||||
I (1244) main_task: Calling app_main()
|
||||
I (1246) LVGL: Starting LVGL task
|
||||
W (1250) ledc: GPIO 26 is not usable, maybe conflict with others
|
||||
I (1257) ESP32_P4_EV: MIPI DSI PHY Powered on
|
||||
I (1263) ESP32_P4_EV: Install MIPI DSI LCD control panel
|
||||
I (1268) ESP32_P4_EV: Install EK79007 LCD control panel
|
||||
I (1274) ek79007: version: 0.1.0
|
||||
I (1278) gpio: GPIO[27]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0
|
||||
I (1444) ESP32_P4_EV: Display initialized
|
||||
E (1446) lcd_panel: esp_lcd_panel_swap_xy(50): swap_xy is not supported by this panel
|
||||
W (1446) GT911: Unable to initialize the I2C address
|
||||
I (1452) GT911: TouchPad_ID:0x39,0x31,0x31
|
||||
I (1456) GT911: TouchPad_Config_Version:89
|
||||
I (1461) ESP32_P4_EV: Setting LCD backlight: 100%
|
||||
I (1542) main_task: Returned from app_main()
|
||||
...
|
||||
```
|
||||
|
||||
## 技术支持与反馈
|
||||
|
||||
请通过以下渠道进行反馈:
|
||||
|
||||
- 有关技术问题,请访问 [esp32.com](https://esp32.com/viewforum.php?f=22) 论坛。
|
||||
- 有关功能请求或错误报告,请创建新的 [GitHub 问题](https://github.com/espressif/esp-dev-kits/issues)。
|
||||
|
||||
|
||||
我们会尽快回复。
|
||||
@@ -0,0 +1,239 @@
|
||||
dependencies:
|
||||
chmorgan/esp-audio-player:
|
||||
component_hash: c8ac1998e9af863bc41b57e592f88d1a5791a0f891485122336ddabbf7a65033
|
||||
dependencies:
|
||||
- name: chmorgan/esp-libhelix-mp3
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: '>=1.0.0,<2.0.0'
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=5.0'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
version: 1.0.7
|
||||
chmorgan/esp-file-iterator:
|
||||
component_hash: 327091394b9ef5c2cd395a960ab70ae64479e0a8831cbd9925e38895fad93719
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.1.0'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
version: 1.0.0
|
||||
chmorgan/esp-libhelix-mp3:
|
||||
component_hash: cbb76089dc2c5749f7b470e2e70aedc44c9da519e04eb9a67d4c7ec275229e53
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.1.0'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.0.3
|
||||
espressif/cmake_utilities:
|
||||
component_hash: 351350613ceafba240b761b4ea991e0f231ac7a9f59a9ee901f751bddc0bb18f
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.1'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 0.5.3
|
||||
espressif/esp32_p4_function_ev_board:
|
||||
dependencies:
|
||||
- name: espressif/esp_codec_dev
|
||||
public: true
|
||||
version: 1.2.*
|
||||
- name: espressif/esp_lcd_ek79007
|
||||
version: 1.*
|
||||
- name: espressif/esp_lcd_ili9881c
|
||||
version: 1.*
|
||||
- name: espressif/esp_lcd_touch_gt911
|
||||
version: ^1
|
||||
- name: waveshare/esp_lcd_jd9365_10_1
|
||||
version: ^1.0.3
|
||||
- name: espressif/esp_lvgl_port
|
||||
public: true
|
||||
version: ^2
|
||||
- name: idf
|
||||
version: '>=5.3'
|
||||
- name: lvgl/lvgl
|
||||
version: '>=8,<10'
|
||||
source:
|
||||
path: /home/jczn/esp/JC-ESP32P4-M3-DEV/common_components/espressif__esp32_p4_function_ev_board
|
||||
type: local
|
||||
targets:
|
||||
- esp32p4
|
||||
version: 4.1.1
|
||||
espressif/esp_codec_dev:
|
||||
component_hash: 014948481bda426cd46714f297fe1891711246c62bea288863a8cc8cf13ef1f0
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.0'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
version: 1.2.0
|
||||
espressif/esp_h264:
|
||||
component_hash: 7599170f185871bfde69aa0213dfc7f12d45e7dedfd85247be08d6decd34e476
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.4'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
targets:
|
||||
- esp32s3
|
||||
- esp32p4
|
||||
version: 1.1.2
|
||||
espressif/esp_lcd_ek79007:
|
||||
component_hash: 07c1afab7e9fd4dd2fd06ff9245e65327c5bbd5485efec199496e19a9304d47b
|
||||
dependencies:
|
||||
- name: espressif/cmake_utilities
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: 0.*
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=5.3'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
targets:
|
||||
- esp32p4
|
||||
version: 1.0.2
|
||||
espressif/esp_lcd_ili9881c:
|
||||
component_hash: f4f374226b62baf13f735864e8fae58e17c537df34d598e059f6caad4761ef65
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=5.3'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
targets:
|
||||
- esp32p4
|
||||
version: 1.0.1
|
||||
espressif/esp_lcd_st7701:
|
||||
component_hash: 39cea941e1e0e6c47408395d79834c04eac2e308309432af36d94e035b9239d5
|
||||
dependencies:
|
||||
- name: espressif/cmake_utilities
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: 0.*
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>5.0.4,!=5.1.1'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
targets:
|
||||
- esp32s3
|
||||
- esp32p4
|
||||
version: 1.1.3
|
||||
espressif/esp_lcd_touch:
|
||||
component_hash: 779b4ba2464a3ae85681e4b860caa5fdc35801458c23f3039ee761bae7f442a4
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.4.2'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.1.2
|
||||
espressif/esp_lcd_touch_gt911:
|
||||
component_hash: acc1c184358aa29ef72506f618c9c76a8cc2bf12af38a2bff3d44d84f3a08857
|
||||
dependencies:
|
||||
- name: espressif/esp_lcd_touch
|
||||
registry_url: https://components.espressif.com
|
||||
require: public
|
||||
version: ^1.1.0
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.4.2'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
version: 1.1.3
|
||||
espressif/esp_lvgl_port:
|
||||
component_hash: e720c95cf0667554a204591bb5fade4655fb2990465557041200fa44b5bc7556
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.4'
|
||||
- name: lvgl/lvgl
|
||||
registry_url: https://components.espressif.com
|
||||
require: public
|
||||
version: '>=8,<10'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
version: 2.6.0
|
||||
espressif/i2c_bus:
|
||||
component_hash: e3dddc78baa172f4768f3973fbecbd6c6c1f2cb23cc6a36cf3132758be092482
|
||||
dependencies:
|
||||
- name: espressif/cmake_utilities
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: 0.*
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.0'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.4.0
|
||||
idf:
|
||||
source:
|
||||
type: idf
|
||||
version: 6.0.0
|
||||
lvgl/lvgl:
|
||||
component_hash: 096c69af22eaf8a2b721e3913da91918c5e6bf1a762a113ec01f401aa61337a0
|
||||
dependencies: []
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
version: 9.2.2
|
||||
waveshare/esp_lcd_jd9365_10_1:
|
||||
component_hash: 148d03ade699a7fa0f08c98e86c1df3d32e92580fac421c04e0ee5b779e86267
|
||||
dependencies:
|
||||
- name: espressif/cmake_utilities
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: 0.*
|
||||
- name: espressif/i2c_bus
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ^1.3.0
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=5.3'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
targets:
|
||||
- esp32p4
|
||||
version: 1.0.3
|
||||
direct_dependencies:
|
||||
- chmorgan/esp-audio-player
|
||||
- chmorgan/esp-file-iterator
|
||||
- espressif/esp32_p4_function_ev_board
|
||||
- espressif/esp_codec_dev
|
||||
- espressif/esp_h264
|
||||
- espressif/esp_lcd_ek79007
|
||||
- espressif/esp_lcd_ili9881c
|
||||
- espressif/esp_lcd_st7701
|
||||
- espressif/esp_lcd_touch_gt911
|
||||
- espressif/esp_lvgl_port
|
||||
- idf
|
||||
- lvgl/lvgl
|
||||
- waveshare/esp_lcd_jd9365_10_1
|
||||
manifest_hash: a4c4427327e0b608f119f70703a101fb1b83f3233b119303c0778d6596765469
|
||||
target: esp32p4
|
||||
version: 2.0.0
|
||||
@@ -0,0 +1,14 @@
|
||||
set(LV_DEMO_DIR ../managed_components/lvgl__lvgl/demos)
|
||||
file(GLOB_RECURSE LV_DEMOS_SOURCES ${LV_DEMO_DIR}/*.c)
|
||||
|
||||
idf_component_register(
|
||||
SRCS main.c ${LV_DEMOS_SOURCES}
|
||||
INCLUDE_DIRS . ${LV_DEMO_DIR})
|
||||
|
||||
idf_component_get_property(LVGL_LIB lvgl__lvgl COMPONENT_LIB)
|
||||
target_compile_options(
|
||||
${LVGL_LIB}
|
||||
PRIVATE
|
||||
-DLV_LVGL_H_INCLUDE_SIMPLE
|
||||
-DLV_USE_DEMO_MUSIC
|
||||
)
|
||||
@@ -0,0 +1,5 @@
|
||||
#
|
||||
# "main" pseudo-component makefile.
|
||||
#
|
||||
# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
## IDF Component Manager Manifest File
|
||||
dependencies:
|
||||
lvgl/lvgl:
|
||||
version: 9.2.*
|
||||
public: true
|
||||
espressif/esp_lcd_st7701: ^1.1.3
|
||||
espressif/esp_h264: ^1.1.2
|
||||
@@ -0,0 +1,45 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#include "nvs_flash.h"
|
||||
#include "nvs.h"
|
||||
#include "esp_log.h"
|
||||
#include "esp_err.h"
|
||||
#include "esp_check.h"
|
||||
#include "esp_event.h"
|
||||
#include "esp_system.h"
|
||||
#include "driver/uart.h"
|
||||
#include "esp_memory_utils.h"
|
||||
#include "lvgl.h"
|
||||
#include "bsp/esp-bsp.h"
|
||||
#include "bsp/display.h"
|
||||
#include "bsp_board_extra.h"
|
||||
#include "lv_demos.h"
|
||||
|
||||
void app_main(void)
|
||||
{
|
||||
bsp_display_cfg_t cfg = {
|
||||
.lvgl_port_cfg = ESP_LVGL_PORT_INIT_CONFIG(),
|
||||
.buffer_size = BSP_LCD_DRAW_BUFF_SIZE,
|
||||
.double_buffer = BSP_LCD_DRAW_BUFF_DOUBLE,
|
||||
.flags = {
|
||||
.buff_dma = true,
|
||||
.buff_spiram = false,
|
||||
.sw_rotate = true,
|
||||
}
|
||||
};
|
||||
bsp_display_start_with_config(&cfg);
|
||||
bsp_display_backlight_on();
|
||||
|
||||
bsp_display_lock(0);
|
||||
|
||||
|
||||
// lv_demo_music();
|
||||
// lv_demo_benchmark();
|
||||
lv_demo_widgets();
|
||||
|
||||
bsp_display_unlock();
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
# Name, Type, SubType, Offset, Size, Flags
|
||||
# Note: if you change the phy_init or app partition offset, make sure to change the offset in Kconfig.projbuild
|
||||
nvs, data, nvs, 0x9000, 0x6000,
|
||||
phy_init, data, phy, 0xf000, 0x1000,
|
||||
factory, app, factory, , 8M,
|
||||
storage, data, spiffs, , 7M,
|
||||
|
@@ -0,0 +1,47 @@
|
||||
# This file was generated using idf.py save-defconfig. It can be edited manually.
|
||||
# Espressif IoT Development Framework (ESP-IDF) 5.4.0 Project Minimal Configuration
|
||||
#
|
||||
CONFIG_IDF_TARGET="esp32p4"
|
||||
CONFIG_ESPTOOLPY_FLASHMODE_QIO=y
|
||||
CONFIG_ESPTOOLPY_FLASHSIZE_16MB=y
|
||||
CONFIG_PARTITION_TABLE_CUSTOM=y
|
||||
CONFIG_COMPILER_OPTIMIZATION_PERF=y
|
||||
CONFIG_SPIRAM=y
|
||||
CONFIG_SPIRAM_SPEED_200M=y
|
||||
CONFIG_SPIRAM_XIP_FROM_PSRAM=y
|
||||
CONFIG_CACHE_L2_CACHE_256KB=y
|
||||
CONFIG_CACHE_L2_CACHE_LINE_128B=y
|
||||
CONFIG_ESP_MAIN_TASK_STACK_SIZE=10240
|
||||
CONFIG_FREERTOS_HZ=1000
|
||||
CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID=y
|
||||
CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS=y
|
||||
CONFIG_LV_USE_CLIB_MALLOC=y
|
||||
CONFIG_LV_USE_CLIB_STRING=y
|
||||
CONFIG_LV_USE_CLIB_SPRINTF=y
|
||||
CONFIG_LV_DEF_REFR_PERIOD=15
|
||||
CONFIG_LV_OS_FREERTOS=y
|
||||
CONFIG_LV_DRAW_SW_DRAW_UNIT_CNT=2
|
||||
CONFIG_LV_ATTRIBUTE_FAST_MEM_USE_IRAM=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_12=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_16=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_18=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_20=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_22=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_24=y
|
||||
CONFIG_LV_FONT_MONTSERRAT_26=y
|
||||
CONFIG_LV_USE_FONT_COMPRESSED=y
|
||||
CONFIG_LV_TXT_BREAK_CHARS=" ,.;:-_"
|
||||
CONFIG_LV_USE_SYSMON=y
|
||||
CONFIG_LV_USE_PERF_MONITOR=y
|
||||
CONFIG_LV_USE_IMGFONT=y
|
||||
CONFIG_LV_USE_DEMO_WIDGETS=y
|
||||
CONFIG_LV_USE_DEMO_BENCHMARK=y
|
||||
CONFIG_LV_USE_DEMO_RENDER=y
|
||||
CONFIG_LV_USE_DEMO_SCROLL=y
|
||||
CONFIG_LV_USE_DEMO_STRESS=y
|
||||
CONFIG_LV_USE_DEMO_TRANSFORM=y
|
||||
CONFIG_LV_USE_DEMO_MUSIC=y
|
||||
CONFIG_LV_DEMO_MUSIC_AUTO_PLAY=y
|
||||
CONFIG_LV_USE_DEMO_FLEX_LAYOUT=y
|
||||
CONFIG_LV_USE_DEMO_MULTILANG=y
|
||||
CONFIG_IDF_EXPERIMENTAL_FEATURES=y
|
||||
@@ -0,0 +1,7 @@
|
||||
# The following five lines of boilerplate have to be in your project's
|
||||
# CMakeLists in this exact order for cmake to work correctly
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
set(EXTRA_COMPONENT_DIRS ./components)
|
||||
|
||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||
project(lvgl_sw_rotation)
|
||||
@@ -0,0 +1,63 @@
|
||||
| Supported Targets | ESP32-P4 |
|
||||
| ----------------- | -------- |
|
||||
|
||||
| Supported LCD Controller | EK79007 |
|
||||
| ----------------------------|---------|
|
||||
|
||||
| Supported Touch Controller | GT911 |
|
||||
| ----------------------------| -------|
|
||||
|
||||
# MIPI-DSI Avoid Tearing Example
|
||||
|
||||
[esp_lcd](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/peripherals/lcd.html) provides several panel drivers out-of box, e.g. ST7789, SSD1306, NT35510. However, there're a lot of other panels on the market, it's beyond `esp_lcd` component's responsibility to include them all.
|
||||
|
||||
`esp_lcd` allows user to add their own panel drivers in the project scope (i.e. panel driver can live outside of esp-idf), so that the upper layer code like LVGL porting code can be reused without any modifications, as long as user-implemented panel driver follows the interface defined in the `esp_lcd` component.
|
||||
|
||||
This example demonstrates how to avoid tearing when using LVGL with MIPI-DSI interface screens in an esp-idf project. The example will use the LVGL library to draw a stylish music player.
|
||||
|
||||
The LVGL-related parameter configurations, such as LVGL's registered resolution, LVGL task-related parameters, and tearing prevention methods, can be configured in lvgl_port_v9.h.
|
||||
|
||||
This example uses the [esp_timer](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/esp_timer.html) to generate the ticks needed by LVGL and uses a dedicated task to run the `lv_timer_handler()`. Since the LVGL APIs are not thread-safe, this example uses a mutex which be invoked before the call of `lv_timer_handler()` and released after it. The same mutex needs to be used in other tasks and threads around every LVGL (lv_...) related function call and code. For more porting guides, please refer to [LVGL porting doc](https://docs.lvgl.io/master/porting/index.html).
|
||||
|
||||
## How to use the example
|
||||
|
||||
## ESP-IDF Required
|
||||
|
||||
### Hardware Required
|
||||
|
||||
* An ESP32-P4-Function-EV-Board.
|
||||
* A 7-inch 1024 x 600 LCD screen powered by the [EK79007](https://docs.espressif.com/projects/esp-dev-kits/en/latest/_static/esp32-p4-function-ev-board/camera_display_datasheet/display_driver_chip_EK79007AD_datasheet.pdf) IC, accompanied by a 32-pin FPC connection [adapter board](https://docs.espressif.com/projects/esp-dev-kits/en/latest/_static/esp32-p4-function-ev-board/schematics/esp32-p4-function-ev-board-lcd-subboard-schematics.pdf) ([LCD Specifications](https://docs.espressif.com/projects/esp-dev-kits/en/latest/_static/esp32-p4-function-ev-board/camera_display_datasheet/display_datasheet.pdf)).
|
||||
* A USB-C cable for power supply and programming.
|
||||
* Please refer to the following steps for the connection:
|
||||
* **Step 1**. According to the table below, connect the pins on the back of the screen adapter board to the corresponding pins on the development board.
|
||||
|
||||
| Screen Adapter Board | ESP32-P4-Function-EV-Board |
|
||||
| -------------------- | -------------------------- |
|
||||
| 5V (any one) | 5V (any one) |
|
||||
| GND (any one) | GND (any one) |
|
||||
| PWM | GPIO26 |
|
||||
| LCD_RST | GPIO27 |
|
||||
|
||||
* **Step 2**. Connect the FPC of LCD through the `MIPI_DSI` interface.
|
||||
* **Step 3**. Use a USB-C cable to connect the `USB-UART` port to a PC (Used for power supply and viewing serial output).
|
||||
* **Step 4**. Turn on the power switch of the board.
|
||||
|
||||
### Configure the Project
|
||||
|
||||
Run `idf.py menuconfig` and navigate to `Example Configuration` menu.
|
||||
|
||||
### Build and Flash
|
||||
|
||||
Run `idf.py set-target esp32p4` to select the target chip.
|
||||
|
||||
Run `idf.py -p PORT build flash monitor` to build, flash and monitor the project. A fancy animation will show up on the LCD as expected.
|
||||
|
||||
The first time you run `idf.py` for the example will cost extra time as the build system needs to address the component dependencies and downloads the missing components from registry into `managed_components` folder.
|
||||
|
||||
(To exit the serial monitor, type ``Ctrl-]``.)
|
||||
|
||||
See the [Getting Started Guide](https://docs.espressif.com/projects/esp-idf/en/latest/get-started/index.html) for full steps to configure and use ESP-IDF to build projects.
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
For any technical queries, please open an [issue](https://github.com/espressif/esp-iot-solution/issues) on GitHub. We will get back to you soon.
|
||||
@@ -0,0 +1 @@
|
||||
096c69af22eaf8a2b721e3913da91918c5e6bf1a762a113ec01f401aa61337a0
|
||||
@@ -0,0 +1,25 @@
|
||||
cmake_minimum_required(VERSION 3.12)
|
||||
project (lv_emscripten)
|
||||
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2 -s USE_SDL=2")
|
||||
|
||||
include_directories(${PROJECT_SOURCE_DIR})
|
||||
|
||||
add_subdirectory(lvgl)
|
||||
file(GLOB MY_SOURCES "./*.c")
|
||||
set(SOURCES ${MY_SOURCES})
|
||||
|
||||
add_executable(index ${SOURCES} ${INCLUDES})
|
||||
|
||||
if(NOT LVGL_CHOSEN_DEMO)
|
||||
set(LVGL_CHOSEN_DEMO lv_demo_widgets)
|
||||
endif()
|
||||
set_source_files_properties(main.c PROPERTIES COMPILE_FLAGS -DCHOSEN_DEMO=${LVGL_CHOSEN_DEMO})
|
||||
|
||||
set(CMAKE_EXECUTABLE_SUFFIX ".html")
|
||||
target_link_libraries(index
|
||||
lvgl
|
||||
lvgl_examples
|
||||
lvgl_demos
|
||||
)
|
||||
set_target_properties(index PROPERTIES LINK_FLAGS "--shell-file ${PROJECT_SOURCE_DIR}/lvgl/.devcontainer/lvgl_shell.html -s SINGLE_FILE=1")
|
||||
@@ -0,0 +1,4 @@
|
||||
cd build
|
||||
emcmake cmake ..
|
||||
emmake make -j$(nproc)
|
||||
code index.html
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Linux",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**",
|
||||
"/usr/local/emsdk/upstream/emscripten/cache/sysroot/include/"
|
||||
],
|
||||
"defines": [],
|
||||
"compilerPath": "/usr/bin/clang",
|
||||
"cStandard": "c17",
|
||||
"cppStandard": "c++14",
|
||||
"intelliSenseMode": "linux-clang-x64"
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
||||
@@ -0,0 +1,963 @@
|
||||
/**
|
||||
* @file lv_conf.h
|
||||
* Configuration file for v9.0.0-dev
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copy this file as `lv_conf.h`
|
||||
* 1. simply next to the `lvgl` folder
|
||||
* 2. or any other places and
|
||||
* - define `LV_CONF_INCLUDE_SIMPLE`
|
||||
* - add the path as include path
|
||||
*/
|
||||
|
||||
/* clang-format off */
|
||||
#if 1 /*Set it to "1" to enable content*/
|
||||
|
||||
#ifndef LV_CONF_H
|
||||
#define LV_CONF_H
|
||||
|
||||
/*====================
|
||||
COLOR SETTINGS
|
||||
*====================*/
|
||||
|
||||
/*Color depth: 8 (A8), 16 (RGB565), 24 (RGB888), 32 (XRGB8888)*/
|
||||
#define LV_COLOR_DEPTH 16
|
||||
|
||||
/*=========================
|
||||
STDLIB WRAPPER SETTINGS
|
||||
*=========================*/
|
||||
|
||||
/* Possible values
|
||||
* - LV_STDLIB_BUILTIN: LVGL's built in implementation
|
||||
* - LV_STDLIB_CLIB: Standard C functions, like malloc, strlen, etc
|
||||
* - LV_STDLIB_MICROPYTHON: MicroPython implementation
|
||||
* - LV_STDLIB_RTTHREAD: RT-Thread implementation
|
||||
* - LV_STDLIB_CUSTOM: Implement the functions externally
|
||||
*/
|
||||
#define LV_USE_STDLIB_MALLOC LV_STDLIB_BUILTIN
|
||||
#define LV_USE_STDLIB_STRING LV_STDLIB_BUILTIN
|
||||
#define LV_USE_STDLIB_SPRINTF LV_STDLIB_BUILTIN
|
||||
|
||||
|
||||
#if LV_USE_STDLIB_MALLOC == LV_STDLIB_BUILTIN
|
||||
/*Size of the memory available for `lv_malloc()` in bytes (>= 2kB)*/
|
||||
#define LV_MEM_SIZE (256 * 1024U) /*[bytes]*/
|
||||
|
||||
/*Size of the memory expand for `lv_malloc()` in bytes*/
|
||||
#define LV_MEM_POOL_EXPAND_SIZE 0
|
||||
|
||||
/*Set an address for the memory pool instead of allocating it as a normal array. Can be in external SRAM too.*/
|
||||
#define LV_MEM_ADR 0 /*0: unused*/
|
||||
/*Instead of an address give a memory allocator that will be called to get a memory pool for LVGL. E.g. my_malloc*/
|
||||
#if LV_MEM_ADR == 0
|
||||
#undef LV_MEM_POOL_INCLUDE
|
||||
#undef LV_MEM_POOL_ALLOC
|
||||
#endif
|
||||
#endif /*LV_USE_MALLOC == LV_STDLIB_BUILTIN*/
|
||||
|
||||
/*====================
|
||||
HAL SETTINGS
|
||||
*====================*/
|
||||
|
||||
/*Default display refresh, input device read and animation step period.*/
|
||||
#define LV_DEF_REFR_PERIOD 33 /*[ms]*/
|
||||
|
||||
/*Default Dot Per Inch. Used to initialize default sizes such as widgets sized, style paddings.
|
||||
*(Not so important, you can adjust it to modify default sizes and spaces)*/
|
||||
#define LV_DPI_DEF 130 /*[px/inch]*/
|
||||
|
||||
/*=================
|
||||
* OPERATING SYSTEM
|
||||
*=================*/
|
||||
/*Select an operating system to use. Possible options:
|
||||
* - LV_OS_NONE
|
||||
* - LV_OS_PTHREAD
|
||||
* - LV_OS_FREERTOS
|
||||
* - LV_OS_CMSIS_RTOS2
|
||||
* - LV_OS_RTTHREAD
|
||||
* - LV_OS_WINDOWS
|
||||
* - LV_OS_MQX
|
||||
* - LV_OS_CUSTOM */
|
||||
#define LV_USE_OS LV_OS_NONE
|
||||
|
||||
#if LV_USE_OS == LV_OS_CUSTOM
|
||||
#define LV_OS_CUSTOM_INCLUDE <stdint.h>
|
||||
#endif
|
||||
|
||||
/*========================
|
||||
* RENDERING CONFIGURATION
|
||||
*========================*/
|
||||
|
||||
/*Align the stride of all layers and images to this bytes*/
|
||||
#define LV_DRAW_BUF_STRIDE_ALIGN 1
|
||||
|
||||
/*Align the start address of draw_buf addresses to this bytes*/
|
||||
#define LV_DRAW_BUF_ALIGN 4
|
||||
|
||||
#define LV_USE_DRAW_SW 1
|
||||
#if LV_USE_DRAW_SW == 1
|
||||
/* Set the number of draw unit.
|
||||
* > 1 requires an operating system enabled in `LV_USE_OS`
|
||||
* > 1 means multiply threads will render the screen in parallel */
|
||||
#define LV_DRAW_SW_DRAW_UNIT_CNT 1
|
||||
|
||||
/* If a widget has `style_opa < 255` (not `bg_opa`, `text_opa` etc) or not NORMAL blend mode
|
||||
* it is buffered into a "simple" layer before rendering. The widget can be buffered in smaller chunks.
|
||||
* "Transformed layers" (if `transform_angle/zoom` are set) use larger buffers
|
||||
* and can't be drawn in chunks. */
|
||||
|
||||
/*The target buffer size for simple layer chunks.*/
|
||||
#define LV_DRAW_SW_LAYER_SIMPLE_BUF_SIZE (24 * 1024) /*[bytes]*/
|
||||
|
||||
/* 0: use a simple renderer capable of drawing only simple rectangles with gradient, images, texts, and straight lines only
|
||||
* 1: use a complex renderer capable of drawing rounded corners, shadow, skew lines, and arcs too */
|
||||
#define LV_DRAW_SW_COMPLEX 1
|
||||
|
||||
#if LV_DRAW_SW_COMPLEX == 1
|
||||
/*Allow buffering some shadow calculation.
|
||||
*LV_DRAW_SW_SHADOW_CACHE_SIZE is the max. shadow size to buffer, where shadow size is `shadow_width + radius`
|
||||
*Caching has LV_DRAW_SW_SHADOW_CACHE_SIZE^2 RAM cost*/
|
||||
#define LV_DRAW_SW_SHADOW_CACHE_SIZE 0
|
||||
|
||||
/* Set number of maximally cached circle data.
|
||||
* The circumference of 1/4 circle are saved for anti-aliasing
|
||||
* radius * 4 bytes are used per circle (the most often used radiuses are saved)
|
||||
* 0: to disable caching */
|
||||
#define LV_DRAW_SW_CIRCLE_CACHE_SIZE 4
|
||||
#endif
|
||||
|
||||
#define LV_USE_DRAW_SW_ASM LV_DRAW_SW_ASM_NONE
|
||||
|
||||
#if LV_USE_DRAW_SW_ASM == LV_DRAW_SW_ASM_CUSTOM
|
||||
#define LV_DRAW_SW_ASM_CUSTOM_INCLUDE ""
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* Use Arm-2D on Cortex-M based devices. Please only enable it for Helium Powered devices for now */
|
||||
#define LV_USE_DRAW_ARM2D 0
|
||||
|
||||
/* Use NXP's VG-Lite GPU on iMX RTxxx platforms. */
|
||||
#define LV_USE_DRAW_VGLITE 0
|
||||
|
||||
#if LV_USE_DRAW_VGLITE
|
||||
/* Enable blit quality degradation workaround recommended for screen's dimension > 352 pixels. */
|
||||
#define LV_USE_VGLITE_BLIT_SPLIT 0
|
||||
|
||||
#if LV_USE_OS
|
||||
/* Enable VGLite draw async. Queue multiple tasks and flash them once to the GPU. */
|
||||
#define LV_USE_VGLITE_DRAW_ASYNC 1
|
||||
#endif
|
||||
|
||||
/* Enable VGLite asserts. */
|
||||
#define LV_USE_VGLITE_ASSERT 0
|
||||
#endif
|
||||
|
||||
/* Use NXP's PXP on iMX RTxxx platforms. */
|
||||
#define LV_USE_DRAW_PXP 0
|
||||
|
||||
#if LV_USE_DRAW_PXP
|
||||
/* Enable PXP asserts. */
|
||||
#define LV_USE_PXP_ASSERT 0
|
||||
#endif
|
||||
|
||||
/* Use Renesas Dave2D on RA platforms. */
|
||||
#define LV_USE_DRAW_DAVE2D 0
|
||||
|
||||
/* Draw using cached SDL textures*/
|
||||
#define LV_USE_DRAW_SDL 0
|
||||
|
||||
/* Use VG-Lite GPU. */
|
||||
#define LV_USE_DRAW_VG_LITE 0
|
||||
|
||||
#if LV_USE_DRAW_VG_LITE
|
||||
/* Enable VG-Lite custom external 'gpu_init()' function */
|
||||
#define LV_VG_LITE_USE_GPU_INIT 0
|
||||
|
||||
/* Enable VG-Lite assert. */
|
||||
#define LV_VG_LITE_USE_ASSERT 0
|
||||
|
||||
#endif
|
||||
|
||||
/*=======================
|
||||
* FEATURE CONFIGURATION
|
||||
*=======================*/
|
||||
|
||||
/*-------------
|
||||
* Logging
|
||||
*-----------*/
|
||||
|
||||
/*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_USER Only logs added by the user
|
||||
*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
|
||||
|
||||
/*1: Enable print timestamp;
|
||||
*0: Disable print timestamp*/
|
||||
#define LV_LOG_USE_TIMESTAMP 1
|
||||
|
||||
/*1: Print file and line number of the log;
|
||||
*0: Do not print file and line number of the log*/
|
||||
#define LV_LOG_USE_FILE_LINE 1
|
||||
|
||||
/*Enable/disable LV_LOG_TRACE in modules that produces a huge number of logs*/
|
||||
#define LV_LOG_TRACE_MEM 1
|
||||
#define LV_LOG_TRACE_TIMER 1
|
||||
#define LV_LOG_TRACE_INDEV 1
|
||||
#define LV_LOG_TRACE_DISP_REFR 1
|
||||
#define LV_LOG_TRACE_EVENT 1
|
||||
#define LV_LOG_TRACE_OBJ_CREATE 1
|
||||
#define LV_LOG_TRACE_LAYOUT 1
|
||||
#define LV_LOG_TRACE_ANIM 1
|
||||
#define LV_LOG_TRACE_CACHE 1
|
||||
|
||||
#endif /*LV_USE_LOG*/
|
||||
|
||||
/*-------------
|
||||
* Asserts
|
||||
*-----------*/
|
||||
|
||||
/*Enable asserts if an operation is failed or an invalid data is found.
|
||||
*If LV_USE_LOG is enabled an error message will be printed on failure*/
|
||||
#define LV_USE_ASSERT_NULL 1 /*Check if the parameter is NULL. (Very fast, recommended)*/
|
||||
#define LV_USE_ASSERT_MALLOC 1 /*Checks is the memory is successfully allocated or no. (Very fast, recommended)*/
|
||||
#define LV_USE_ASSERT_STYLE 0 /*Check if the styles are properly initialized. (Very fast, recommended)*/
|
||||
#define LV_USE_ASSERT_MEM_INTEGRITY 0 /*Check the integrity of `lv_mem` after critical operations. (Slow)*/
|
||||
#define LV_USE_ASSERT_OBJ 0 /*Check the object's type and existence (e.g. not deleted). (Slow)*/
|
||||
|
||||
/*Add a custom handler when assert happens e.g. to restart the MCU*/
|
||||
#define LV_ASSERT_HANDLER_INCLUDE <stdint.h>
|
||||
#define LV_ASSERT_HANDLER while(1); /*Halt by default*/
|
||||
|
||||
/*-------------
|
||||
* Debug
|
||||
*-----------*/
|
||||
|
||||
/*1: Draw random colored rectangles over the redrawn areas*/
|
||||
#define LV_USE_REFR_DEBUG 0
|
||||
|
||||
/*1: Draw a red overlay for ARGB layers and a green overlay for RGB layers*/
|
||||
#define LV_USE_LAYER_DEBUG 0
|
||||
|
||||
/*1: Draw overlays with different colors for each draw_unit's tasks.
|
||||
*Also add the index number of the draw unit on white background.
|
||||
*For layers add the index number of the draw unit on black background.*/
|
||||
#define LV_USE_PARALLEL_DRAW_DEBUG 0
|
||||
|
||||
/*-------------
|
||||
* Others
|
||||
*-----------*/
|
||||
|
||||
#define LV_ENABLE_GLOBAL_CUSTOM 0
|
||||
#if LV_ENABLE_GLOBAL_CUSTOM
|
||||
/*Header to include for the custom 'lv_global' function"*/
|
||||
#define LV_GLOBAL_CUSTOM_INCLUDE <stdint.h>
|
||||
#endif
|
||||
|
||||
/*Default cache size in bytes.
|
||||
*Used by image decoders such as `lv_lodepng` to keep the decoded image in the memory.
|
||||
*If size is not set to 0, the decoder will fail to decode when the cache is full.
|
||||
*If size is 0, the cache function is not enabled and the decoded mem will be released immediately after use.*/
|
||||
#define LV_CACHE_DEF_SIZE 0
|
||||
|
||||
/*Default number of image header cache entries. The cache is used to store the headers of images
|
||||
*The main logic is like `LV_CACHE_DEF_SIZE` but for image headers.*/
|
||||
#define LV_IMAGE_HEADER_CACHE_DEF_CNT 0
|
||||
|
||||
/*Number of stops allowed per gradient. Increase this to allow more stops.
|
||||
*This adds (sizeof(lv_color_t) + 1) bytes per additional stop*/
|
||||
#define LV_GRADIENT_MAX_STOPS 2
|
||||
|
||||
/* Adjust color mix functions rounding. GPUs might calculate color mix (blending) differently.
|
||||
* 0: round down, 64: round up from x.75, 128: round up from half, 192: round up from x.25, 254: round up */
|
||||
#define LV_COLOR_MIX_ROUND_OFS 0
|
||||
|
||||
/* Add 2 x 32 bit variables to each lv_obj_t to speed up getting style properties */
|
||||
#define LV_OBJ_STYLE_CACHE 1
|
||||
|
||||
/* Add `id` field to `lv_obj_t` */
|
||||
#define LV_USE_OBJ_ID 1
|
||||
|
||||
/* Automatically assign an ID when obj is created */
|
||||
#define LV_OBJ_ID_AUTO_ASSIGN 1
|
||||
|
||||
/* Use lvgl builtin method for obj ID */
|
||||
#define LV_USE_OBJ_ID_BUILTIN 1
|
||||
|
||||
/*Use obj property set/get API*/
|
||||
#define LV_USE_OBJ_PROPERTY 0
|
||||
|
||||
/*Enable property name support*/
|
||||
#define LV_USE_OBJ_PROPERTY_NAME 1
|
||||
|
||||
/* VG-Lite Simulator */
|
||||
/*Requires: LV_USE_THORVG_INTERNAL or LV_USE_THORVG_EXTERNAL */
|
||||
#define LV_USE_VG_LITE_THORVG 0
|
||||
|
||||
#if LV_USE_VG_LITE_THORVG
|
||||
|
||||
/*Enable LVGL's blend mode support*/
|
||||
#define LV_VG_LITE_THORVG_LVGL_BLEND_SUPPORT 0
|
||||
|
||||
/*Enable YUV color format support*/
|
||||
#define LV_VG_LITE_THORVG_YUV_SUPPORT 0
|
||||
|
||||
/*Enable 16 pixels alignment*/
|
||||
#define LV_VG_LITE_THORVG_16PIXELS_ALIGN 1
|
||||
|
||||
/*Enable multi-thread render*/
|
||||
#define LV_VG_LITE_THORVG_THREAD_RENDER 0
|
||||
|
||||
#endif
|
||||
|
||||
/*=====================
|
||||
* 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_timer_handler` function*/
|
||||
#define LV_ATTRIBUTE_TIMER_HANDLER
|
||||
|
||||
/*Define a custom attribute to `lv_display_flush_ready` function*/
|
||||
#define LV_ATTRIBUTE_FLUSH_READY
|
||||
|
||||
/*Required alignment size for buffers*/
|
||||
#define LV_ATTRIBUTE_MEM_ALIGN_SIZE 1
|
||||
|
||||
/*Will be added where memories needs to be aligned (with -Os data might not be aligned to boundary by default).
|
||||
* E.g. __attribute__((aligned(4)))*/
|
||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||
|
||||
/*Attribute to mark large constant arrays for example font's bitmaps*/
|
||||
#define LV_ATTRIBUTE_LARGE_CONST
|
||||
|
||||
/*Compiler prefix for a big array declaration in RAM*/
|
||||
#define LV_ATTRIBUTE_LARGE_RAM_ARRAY
|
||||
|
||||
/*Place performance critical functions into a faster memory (e.g RAM)*/
|
||||
#define LV_ATTRIBUTE_FAST_MEM
|
||||
|
||||
/*Export integer constant to binding. This macro is used with constants in the form of LV_<CONST> that
|
||||
*should also appear on LVGL binding API such as MicroPython.*/
|
||||
#define LV_EXPORT_CONST_INT(int_value) struct _silence_gcc_warning /*The default value just prevents GCC warning*/
|
||||
|
||||
/*Prefix all global extern data with this*/
|
||||
#define LV_ATTRIBUTE_EXTERN_DATA
|
||||
|
||||
/* Use `float` as `lv_value_precise_t` */
|
||||
#define LV_USE_FLOAT 0
|
||||
|
||||
/*==================
|
||||
* FONT USAGE
|
||||
*===================*/
|
||||
|
||||
/*Montserrat fonts with ASCII range and some symbols using bpp = 4
|
||||
*https://fonts.google.com/specimen/Montserrat*/
|
||||
#define LV_FONT_MONTSERRAT_8 1
|
||||
#define LV_FONT_MONTSERRAT_10 1
|
||||
#define LV_FONT_MONTSERRAT_12 1
|
||||
#define LV_FONT_MONTSERRAT_14 1
|
||||
#define LV_FONT_MONTSERRAT_16 1
|
||||
#define LV_FONT_MONTSERRAT_18 1
|
||||
#define LV_FONT_MONTSERRAT_20 1
|
||||
#define LV_FONT_MONTSERRAT_22 1
|
||||
#define LV_FONT_MONTSERRAT_24 1
|
||||
#define LV_FONT_MONTSERRAT_26 1
|
||||
#define LV_FONT_MONTSERRAT_28 1
|
||||
#define LV_FONT_MONTSERRAT_30 1
|
||||
#define LV_FONT_MONTSERRAT_32 1
|
||||
#define LV_FONT_MONTSERRAT_34 1
|
||||
#define LV_FONT_MONTSERRAT_36 1
|
||||
#define LV_FONT_MONTSERRAT_38 1
|
||||
#define LV_FONT_MONTSERRAT_40 1
|
||||
#define LV_FONT_MONTSERRAT_42 1
|
||||
#define LV_FONT_MONTSERRAT_44 1
|
||||
#define LV_FONT_MONTSERRAT_46 1
|
||||
#define LV_FONT_MONTSERRAT_48 1
|
||||
|
||||
/*Demonstrate special features*/
|
||||
#define LV_FONT_MONTSERRAT_28_COMPRESSED 1 /*bpp = 3*/
|
||||
#define LV_FONT_DEJAVU_16_PERSIAN_HEBREW 1 /*Hebrew, Arabic, Persian letters and all their forms*/
|
||||
#define LV_FONT_SIMSUN_16_CJK 1 /*1000 most common CJK radicals*/
|
||||
|
||||
/*Pixel perfect monospace fonts*/
|
||||
#define LV_FONT_UNSCII_8 1
|
||||
#define LV_FONT_UNSCII_16 1
|
||||
|
||||
/*Optionally declare 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
|
||||
|
||||
/*Always set a default font*/
|
||||
#define LV_FONT_DEFAULT &lv_font_montserrat_14
|
||||
|
||||
/*Enable handling large font and/or fonts with a lot of characters.
|
||||
*The limit depends on the font size, font face and bpp.
|
||||
*Compiler error will be triggered if a font needs it.*/
|
||||
#define LV_FONT_FMT_TXT_LARGE 1
|
||||
|
||||
/*Enables/disables support for compressed fonts.*/
|
||||
#define LV_USE_FONT_COMPRESSED 1
|
||||
|
||||
/*Enable drawing placeholders when glyph dsc is not found*/
|
||||
#define LV_USE_FONT_PLACEHOLDER 1
|
||||
|
||||
/*=================
|
||||
* 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
|
||||
|
||||
/*Support bidirectional texts. Allows mixing Left-to-Right and Right-to-Left texts.
|
||||
*The direction will be processed according to the Unicode Bidirectional 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_BASE_DIR_LTR` Left-to-Right
|
||||
*`LV_BASE_DIR_RTL` Right-to-Left
|
||||
*`LV_BASE_DIR_AUTO` detect texts base direction*/
|
||||
#define LV_BIDI_BASE_DIR_DEF LV_BASE_DIR_AUTO
|
||||
#endif
|
||||
|
||||
/*Enable Arabic/Persian processing
|
||||
*In these languages characters should be replaced with another form based on their position in the text*/
|
||||
#define LV_USE_ARABIC_PERSIAN_CHARS 0
|
||||
|
||||
/*==================
|
||||
* WIDGETS
|
||||
*================*/
|
||||
|
||||
/*Documentation of the widgets: https://docs.lvgl.io/latest/en/html/widgets/index.html*/
|
||||
|
||||
#define LV_WIDGETS_HAS_DEFAULT_VALUE 1
|
||||
|
||||
#define LV_USE_ANIMIMG 1
|
||||
|
||||
#define LV_USE_ARC 1
|
||||
|
||||
#define LV_USE_BAR 1
|
||||
|
||||
#define LV_USE_BUTTON 1
|
||||
|
||||
#define LV_USE_BUTTONMATRIX 1
|
||||
|
||||
#define LV_USE_CALENDAR 1
|
||||
#if LV_USE_CALENDAR
|
||||
#define LV_CALENDAR_WEEK_STARTS_MONDAY 0
|
||||
#if LV_CALENDAR_WEEK_STARTS_MONDAY
|
||||
#define LV_CALENDAR_DEFAULT_DAY_NAMES {"Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"}
|
||||
#else
|
||||
#define LV_CALENDAR_DEFAULT_DAY_NAMES {"Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"}
|
||||
#endif
|
||||
|
||||
#define LV_CALENDAR_DEFAULT_MONTH_NAMES {"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"}
|
||||
#define LV_USE_CALENDAR_HEADER_ARROW 1
|
||||
#define LV_USE_CALENDAR_HEADER_DROPDOWN 1
|
||||
#endif /*LV_USE_CALENDAR*/
|
||||
|
||||
#define LV_USE_CANVAS 1
|
||||
|
||||
#define LV_USE_CHART 1
|
||||
|
||||
#define LV_USE_CHECKBOX 1
|
||||
|
||||
#define LV_USE_DROPDOWN 1 /*Requires: lv_label*/
|
||||
|
||||
#define LV_USE_IMAGE 1 /*Requires: lv_label*/
|
||||
|
||||
#define LV_USE_IMAGEBUTTON 1
|
||||
|
||||
#define LV_USE_KEYBOARD 1
|
||||
|
||||
#define LV_USE_LABEL 1
|
||||
#if LV_USE_LABEL
|
||||
#define LV_LABEL_TEXT_SELECTION 1 /*Enable selecting text of the label*/
|
||||
#define LV_LABEL_LONG_TXT_HINT 1 /*Store some extra info in labels to speed up drawing of very long texts*/
|
||||
#define LV_LABEL_WAIT_CHAR_COUNT 3 /*The count of wait chart*/
|
||||
#endif
|
||||
|
||||
#define LV_USE_LED 1
|
||||
|
||||
#define LV_USE_LINE 1
|
||||
|
||||
#define LV_USE_LIST 1
|
||||
|
||||
#define LV_USE_MENU 1
|
||||
|
||||
#define LV_USE_MSGBOX 1
|
||||
|
||||
#define LV_USE_ROLLER 1 /*Requires: lv_label*/
|
||||
|
||||
#define LV_USE_SCALE 1
|
||||
|
||||
#define LV_USE_SLIDER 1 /*Requires: lv_bar*/
|
||||
|
||||
#define LV_USE_SPAN 1
|
||||
#if LV_USE_SPAN
|
||||
/*A line text can contain maximum num of span descriptor */
|
||||
#define LV_SPAN_SNIPPET_STACK_SIZE 64
|
||||
#endif
|
||||
|
||||
#define LV_USE_SPINBOX 1
|
||||
|
||||
#define LV_USE_SPINNER 1
|
||||
|
||||
#define LV_USE_SWITCH 1
|
||||
|
||||
#define LV_USE_TEXTAREA 1 /*Requires: lv_label*/
|
||||
#if LV_USE_TEXTAREA != 0
|
||||
#define LV_TEXTAREA_DEF_PWD_SHOW_TIME 1500 /*ms*/
|
||||
#endif
|
||||
|
||||
#define LV_USE_TABLE 1
|
||||
|
||||
#define LV_USE_TABVIEW 1
|
||||
|
||||
#define LV_USE_TILEVIEW 1
|
||||
|
||||
#define LV_USE_WIN 1
|
||||
|
||||
/*==================
|
||||
* THEMES
|
||||
*==================*/
|
||||
|
||||
/*A simple, impressive and very complete theme*/
|
||||
#define LV_USE_THEME_DEFAULT 1
|
||||
#if LV_USE_THEME_DEFAULT
|
||||
|
||||
/*0: Light mode; 1: Dark mode*/
|
||||
#define LV_THEME_DEFAULT_DARK 0
|
||||
|
||||
/*1: Enable grow on press*/
|
||||
#define LV_THEME_DEFAULT_GROW 1
|
||||
|
||||
/*Default transition time in [ms]*/
|
||||
#define LV_THEME_DEFAULT_TRANSITION_TIME 80
|
||||
#endif /*LV_USE_THEME_DEFAULT*/
|
||||
|
||||
/*A very simple theme that is a good starting point for a custom theme*/
|
||||
#define LV_USE_THEME_SIMPLE 1
|
||||
|
||||
/*A theme designed for monochrome displays*/
|
||||
#define LV_USE_THEME_MONO 1
|
||||
|
||||
/*==================
|
||||
* LAYOUTS
|
||||
*==================*/
|
||||
|
||||
/*A layout similar to Flexbox in CSS.*/
|
||||
#define LV_USE_FLEX 1
|
||||
|
||||
/*A layout similar to Grid in CSS.*/
|
||||
#define LV_USE_GRID 1
|
||||
|
||||
/*====================
|
||||
* 3RD PARTS LIBRARIES
|
||||
*====================*/
|
||||
|
||||
/*File system interfaces for common APIs */
|
||||
|
||||
/*Setting a default driver letter allows skipping the driver prefix in filepaths*/
|
||||
#define LV_FS_DEFAULT_DRIVE_LETTER '\0'
|
||||
|
||||
/*API for fopen, fread, etc*/
|
||||
#define LV_USE_FS_STDIO 1
|
||||
#if LV_USE_FS_STDIO
|
||||
#define LV_FS_STDIO_LETTER 'A' /*Set an upper cased letter on which the drive will accessible (e.g. 'A')*/
|
||||
#define LV_FS_STDIO_PATH "" /*Set the working directory. File/directory paths will be appended to it.*/
|
||||
#define LV_FS_STDIO_CACHE_SIZE 0 /*>0 to cache this number of bytes in lv_fs_read()*/
|
||||
#endif
|
||||
|
||||
/*API for open, read, etc*/
|
||||
#define LV_USE_FS_POSIX 0
|
||||
#if LV_USE_FS_POSIX
|
||||
#define LV_FS_POSIX_LETTER '\0' /*Set an upper cased letter on which the drive will accessible (e.g. 'A')*/
|
||||
#define LV_FS_POSIX_PATH "" /*Set the working directory. File/directory paths will be appended to it.*/
|
||||
#define LV_FS_POSIX_CACHE_SIZE 0 /*>0 to cache this number of bytes in lv_fs_read()*/
|
||||
#endif
|
||||
|
||||
/*API for CreateFile, ReadFile, etc*/
|
||||
#define LV_USE_FS_WIN32 0
|
||||
#if LV_USE_FS_WIN32
|
||||
#define LV_FS_WIN32_LETTER '\0' /*Set an upper cased letter on which the drive will accessible (e.g. 'A')*/
|
||||
#define LV_FS_WIN32_PATH "" /*Set the working directory. File/directory paths will be appended to it.*/
|
||||
#define LV_FS_WIN32_CACHE_SIZE 0 /*>0 to cache this number of bytes in lv_fs_read()*/
|
||||
#endif
|
||||
|
||||
/*API for FATFS (needs to be added separately). Uses f_open, f_read, etc*/
|
||||
#define LV_USE_FS_FATFS 0
|
||||
#if LV_USE_FS_FATFS
|
||||
#define LV_FS_FATFS_LETTER '\0' /*Set an upper cased letter on which the drive will accessible (e.g. 'A')*/
|
||||
#define LV_FS_FATFS_CACHE_SIZE 0 /*>0 to cache this number of bytes in lv_fs_read()*/
|
||||
#endif
|
||||
|
||||
/*API for memory-mapped file access. */
|
||||
#define LV_USE_FS_MEMFS 1
|
||||
#if LV_USE_FS_MEMFS
|
||||
#define LV_FS_MEMFS_LETTER '\0' /*Set an upper cased letter on which the drive will accessible (e.g. 'A')*/
|
||||
#endif
|
||||
|
||||
/*LODEPNG decoder library*/
|
||||
#define LV_USE_LODEPNG 1
|
||||
|
||||
/*PNG decoder(libpng) library*/
|
||||
#define LV_USE_LIBPNG 0
|
||||
|
||||
/*BMP decoder library*/
|
||||
#define LV_USE_BMP 0
|
||||
|
||||
/* JPG + split JPG decoder library.
|
||||
* Split JPG is a custom format optimized for embedded systems. */
|
||||
#define LV_USE_TJPGD 1
|
||||
|
||||
/* libjpeg-turbo decoder library.
|
||||
* Supports complete JPEG specifications and high-performance JPEG decoding. */
|
||||
#define LV_USE_LIBJPEG_TURBO 0
|
||||
|
||||
/*GIF decoder library*/
|
||||
#define LV_USE_GIF 1
|
||||
#if LV_USE_GIF
|
||||
/*GIF decoder accelerate*/
|
||||
#define LV_GIF_CACHE_DECODE_DATA 0
|
||||
#endif
|
||||
|
||||
|
||||
/*Decode bin images to RAM*/
|
||||
#define LV_BIN_DECODER_RAM_LOAD 0
|
||||
|
||||
/*RLE decompress library*/
|
||||
#define LV_USE_RLE 1
|
||||
|
||||
/*QR code library*/
|
||||
#define LV_USE_QRCODE 1
|
||||
|
||||
/*Barcode code library*/
|
||||
#define LV_USE_BARCODE 1
|
||||
|
||||
/*FreeType library*/
|
||||
#define LV_USE_FREETYPE 0
|
||||
#if LV_USE_FREETYPE
|
||||
/*Let FreeType to use LVGL memory and file porting*/
|
||||
#define LV_FREETYPE_USE_LVGL_PORT 0
|
||||
|
||||
/*Cache count of the glyphs in FreeType. It means the number of glyphs that can be cached.
|
||||
*The higher the value, the more memory will be used.*/
|
||||
#define LV_FREETYPE_CACHE_FT_GLYPH_CNT 256
|
||||
#endif
|
||||
|
||||
/* Built-in TTF decoder */
|
||||
#define LV_USE_TINY_TTF 1
|
||||
#if LV_USE_TINY_TTF
|
||||
/* Enable loading TTF data from files */
|
||||
#define LV_TINY_TTF_FILE_SUPPORT 0
|
||||
/*Cache count of the glyphs in Tiny TTF. It means the number of glyphs that can be cached.
|
||||
*The higher the value, the more memory will be used
|
||||
*Minor performance benefit should be evident with cnt > 3
|
||||
*For best performance count should be greater than count of glyphs in use */
|
||||
#define LV_TINY_TTF_CACHE_GLYPH_CNT 256
|
||||
#endif
|
||||
|
||||
/*Rlottie library*/
|
||||
#define LV_USE_RLOTTIE 0
|
||||
|
||||
/*Enable Vector Graphic APIs*/
|
||||
#define LV_USE_VECTOR_GRAPHIC 0
|
||||
|
||||
/* Enable ThorVG (vector graphics library) from the src/libs folder */
|
||||
#define LV_USE_THORVG_INTERNAL 0
|
||||
|
||||
/* Enable ThorVG by assuming that its installed and linked to the project */
|
||||
#define LV_USE_THORVG_EXTERNAL 0
|
||||
|
||||
/*Enable LZ4 compress/decompress lib*/
|
||||
#define LV_USE_LZ4 0
|
||||
|
||||
/*Use lvgl built-in LZ4 lib*/
|
||||
#define LV_USE_LZ4_INTERNAL 0
|
||||
|
||||
/*Use external LZ4 library*/
|
||||
#define LV_USE_LZ4_EXTERNAL 0
|
||||
|
||||
/*FFmpeg library for image decoding and playing videos
|
||||
*Supports all major image formats so do not enable other image decoder with it*/
|
||||
#define LV_USE_FFMPEG 0
|
||||
#if LV_USE_FFMPEG
|
||||
/*Dump input information to stderr*/
|
||||
#define LV_FFMPEG_DUMP_FORMAT 0
|
||||
#endif
|
||||
|
||||
/*==================
|
||||
* OTHERS
|
||||
*==================*/
|
||||
|
||||
/*1: Enable API to take snapshot for object*/
|
||||
#define LV_USE_SNAPSHOT 1
|
||||
|
||||
/*1: Enable system monitor component*/
|
||||
#define LV_USE_SYSMON 1
|
||||
|
||||
#if LV_USE_SYSMON
|
||||
|
||||
/*1: Show CPU usage and FPS count
|
||||
* Requires `LV_USE_SYSMON = 1`*/
|
||||
#define LV_USE_PERF_MONITOR 1
|
||||
#if LV_USE_PERF_MONITOR
|
||||
#define LV_USE_PERF_MONITOR_POS LV_ALIGN_BOTTOM_RIGHT
|
||||
|
||||
/*0: Displays performance data on the screen, 1: Prints performance data using log.*/
|
||||
#define LV_USE_PERF_MONITOR_LOG_MODE 0
|
||||
#endif
|
||||
|
||||
/*1: Show the used memory and the memory fragmentation
|
||||
* Requires `LV_USE_BUILTIN_MALLOC = 1`
|
||||
* Requires `LV_USE_SYSMON = 1`*/
|
||||
#define LV_USE_MEM_MONITOR 1
|
||||
#if LV_USE_MEM_MONITOR
|
||||
#define LV_USE_MEM_MONITOR_POS LV_ALIGN_BOTTOM_LEFT
|
||||
#endif
|
||||
|
||||
#endif /*LV_USE_SYSMON*/
|
||||
|
||||
/*1: Enable the runtime performance profiler*/
|
||||
#define LV_USE_PROFILER 0
|
||||
#if LV_USE_PROFILER
|
||||
/*1: Enable the built-in profiler*/
|
||||
#define LV_USE_PROFILER_BUILTIN 1
|
||||
#if LV_USE_PROFILER_BUILTIN
|
||||
/*Default profiler trace buffer size*/
|
||||
#define LV_PROFILER_BUILTIN_BUF_SIZE (16 * 1024) /*[bytes]*/
|
||||
#endif
|
||||
|
||||
/*Header to include for the profiler*/
|
||||
#define LV_PROFILER_INCLUDE "lvgl/src/misc/lv_profiler_builtin.h"
|
||||
|
||||
/*Profiler start point function*/
|
||||
#define LV_PROFILER_BEGIN LV_PROFILER_BUILTIN_BEGIN
|
||||
|
||||
/*Profiler end point function*/
|
||||
#define LV_PROFILER_END LV_PROFILER_BUILTIN_END
|
||||
|
||||
/*Profiler start point function with custom tag*/
|
||||
#define LV_PROFILER_BEGIN_TAG LV_PROFILER_BUILTIN_BEGIN_TAG
|
||||
|
||||
/*Profiler end point function with custom tag*/
|
||||
#define LV_PROFILER_END_TAG LV_PROFILER_BUILTIN_END_TAG
|
||||
#endif
|
||||
|
||||
/*1: Enable Monkey test*/
|
||||
#define LV_USE_MONKEY 1
|
||||
|
||||
/*1: Enable grid navigation*/
|
||||
#define LV_USE_GRIDNAV 1
|
||||
|
||||
/*1: Enable lv_obj fragment*/
|
||||
#define LV_USE_FRAGMENT 1
|
||||
|
||||
/*1: Support using images as font in label or span widgets */
|
||||
#define LV_USE_IMGFONT 1
|
||||
|
||||
/*1: Enable an observer pattern implementation*/
|
||||
#define LV_USE_OBSERVER 1
|
||||
|
||||
/*1: Enable Pinyin input method*/
|
||||
/*Requires: lv_keyboard*/
|
||||
#define LV_USE_IME_PINYIN 1
|
||||
#if LV_USE_IME_PINYIN
|
||||
/*1: Use default thesaurus*/
|
||||
/*If you do not use the default thesaurus, be sure to use `lv_ime_pinyin` after setting the thesaurus*/
|
||||
#define LV_IME_PINYIN_USE_DEFAULT_DICT 1
|
||||
/*Set the maximum number of candidate panels that can be displayed*/
|
||||
/*This needs to be adjusted according to the size of the screen*/
|
||||
#define LV_IME_PINYIN_CAND_TEXT_NUM 6
|
||||
|
||||
/*Use 9 key input(k9)*/
|
||||
#define LV_IME_PINYIN_USE_K9_MODE 1
|
||||
#if LV_IME_PINYIN_USE_K9_MODE == 1
|
||||
#define LV_IME_PINYIN_K9_CAND_TEXT_NUM 3
|
||||
#endif /*LV_IME_PINYIN_USE_K9_MODE*/
|
||||
#endif
|
||||
|
||||
/*1: Enable file explorer*/
|
||||
/*Requires: lv_table*/
|
||||
#define LV_USE_FILE_EXPLORER 1
|
||||
#if LV_USE_FILE_EXPLORER
|
||||
/*Maximum length of path*/
|
||||
#define LV_FILE_EXPLORER_PATH_MAX_LEN (128)
|
||||
/*Quick access bar, 1:use, 0:not use*/
|
||||
/*Requires: lv_list*/
|
||||
#define LV_FILE_EXPLORER_QUICK_ACCESS 1
|
||||
#endif
|
||||
|
||||
/*==================
|
||||
* DEVICES
|
||||
*==================*/
|
||||
|
||||
/*Use SDL to open window on PC and handle mouse and keyboard*/
|
||||
#define LV_USE_SDL 1
|
||||
#if LV_USE_SDL
|
||||
#define LV_SDL_INCLUDE_PATH <SDL2/SDL.h>
|
||||
#define LV_SDL_RENDER_MODE LV_DISPLAY_RENDER_MODE_DIRECT /*LV_DISPLAY_RENDER_MODE_DIRECT is recommended for best performance*/
|
||||
#define LV_SDL_BUF_COUNT 1 /*1 or 2*/
|
||||
#define LV_SDL_FULLSCREEN 0 /*1: Make the window full screen by default*/
|
||||
#define LV_SDL_DIRECT_EXIT 1 /*1: Exit the application when all SDL windows are closed*/
|
||||
#endif
|
||||
|
||||
/*Use X11 to open window on Linux desktop and handle mouse and keyboard*/
|
||||
#define LV_USE_X11 0
|
||||
#if LV_USE_X11
|
||||
#define LV_X11_DIRECT_EXIT 1 /*Exit the application when all X11 windows have been closed*/
|
||||
#define LV_X11_DOUBLE_BUFFER 1 /*Use double buffers for rendering*/
|
||||
/*select only 1 of the following render modes (LV_X11_RENDER_MODE_PARTIAL preferred!)*/
|
||||
#define LV_X11_RENDER_MODE_PARTIAL 1 /*Partial render mode (preferred)*/
|
||||
#define LV_X11_RENDER_MODE_DIRECT 0 /*direct render mode*/
|
||||
#define LV_X11_RENDER_MODE_FULL 0 /*Full render mode*/
|
||||
#endif
|
||||
|
||||
/*Driver for /dev/fb*/
|
||||
#define LV_USE_LINUX_FBDEV 0
|
||||
#if LV_USE_LINUX_FBDEV
|
||||
#define LV_LINUX_FBDEV_BSD 0
|
||||
#define LV_LINUX_FBDEV_RENDER_MODE LV_DISPLAY_RENDER_MODE_PARTIAL
|
||||
#define LV_LINUX_FBDEV_BUFFER_COUNT 0
|
||||
#define LV_LINUX_FBDEV_BUFFER_SIZE 60
|
||||
#endif
|
||||
|
||||
/*Use Nuttx to open window and handle touchscreen*/
|
||||
#define LV_USE_NUTTX 0
|
||||
|
||||
#if LV_USE_NUTTX
|
||||
#define LV_USE_NUTTX_LIBUV 0
|
||||
|
||||
/*Use Nuttx custom init API to open window and handle touchscreen*/
|
||||
#define LV_USE_NUTTX_CUSTOM_INIT 0
|
||||
|
||||
/*Driver for /dev/lcd*/
|
||||
#define LV_USE_NUTTX_LCD 0
|
||||
#if LV_USE_NUTTX_LCD
|
||||
#define LV_NUTTX_LCD_BUFFER_COUNT 0
|
||||
#define LV_NUTTX_LCD_BUFFER_SIZE 60
|
||||
#endif
|
||||
|
||||
/*Driver for /dev/input*/
|
||||
#define LV_USE_NUTTX_TOUCHSCREEN 0
|
||||
|
||||
#endif
|
||||
|
||||
/*Driver for /dev/dri/card*/
|
||||
#define LV_USE_LINUX_DRM 0
|
||||
|
||||
/*Interface for TFT_eSPI*/
|
||||
#define LV_USE_TFT_ESPI 0
|
||||
|
||||
/*Driver for evdev input devices*/
|
||||
#define LV_USE_EVDEV 0
|
||||
|
||||
/*Drivers for LCD devices connected via SPI/parallel port*/
|
||||
#define LV_USE_ST7735 0
|
||||
#define LV_USE_ST7789 0
|
||||
#define LV_USE_ST7796 0
|
||||
#define LV_USE_ILI9341 0
|
||||
|
||||
#define LV_USE_GENERIC_MIPI (LV_USE_ST7735 | LV_USE_ST7789 | LV_USE_ST7796 | LV_USE_ILI9341)
|
||||
|
||||
/*Driver for Renesas GLCD*/
|
||||
#define LV_USE_RENESAS_GLCDC 0
|
||||
|
||||
/* LVGL Windows backend */
|
||||
#define LV_USE_WINDOWS 0
|
||||
|
||||
/*==================
|
||||
* EXAMPLES
|
||||
*==================*/
|
||||
|
||||
/*Enable the examples to be built with the library*/
|
||||
#define LV_BUILD_EXAMPLES 1
|
||||
|
||||
/*===================
|
||||
* DEMO USAGE
|
||||
====================*/
|
||||
|
||||
/*Show some widget. It might be required to increase `LV_MEM_SIZE` */
|
||||
#define LV_USE_DEMO_WIDGETS 1
|
||||
|
||||
/*Demonstrate the usage of encoder and keyboard*/
|
||||
#define LV_USE_DEMO_KEYPAD_AND_ENCODER 1
|
||||
|
||||
/*Benchmark your system*/
|
||||
#define LV_USE_DEMO_BENCHMARK 1
|
||||
|
||||
/*Render test for each primitives. Requires at least 480x272 display*/
|
||||
#define LV_USE_DEMO_RENDER 1
|
||||
|
||||
/*Stress test for LVGL*/
|
||||
#define LV_USE_DEMO_STRESS 1
|
||||
|
||||
/*Music player demo*/
|
||||
#define LV_USE_DEMO_MUSIC 0
|
||||
#if LV_USE_DEMO_MUSIC
|
||||
#define LV_DEMO_MUSIC_SQUARE 0
|
||||
#define LV_DEMO_MUSIC_LANDSCAPE 0
|
||||
#define LV_DEMO_MUSIC_ROUND 0
|
||||
#define LV_DEMO_MUSIC_LARGE 0
|
||||
#define LV_DEMO_MUSIC_AUTO_PLAY 0
|
||||
#endif
|
||||
|
||||
/*Flex layout demo*/
|
||||
#define LV_USE_DEMO_FLEX_LAYOUT 1
|
||||
|
||||
/*Smart-phone like multi-language demo*/
|
||||
#define LV_USE_DEMO_MULTILANG 1
|
||||
|
||||
/*Widget transformation demo*/
|
||||
#define LV_USE_DEMO_TRANSFORM 1
|
||||
|
||||
/*Demonstrate scroll settings*/
|
||||
#define LV_USE_DEMO_SCROLL 1
|
||||
|
||||
/*Vector graphic demo*/
|
||||
#define LV_USE_DEMO_VECTOR_GRAPHIC 0
|
||||
/*--END OF LV_CONF_H--*/
|
||||
|
||||
#endif /*LV_CONF_H*/
|
||||
|
||||
#endif /*End of "Content enable"*/
|
||||
@@ -0,0 +1,106 @@
|
||||
|
||||
/**
|
||||
* @file main
|
||||
*
|
||||
*/
|
||||
|
||||
/*********************
|
||||
* INCLUDES
|
||||
*********************/
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#define SDL_MAIN_HANDLED /*To fix SDL's "undefined reference to WinMain" issue*/
|
||||
#include <SDL2/SDL.h>
|
||||
#include <emscripten.h>
|
||||
#include "lvgl/lvgl.h"
|
||||
#include "lvgl/demos/lv_demos.h"
|
||||
|
||||
/*********************
|
||||
* DEFINES
|
||||
*********************/
|
||||
|
||||
/*On OSX SDL needs different handling*/
|
||||
#if defined(__APPLE__) && defined(TARGET_OS_MAC)
|
||||
# if __APPLE__ && TARGET_OS_MAC
|
||||
#define SDL_APPLE
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/**********************
|
||||
* TYPEDEFS
|
||||
**********************/
|
||||
|
||||
/**********************
|
||||
* STATIC PROTOTYPES
|
||||
**********************/
|
||||
static void hal_init(void);
|
||||
static int tick_thread(void * data);
|
||||
static void memory_monitor(lv_timer_t * param);
|
||||
|
||||
/**********************
|
||||
* STATIC VARIABLES
|
||||
**********************/
|
||||
static lv_display_t * disp1;
|
||||
|
||||
int monitor_hor_res, monitor_ver_res;
|
||||
|
||||
/**********************
|
||||
* MACROS
|
||||
**********************/
|
||||
|
||||
/**********************
|
||||
* GLOBAL FUNCTIONS
|
||||
**********************/
|
||||
void do_loop(void *arg);
|
||||
|
||||
/* Allows disabling CHOSEN_DEMO */
|
||||
static void lv_example_noop(void) {
|
||||
}
|
||||
|
||||
int main(int argc, char ** argv)
|
||||
{
|
||||
|
||||
monitor_hor_res = 800;
|
||||
monitor_ver_res = 480;
|
||||
printf("Starting with screen resolution of %dx%d px\n", monitor_hor_res, monitor_ver_res);
|
||||
|
||||
/*Initialize LittlevGL*/
|
||||
lv_init();
|
||||
|
||||
/*Initialize the HAL (display, input devices, tick) for LittlevGL*/
|
||||
hal_init();
|
||||
|
||||
lv_demo_widgets();
|
||||
|
||||
emscripten_set_main_loop_arg(do_loop, NULL, -1, true);
|
||||
}
|
||||
|
||||
void do_loop(void *arg)
|
||||
{
|
||||
/* Periodically call the lv_timer handler.
|
||||
* It could be done in a timer interrupt or an OS task too.*/
|
||||
lv_timer_handler();
|
||||
}
|
||||
|
||||
/**********************
|
||||
* STATIC FUNCTIONS
|
||||
**********************/
|
||||
|
||||
|
||||
/**
|
||||
* Initialize the Hardware Abstraction Layer (HAL) for the Littlev graphics library
|
||||
*/
|
||||
static void hal_init(void)
|
||||
{
|
||||
lv_display_t * disp = lv_sdl_window_create(monitor_hor_res, monitor_ver_res);
|
||||
|
||||
lv_group_t * g = lv_group_create();
|
||||
lv_group_set_default(g);
|
||||
|
||||
lv_sdl_mouse_create();
|
||||
lv_indev_t * mousewheel = lv_sdl_mousewheel_create();
|
||||
lv_indev_set_group(mousewheel, lv_group_get_default());
|
||||
|
||||
lv_indev_t * keyboard = lv_sdl_keyboard_create();
|
||||
lv_indev_set_group(keyboard, lv_group_get_default());
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"files.associations": {
|
||||
"sdl.h": "c"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"image": "mcr.microsoft.com/devcontainers/universal:2",
|
||||
"features": {
|
||||
"ghcr.io/ebaskoro/devcontainer-features/emscripten:1": {}
|
||||
},
|
||||
"postCreateCommand": "chmod +x /workspace/lvgl_app/lvgl/.devcontainer/setup.sh; /workspace/lvgl_app/lvgl/.devcontainer/setup.sh",
|
||||
"postStartCommand": ". /usr/local/emsdk/emsdk_env.sh;",
|
||||
|
||||
// Configure tool-specific properties.
|
||||
"customizations": {
|
||||
// Configure properties specific to VS Code.
|
||||
"vscode": {
|
||||
// Add the IDs of extensions you want installed when the container is created.
|
||||
"extensions": [
|
||||
//"searKing.preview-vscode"
|
||||
"analytic-signal.preview-html"
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
"hostRequirements": {
|
||||
"cpus": 4
|
||||
},
|
||||
|
||||
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace/lvgl_app/lvgl,type=bind",
|
||||
"workspaceFolder": "/workspace/lvgl_app"
|
||||
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no'/>
|
||||
<style type="text/css">
|
||||
html, body {
|
||||
margin: 0;
|
||||
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-width: 100%;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.git-commit-info {
|
||||
font-family: Consolas, 'Courier New', Courier, monospace;
|
||||
background-color: #f1f1f1;
|
||||
padding: 2px;
|
||||
text-align: left;
|
||||
}
|
||||
#git-hash {
|
||||
text-align: center;
|
||||
}
|
||||
#output {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="git-hash"></div>
|
||||
<p id="output">
|
||||
<canvas id="canvas"></canvas>
|
||||
</p>
|
||||
<script src="gitrev.js"></script>
|
||||
<script>
|
||||
var siteURL = new URL(window.location.href);
|
||||
var w = siteURL.searchParams.get("w") || "800";
|
||||
var h = siteURL.searchParams.get("h") || "480";
|
||||
var canvas = document.getElementById('canvas');
|
||||
canvas.setAttribute("width", w);
|
||||
canvas.setAttribute("height", h);
|
||||
console.log("Requested " + w + "x" + h + " px");
|
||||
var Module = {
|
||||
print: function(text) {
|
||||
console.log(text);
|
||||
},
|
||||
printErr: function(text) {
|
||||
console.error(text);
|
||||
},
|
||||
canvas: (function() {
|
||||
return canvas;
|
||||
})(),
|
||||
arguments: [ siteURL.searchParams.get("w") || "800", siteURL.searchParams.get("h") || "480", siteURL.searchParams.get("example") ?? "default" ]
|
||||
};
|
||||
if(typeof window.git_hash != 'undefined') {
|
||||
var gitHashDiv = document.querySelector("#git-hash");
|
||||
var gitLink = document.createElement("div");
|
||||
var gitHashComponents = window.git_hash.split(" ").filter(component => component.trim().length > 0);
|
||||
for(var i = 0; i < gitHashComponents.length; i++) {
|
||||
console.log(gitHashComponents[i], gitHashComponents[i].length);
|
||||
/* This is an extremely lazy way of checking for a Git hash, but it works */
|
||||
if(gitHashComponents[i].length == 40) {
|
||||
gitHashComponents[i] = `<a href="https://github.com/lvgl/${gitHashComponents[i+1]}/commit/${gitHashComponents[i]}">${gitHashComponents[i]}</a>`;
|
||||
} else {
|
||||
/* Repository name */
|
||||
gitHashComponents[i] += "<br/>";
|
||||
}
|
||||
}
|
||||
gitLink.classList.add("git-commit-info");
|
||||
gitLink.innerHTML = gitHashComponents.join(" ");
|
||||
gitHashDiv.textContent = "LVGL compiled to Emscripten. Git commit information:";
|
||||
gitHashDiv.appendChild(gitLink);
|
||||
}
|
||||
window.addEventListener("click", () => window.focus());
|
||||
</script>
|
||||
{{{ SCRIPT }}}
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,18 @@
|
||||
#!/bin/sh
|
||||
|
||||
echo ". /usr/local/emsdk/emsdk_env.sh" >> /home/codespace/.bashrc
|
||||
|
||||
cd /workspace/lvgl_app
|
||||
sudo chmod 777 .
|
||||
mkdir build
|
||||
mkdir vscode
|
||||
|
||||
cd lvgl/.devcontainer
|
||||
cp __CMakeLists.txt__ ../../CMakeLists.txt
|
||||
cp __lv_conf.h__ ../../lv_conf.h
|
||||
cp __main.c__ ../../main.c
|
||||
cp __build_all.sh__ ../../build_all.sh
|
||||
cp __c_cpp_properties.json__ ../../.vscode/c_cpp_properties.json
|
||||
cp __settings.json__ ../../.vscode/settings.json
|
||||
|
||||
chmod +x ../../build_all.sh
|
||||
@@ -0,0 +1,33 @@
|
||||
**/*.o
|
||||
**/*bin
|
||||
**/*.swp
|
||||
**/*.swo
|
||||
**/*.gcda
|
||||
**/*.gcno
|
||||
tags
|
||||
docs/api_doc
|
||||
scripts/cppcheck_res.txt
|
||||
scripts/built_in_font/lv_font_*
|
||||
docs/doxygen_html
|
||||
docs/xml
|
||||
docs/examples.md
|
||||
docs/out_latex
|
||||
docs/_static/built_lv_examples
|
||||
docs/LVGL.pdf
|
||||
docs/env
|
||||
/docs/examples.rst
|
||||
/docs/API/
|
||||
out_html
|
||||
__pycache__
|
||||
/emscripten_builder
|
||||
test_screenshot_error.h
|
||||
build/
|
||||
tests/build_*/
|
||||
tests/report/
|
||||
tests/wayland_protocols/
|
||||
.DS_Store
|
||||
.vscode
|
||||
.idea
|
||||
*.bak
|
||||
tests/test_images/
|
||||
.vs/
|
||||
@@ -0,0 +1,41 @@
|
||||
# See https://pre-commit.com for more information
|
||||
# See https://pre-commit.com/hooks.html for more hooks
|
||||
repos:
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v3.2.0
|
||||
hooks:
|
||||
- id: trailing-whitespace
|
||||
|
||||
- repo: local
|
||||
hooks:
|
||||
# Run astyle over the staged files with c and h extension found in the directories
|
||||
# listed in the files regex pattern. Ignoring the files in the exclude pattern.
|
||||
- id: format-source
|
||||
name: Formatting source files
|
||||
entry: astyle --options=scripts/code-format.cfg --ignore-exclude-errors
|
||||
stages: [ commit ]
|
||||
language: system
|
||||
pass_filenames: true
|
||||
verbose: true
|
||||
files: |
|
||||
(?x)^(
|
||||
demos/ |
|
||||
examples/ |
|
||||
src/ |
|
||||
tests/
|
||||
)
|
||||
exclude: |
|
||||
(?x)^(
|
||||
src/libs/ |
|
||||
src/lv_conf_internal.h |
|
||||
tests/test_images
|
||||
)
|
||||
types_or: ["c", "header"]
|
||||
- repo: https://github.com/crate-ci/typos
|
||||
rev: v1.16.20
|
||||
hooks:
|
||||
- id: typos
|
||||
exclude: |
|
||||
(?x)^(
|
||||
src/libs/
|
||||
)
|
||||
@@ -0,0 +1,29 @@
|
||||
[files]
|
||||
extend-exclude = [
|
||||
".git/",
|
||||
"docs/_static/css/fontawesome.min.css",
|
||||
"docs/README_*",
|
||||
"src/libs/",
|
||||
"docs/CHANGELOG.rst"
|
||||
]
|
||||
ignore-hidden = false
|
||||
|
||||
[default]
|
||||
extend-ignore-re = [
|
||||
"\\bser[^a-z]",
|
||||
"\\bfle[^a-z]",
|
||||
'"Lorem ipsum .*"',
|
||||
'ACI',
|
||||
"Nam consectetur",
|
||||
"U\\+[0-9A-F]{4}",
|
||||
'\{ "[a-z]+", "[^ -~]+" \},',
|
||||
"`[0-9a-f]{7} <https://\\S+>`__",
|
||||
"Rename lv_chart_clear_serie",
|
||||
"rename LV_ROLLER_MODE_INIFINITE",
|
||||
"CARD_INFO_SET\\(&img_multilang_avatar_.*\\)",
|
||||
"ACI\\)",
|
||||
]
|
||||
|
||||
[default.extend-words]
|
||||
# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6loca.html
|
||||
"loca" = "loca"
|
||||
@@ -0,0 +1,40 @@
|
||||
cmake_minimum_required(VERSION 3.12.4)
|
||||
|
||||
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
||||
|
||||
if(NOT ESP_PLATFORM)
|
||||
if(NOT (CMAKE_C_COMPILER_ID STREQUAL "MSVC"))
|
||||
project(lvgl LANGUAGES C CXX ASM HOMEPAGE_URL https://github.com/lvgl/lvgl)
|
||||
else()
|
||||
project(lvgl LANGUAGES C CXX HOMEPAGE_URL https://github.com/lvgl/lvgl)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
set(LVGL_ROOT_DIR ${CMAKE_CURRENT_LIST_DIR})
|
||||
|
||||
if(ESP_PLATFORM)
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/env_support/cmake/esp.cmake)
|
||||
elseif(ZEPHYR_BASE)
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/env_support/cmake/zephyr.cmake)
|
||||
elseif(MICROPY_DIR)
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/env_support/cmake/micropython.cmake)
|
||||
else()
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/env_support/cmake/custom.cmake)
|
||||
endif()
|
||||
|
||||
#[[
|
||||
unfortunately CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS does not work for global data.
|
||||
for global data we still need decl specs.
|
||||
Check out the docs to learn more about the limitations of CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS
|
||||
https://cmake.org/cmake/help/latest/prop_tgt/WINDOWS_EXPORT_ALL_SYMBOLS.html#prop_tgt:WINDOWS_EXPORT_ALL_SYMBOLS
|
||||
|
||||
For all compiled sources within the library (i.e. basically all lvgl files) we need to use dllexport.
|
||||
For all compiled sources from outside the library (i.e. files which include lvgl headers) we need to use dllimport.
|
||||
We can do this by using CMakes INTERFACE and PRIVATE keyword.
|
||||
]]
|
||||
if (MSVC)
|
||||
target_compile_definitions(lvgl
|
||||
INTERFACE LV_ATTRIBUTE_EXTERN_DATA=__declspec\(dllimport\)
|
||||
PRIVATE LV_ATTRIBUTE_EXTERN_DATA=__declspec\(dllexport\)
|
||||
)
|
||||
endif()
|
||||
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"version": 3,
|
||||
"configurePresets": [
|
||||
{
|
||||
"name": "_base",
|
||||
"hidden": true,
|
||||
"cacheVariables": {
|
||||
"LV_CONF_SKIP": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "windows-base",
|
||||
"inherits": "_base",
|
||||
"generator": "Visual Studio 17 2022",
|
||||
"binaryDir": "${sourceDir}/build/${presetName}",
|
||||
"installDir": "${sourceDir}/build/install/${presetName}",
|
||||
"cacheVariables": {
|
||||
"CMAKE_C_COMPILER": "cl.exe",
|
||||
"CMAKE_CXX_COMPILER": "cl.exe",
|
||||
"BUILD_SHARED_LIBS": "ON"
|
||||
},
|
||||
"condition": {
|
||||
"type": "equals",
|
||||
"lhs": "${hostSystemName}",
|
||||
"rhs": "Windows"
|
||||
},
|
||||
"architecture": {
|
||||
"value": "x64",
|
||||
"strategy": "external"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "linux-base",
|
||||
"inherits": "_base",
|
||||
"displayName": "Linux",
|
||||
"description": "Setup WSL or native linux",
|
||||
"generator": "Ninja Multi-Config",
|
||||
"binaryDir": "${sourceDir}/build/${presetName}",
|
||||
"installDir": "${sourceDir}/build/${presetName}",
|
||||
"condition": {
|
||||
"type": "equals",
|
||||
"lhs": "${hostSystemName}",
|
||||
"rhs": "Linux"
|
||||
},
|
||||
"vendor": {
|
||||
"microsoft.com/VisualStudioRemoteSettings/CMake/1.0": {
|
||||
"sourceDir": "$env{HOME}/.vs/$ms{projectDirName}"
|
||||
}
|
||||
},
|
||||
"cacheVariables": {
|
||||
"BUILD_SHARED_LIBS": "ON"
|
||||
}
|
||||
}
|
||||
],
|
||||
"buildPresets": [
|
||||
{
|
||||
"name": "_base",
|
||||
"hidden": true,
|
||||
"jobs": 12
|
||||
},
|
||||
{
|
||||
"name": "windows-base_dbg",
|
||||
"inherits": "_base",
|
||||
"displayName": "Debug",
|
||||
"configurePreset": "windows-base",
|
||||
"configuration": "Debug"
|
||||
},
|
||||
{
|
||||
"name": "windows-base_rel",
|
||||
"inherits": "_base",
|
||||
"displayName": "Release",
|
||||
"configurePreset": "windows-base",
|
||||
"configuration": "Release"
|
||||
},
|
||||
{
|
||||
"name": "linux-base_dbg",
|
||||
"inherits": "_base",
|
||||
"displayName": "Debug",
|
||||
"configurePreset": "linux-base",
|
||||
"configuration": "Debug"
|
||||
},
|
||||
{
|
||||
"name": "linux-base_rel",
|
||||
"inherits": "_base",
|
||||
"displayName": "Release",
|
||||
"configurePreset": "linux-base",
|
||||
"configuration": "Release"
|
||||
}
|
||||
],
|
||||
"testPresets": [
|
||||
{
|
||||
"name": "windows-base_dbg",
|
||||
"displayName": "Debug",
|
||||
"configurePreset": "windows-base",
|
||||
"configuration": "Debug"
|
||||
},
|
||||
{
|
||||
"name": "windows-base_rel",
|
||||
"displayName": "Release",
|
||||
"configurePreset": "windows-base",
|
||||
"configuration": "Release"
|
||||
},
|
||||
{
|
||||
"name": "linux-base_dbg",
|
||||
"displayName": "Debug",
|
||||
"configurePreset": "linux-base",
|
||||
"configuration": "Debug"
|
||||
},
|
||||
{
|
||||
"name": "linux-base_rel",
|
||||
"displayName": "Release",
|
||||
"configurePreset": "linux-base",
|
||||
"configuration": "Release"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
MIT licence
|
||||
Copyright (c) 2021 LVGL Kft
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
@@ -0,0 +1,468 @@
|
||||
|
||||
<a href="https://github.com/sponsors/lvgl" target="_blank"><img align="left" src="https://lvgl.io/github-assets/sponsor.png" height="32px"></a>
|
||||
|
||||
<p align="right">
|
||||
<b>English</b> | <a href="./docs/README_zh.rst">中文</a> | <a href="./docs/README_pt_BR.rst">Português do Brasil</a> | <a href="./docs/README_jp.rst">日本語</a>
|
||||
</p>
|
||||
|
||||
<br>
|
||||
|
||||
<p align="center">
|
||||
<img src="https://lvgl.io/github-assets/logo-colored.png" width=300px>
|
||||
</p>
|
||||
|
||||
<h1 align="center">Light and Versatile Graphics Library</h1>
|
||||
<br>
|
||||
<div align="center">
|
||||
<img src="https://lvgl.io/github-assets/smartwatch-demo.gif">
|
||||
|
||||
<img border="1px" src="https://lvgl.io/github-assets/widgets-demo.gif">
|
||||
</div>
|
||||
<br>
|
||||
<p align="center">
|
||||
<a href="https://lvgl.io" title="Homepage of LVGL">Website </a> |
|
||||
<a href="https://docs.lvgl.io/" title="Detailed documentation with 100+ examples">Docs</a> |
|
||||
<a href="https://forum.lvgl.io" title="Get help and help others">Forum</a> |
|
||||
<a href="https://lvgl.io/demos" title="Demos running in your browser">Demos</a> |
|
||||
<a href="https://lvgl.io/services" title="Graphics design, UI implementation and consulting">Services</a>
|
||||
</p>
|
||||
<br>
|
||||
|
||||
## :ledger: Overview
|
||||
|
||||
**Mature and Well-known**<br>
|
||||
LVGL is the most popular free and open source embedded graphics library to create beautiful UIs for any MCU, MPU and display type. It's supported by industry leading vendors and projects like Arm, STM32, NXP, Espressif, Nuvoton, Arduino, RT-Thread, Zephyr, NuttX, Adafruit and many more.
|
||||
|
||||
**Feature Rich**<br>
|
||||
It has all the features to create modern and beautiful GUIs: 30+ built-in widgets, a powerful style system, web inspired layout managers, and a typography system supporting many languages. To integrate LVGL into your platform, all you need is at least 32kB RAM and 128 kB Flash, a C compiler, a frame buffer, and at least an 1/10 screen sized buffer for rendering.
|
||||
|
||||
**Services**<br>
|
||||
Our team is ready to help you with graphics design, UI implementation and consulting services. Contact us if you need some support during the development of your next GUI project.
|
||||
|
||||
## :rocket: Features
|
||||
|
||||
**Free and Portable**
|
||||
- A fully portable C (C++ compatible) library with no external dependencies.
|
||||
- Can be compiled to any MCU or MPU, with any (RT)OS.
|
||||
- Supports monochrome, ePaper, OLED or TFT displays, or even monitors. [Porting Guide](https://docs.lvgl.io/master/porting/project.html)
|
||||
- Distributed under the MIT license, so you can easily use it in commercial projects too.
|
||||
- Needs only 32kB RAM and 128 kB Flash, a frame buffer, and at least an 1/10 screen sized buffer for rendering.
|
||||
- OS, External memory and GPU are supported but not required.
|
||||
|
||||
**Widgets, Styles, Layouts and more**
|
||||
- 30+ built-in [Widgets](https://docs.lvgl.io/master/widgets/index.html): Button, Label, Slider, Chart, Keyboard, Meter, Arc, Table and many more.
|
||||
- Flexible [Style system](https://docs.lvgl.io/master/overview/style.html) with ~100 style properties to customize any part of the widgets in any state.
|
||||
- [Flexbox](https://docs.lvgl.io/master/layouts/flex.html) and [Grid](https://docs.lvgl.io/master/layouts/grid.html)-like layouts engines to automatically size and position the widgets in a responsive way.
|
||||
- Texts are rendered with UTF-8 encoding supporting CJK, Thai, Hindi, Arabic, Persian writing systems.
|
||||
- Word wrapping, kerning, text scrolling, sub-pixel rendering, Pinyin-IME Chinese input, Emojis in texts.
|
||||
- Rendering engine supporting animations, anti-aliasing, opacity, smooth scrolling, shadows, image transformation, etc
|
||||
- Supports Mouse, Touchpad, Keypad, Keyboard, External buttons, Encoder [Input devices](https://docs.lvgl.io/master/porting/indev.html).
|
||||
- [Multiple display](https://docs.lvgl.io/master/overview/display.html#multiple-display-support) support.
|
||||
|
||||
**Binding and Build Support**
|
||||
- [MicroPython Binding](https://blog.lvgl.io/2019-02-20/micropython-bindings) exposes LVGL API
|
||||
- [PikaScript Binding](https://blog.lvgl.io/2022-08-24/pikascript-and-lvgl) python on MCU lighter and easier.
|
||||
- No custom build system is used. You can build LVGL as you build the other files of your project.
|
||||
- Support for Make and [CMake](https://docs.lvgl.io/master/integration/building/cmake.html) is included out of the box.
|
||||
- [Develop on PC](https://docs.lvgl.io/master/integration/ide/pc-simulator.html) and use the same UI code on embedded hardware.
|
||||
- Convert the C UI code to HTML file with our [Emscripten port](https://github.com/lvgl/lv_web_emscripten).
|
||||
|
||||
**Docs, Tools, and Services**
|
||||
- Detailed [Documentation](https://docs.lvgl.io/) with [100+ simple examples](https://docs.lvgl.io/master/index.html)
|
||||
- [Services](https://lvgl.io/services) such as User interface design, Implementation and Consulting to make UI development simpler and faster.
|
||||
|
||||
## :heart: Sponsor
|
||||
|
||||
If LVGL saved you a lot of time and money or you just had fun using it, consider [Supporting its Development](https://github.com/sponsors/lvgl).
|
||||
|
||||
**How do we spend the donations?**<br>
|
||||
Our goal is to provide financial compensation for people who do the most for LVGL. It means not only the maintainers but anyone who implements a great feature should get a payment from the accumulated money. We use the donations to cover our operational costs like servers and related services.
|
||||
|
||||
**How to donate?**<br>
|
||||
We use [GitHub Sponsors](https://github.com/sponsors/lvgl) where you can easily send one time or recurring donations. You can also see all of our expenses in a transparent way.
|
||||
|
||||
**How to get paid for your contribution?**<br>
|
||||
If someone implements or fixes an issue labeled as [Sponsored](https://github.com/lvgl/lvgl/labels/Sponsored) he or she will get a payment for that work. We estimate the required time, complexity and importance of the issue and set a price accordingly. To jump in just comment on a [Sponsored](https://github.com/lvgl/lvgl/labels/Sponsored) issue saying "Hi, I'd like to deal with it. This is how I'm planning to fix/implement it...". A work is considered ready when it's approved and merged by a maintainer. After that you can submit and expense at [opencollective.com](https://opencollective.com/lvgl) and you will receive the payment in a few days.
|
||||
|
||||
**Organizations supporting LVGL**<br>
|
||||
[](https://opencollective.com/lvgl)
|
||||
|
||||
**Individuals supporting LVGL**<br>
|
||||
[](https://opencollective.com/lvgl)
|
||||
|
||||
## :package: Packages
|
||||
LVGL is available as:
|
||||
- [Arduino library](https://docs.lvgl.io/master/integration/framework/arduino.html)
|
||||
- [PlatformIO package](https://registry.platformio.org/libraries/lvgl/lvgl)
|
||||
- [Zephyr library](https://docs.lvgl.io/master/integration/os/zephyr.html)
|
||||
- [ESP-IDF(ESP32) component](https://components.espressif.com/components/lvgl/lvgl)
|
||||
- [NXP MCUXpresso component](https://www.nxp.com/design/software/embedded-software/lvgl-open-source-graphics-library:LITTLEVGL-OPEN-SOURCE-GRAPHICS-LIBRARY)
|
||||
- [NuttX library](https://docs.lvgl.io/master/integration/os/nuttx.html)
|
||||
- [RT-Thread RTOS](https://docs.lvgl.io/master/integration/os/rt-thread.html)
|
||||
- CMSIS-Pack
|
||||
- [RIOT OS package](https://doc.riot-os.org/group__pkg__lvgl.html#details)
|
||||
|
||||
|
||||
## :robot: Examples
|
||||
|
||||
See some examples of creating widgets, using layouts and applying styles. You will find C and MicroPython code, and links to try out or edit the examples in an online MicroPython editor.
|
||||
|
||||
For more examples check out the [Examples](https://github.com/lvgl/lvgl/tree/master/examples) folder.
|
||||
|
||||
|
||||
### Hello world label
|
||||
|
||||

|
||||
|
||||
<details>
|
||||
<summary>C code</summary>
|
||||
|
||||
```c
|
||||
/*Change the active screen's background color*/
|
||||
lv_obj_set_style_bg_color(lv_screen_active(), lv_color_hex(0x003a57), LV_PART_MAIN);
|
||||
|
||||
/*Create a white label, set its text and align it to the center*/
|
||||
lv_obj_t * label = lv_label_create(lv_screen_active());
|
||||
lv_label_set_text(label, "Hello world");
|
||||
lv_obj_set_style_text_color(label, lv_color_hex(0xffffff), LV_PART_MAIN);
|
||||
lv_obj_align(label, LV_ALIGN_CENTER, 0, 0);
|
||||
```
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary>MicroPython code | <a href="https://sim.lvgl.io/v8.3/micropython/ports/javascript/index.html?script_direct=4ab7c40c35b0dc349aa2f0c3b00938d7d8e8ac9f" target="_blank">Online Simulator</a></summary>
|
||||
|
||||
```python
|
||||
# Change the active screen's background color
|
||||
scr = lv.screen_active()
|
||||
scr.set_style_bg_color(lv.color_hex(0x003a57), lv.PART.MAIN)
|
||||
|
||||
# Create a white label, set its text and align it to the center
|
||||
label = lv.label(lv.screen_active())
|
||||
label.set_text("Hello world")
|
||||
label.set_style_text_color(lv.color_hex(0xffffff), lv.PART.MAIN)
|
||||
label.align(lv.ALIGN.CENTER, 0, 0)
|
||||
```
|
||||
</details>
|
||||
<br>
|
||||
|
||||
### Button with Click Event
|
||||
|
||||

|
||||
|
||||
<details>
|
||||
<summary>C code</summary>
|
||||
|
||||
```c
|
||||
lv_obj_t * button = lv_button_create(lv_screen_active()); /*Add a button to the current screen*/
|
||||
lv_obj_center(button); /*Set its position*/
|
||||
lv_obj_set_size(button, 100, 50); /*Set its size*/
|
||||
lv_obj_add_event_cb(button, button_event_cb, LV_EVENT_CLICKED, NULL); /*Assign a callback to the button*/
|
||||
|
||||
lv_obj_t * label = lv_label_create(button); /*Add a label to the button*/
|
||||
lv_label_set_text(label, "Button"); /*Set the labels text*/
|
||||
lv_obj_center(label); /*Align the label to the center*/
|
||||
...
|
||||
|
||||
void button_event_cb(lv_event_t * e)
|
||||
{
|
||||
printf("Clicked\n");
|
||||
}
|
||||
```
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary>MicroPython code | <a href="https://sim.lvgl.io/v8.3/micropython/ports/javascript/index.html?script_startup=https://raw.githubusercontent.com/lvgl/lvgl/0d9ab4ee0e591aad1970e3c9164fd7c544ecce70/examples/header.py&script=https://raw.githubusercontent.com/lvgl/lvgl/0d9ab4ee0e591aad1970e3c9164fd7c544ecce70/examples/widgets/slider/lv_example_slider_2.py&script_direct=926bde43ec7af0146c486de470c53f11f167491e" target="_blank">Online Simulator</a></summary>
|
||||
|
||||
```python
|
||||
def button_event_cb(e):
|
||||
print("Clicked")
|
||||
|
||||
# Create a Button and a Label
|
||||
button = lv.button(lv.screen_active())
|
||||
button.center()
|
||||
button.set_size(100, 50)
|
||||
button.add_event_cb(button_event_cb, lv.EVENT.CLICKED, None)
|
||||
|
||||
label = lv.label(button)
|
||||
label.set_text("Button")
|
||||
label.center()
|
||||
```
|
||||
</details>
|
||||
<br>
|
||||
|
||||
### Checkboxes with Layout
|
||||

|
||||
|
||||
<details>
|
||||
<summary>C code</summary>
|
||||
|
||||
```c
|
||||
|
||||
lv_obj_set_flex_flow(lv_screen_active(), LV_FLEX_FLOW_COLUMN);
|
||||
lv_obj_set_flex_align(lv_screen_active(), LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_CENTER);
|
||||
|
||||
lv_obj_t * cb;
|
||||
cb = lv_checkbox_create(lv_screen_active());
|
||||
lv_checkbox_set_text(cb, "Apple");
|
||||
lv_obj_add_event_cb(cb, event_handler, LV_EVENT_ALL, NULL);
|
||||
|
||||
cb = lv_checkbox_create(lv_screen_active());
|
||||
lv_checkbox_set_text(cb, "Banana");
|
||||
lv_obj_add_state(cb, LV_STATE_CHECKED);
|
||||
lv_obj_add_event_cb(cb, event_handler, LV_EVENT_ALL, NULL);
|
||||
|
||||
cb = lv_checkbox_create(lv_screen_active());
|
||||
lv_checkbox_set_text(cb, "Lemon");
|
||||
lv_obj_add_state(cb, LV_STATE_DISABLED);
|
||||
lv_obj_add_event_cb(cb, event_handler, LV_EVENT_ALL, NULL);
|
||||
|
||||
cb = lv_checkbox_create(lv_screen_active());
|
||||
lv_obj_add_state(cb, LV_STATE_CHECKED | LV_STATE_DISABLED);
|
||||
lv_checkbox_set_text(cb, "Melon\nand a new line");
|
||||
lv_obj_add_event_cb(cb, event_handler, LV_EVENT_ALL, NULL);
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary>MicroPython code | <a href="https://sim.lvgl.io/v8.3/micropython/ports/javascript/index.html?script_startup=https://raw.githubusercontent.com/lvgl/lvgl/0d9ab4ee0e591aad1970e3c9164fd7c544ecce70/examples/header.py&script=https://raw.githubusercontent.com/lvgl/lvgl/0d9ab4ee0e591aad1970e3c9164fd7c544ecce70/examples/widgets/slider/lv_example_slider_2.py&script_direct=311d37e5f70daf1cb0d2cad24c7f72751b5f1792" target="_blank">Online Simulator</a></summary>
|
||||
|
||||
```python
|
||||
def event_handler(e):
|
||||
code = e.get_code()
|
||||
obj = e.get_target_obj()
|
||||
if code == lv.EVENT.VALUE_CHANGED:
|
||||
txt = obj.get_text()
|
||||
if obj.get_state() & lv.STATE.CHECKED:
|
||||
state = "Checked"
|
||||
else:
|
||||
state = "Unchecked"
|
||||
print(txt + ":" + state)
|
||||
|
||||
|
||||
lv.screen_active().set_flex_flow(lv.FLEX_FLOW.COLUMN)
|
||||
lv.screen_active().set_flex_align(lv.FLEX_ALIGN.CENTER, lv.FLEX_ALIGN.START, lv.FLEX_ALIGN.CENTER)
|
||||
|
||||
cb = lv.checkbox(lv.screen_active())
|
||||
cb.set_text("Apple")
|
||||
cb.add_event_cb(event_handler, lv.EVENT.ALL, None)
|
||||
|
||||
cb = lv.checkbox(lv.screen_active())
|
||||
cb.set_text("Banana")
|
||||
cb.add_state(lv.STATE.CHECKED)
|
||||
cb.add_event_cb(event_handler, lv.EVENT.ALL, None)
|
||||
|
||||
cb = lv.checkbox(lv.screen_active())
|
||||
cb.set_text("Lemon")
|
||||
cb.add_state(lv.STATE.DISABLED)
|
||||
cb.add_event_cb(event_handler, lv.EVENT.ALL, None)
|
||||
|
||||
cb = lv.checkbox(lv.screen_active())
|
||||
cb.add_state(lv.STATE.CHECKED | lv.STATE.DISABLED)
|
||||
cb.set_text("Melon")
|
||||
cb.add_event_cb(event_handler, lv.EVENT.ALL, None)
|
||||
```
|
||||
|
||||
</details>
|
||||
<br>
|
||||
|
||||
### Styling a Slider
|
||||

|
||||
|
||||
|
||||
<details>
|
||||
<summary>C code</summary>
|
||||
|
||||
```c
|
||||
lv_obj_t * slider = lv_slider_create(lv_screen_active());
|
||||
lv_slider_set_value(slider, 70, LV_ANIM_OFF);
|
||||
lv_obj_set_size(slider, 300, 20);
|
||||
lv_obj_center(slider);
|
||||
|
||||
/*Add local styles to MAIN part (background rectangle)*/
|
||||
lv_obj_set_style_bg_color(slider, lv_color_hex(0x0F1215), LV_PART_MAIN);
|
||||
lv_obj_set_style_bg_opa(slider, 255, LV_PART_MAIN);
|
||||
lv_obj_set_style_border_color(slider, lv_color_hex(0x333943), LV_PART_MAIN);
|
||||
lv_obj_set_style_border_width(slider, 5, LV_PART_MAIN);
|
||||
lv_obj_set_style_pad_all(slider, 5, LV_PART_MAIN);
|
||||
|
||||
/*Create a reusable style sheet for the INDICATOR part*/
|
||||
static lv_style_t style_indicator;
|
||||
lv_style_init(&style_indicator);
|
||||
lv_style_set_bg_color(&style_indicator, lv_color_hex(0x37B9F5));
|
||||
lv_style_set_bg_grad_color(&style_indicator, lv_color_hex(0x1464F0));
|
||||
lv_style_set_bg_grad_dir(&style_indicator, LV_GRAD_DIR_HOR);
|
||||
lv_style_set_shadow_color(&style_indicator, lv_color_hex(0x37B9F5));
|
||||
lv_style_set_shadow_width(&style_indicator, 15);
|
||||
lv_style_set_shadow_spread(&style_indicator, 5);
|
||||
4
|
||||
/*Add the style sheet to the slider's INDICATOR part*/
|
||||
lv_obj_add_style(slider, &style_indicator, LV_PART_INDICATOR);
|
||||
|
||||
/*Add the same style to the KNOB part too and locally overwrite some properties*/
|
||||
lv_obj_add_style(slider, &style_indicator, LV_PART_KNOB);
|
||||
|
||||
lv_obj_set_style_outline_color(slider, lv_color_hex(0x0096FF), LV_PART_KNOB);
|
||||
lv_obj_set_style_outline_width(slider, 3, LV_PART_KNOB);
|
||||
lv_obj_set_style_outline_pad(slider, -5, LV_PART_KNOB);
|
||||
lv_obj_set_style_shadow_spread(slider, 2, LV_PART_KNOB);
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary>MicroPython code |
|
||||
<a href="https://sim.lvgl.io/v8.3/micropython/ports/javascript/index.html?script_startup=https://raw.githubusercontent.com/lvgl/lvgl/0d9ab4ee0e591aad1970e3c9164fd7c544ecce70/examples/header.py&script=https://raw.githubusercontent.com/lvgl/lvgl/0d9ab4ee0e591aad1970e3c9164fd7c544ecce70/examples/widgets/slider/lv_example_slider_2.py&script_direct=c431c7b4dfd2cc0dd9c392b74365d5af6ea986f0" target="_blank">Online Simulator</a>
|
||||
</summary>
|
||||
|
||||
|
||||
```python
|
||||
# Create a slider and add the style
|
||||
slider = lv.slider(lv.screen_active())
|
||||
slider.set_value(70, lv.ANIM.OFF)
|
||||
slider.set_size(300, 20)
|
||||
slider.center()
|
||||
|
||||
# Add local styles to MAIN part (background rectangle)
|
||||
slider.set_style_bg_color(lv.color_hex(0x0F1215), lv.PART.MAIN)
|
||||
slider.set_style_bg_opa(255, lv.PART.MAIN)
|
||||
slider.set_style_border_color(lv.color_hex(0x333943), lv.PART.MAIN)
|
||||
slider.set_style_border_width(5, lv.PART.MAIN)
|
||||
slider.set_style_pad_all(5, lv.PART.MAIN)
|
||||
|
||||
# Create a reusable style sheet for the INDICATOR part
|
||||
style_indicator = lv.style_t()
|
||||
style_indicator.init()
|
||||
style_indicator.set_bg_color(lv.color_hex(0x37B9F5))
|
||||
style_indicator.set_bg_grad_color(lv.color_hex(0x1464F0))
|
||||
style_indicator.set_bg_grad_dir(lv.GRAD_DIR.HOR)
|
||||
style_indicator.set_shadow_color(lv.color_hex(0x37B9F5))
|
||||
style_indicator.set_shadow_width(15)
|
||||
style_indicator.set_shadow_spread(5)
|
||||
|
||||
# Add the style sheet to the slider's INDICATOR part
|
||||
slider.add_style(style_indicator, lv.PART.INDICATOR)
|
||||
slider.add_style(style_indicator, lv.PART.KNOB)
|
||||
|
||||
# Add the same style to the KNOB part too and locally overwrite some properties
|
||||
slider.set_style_outline_color(lv.color_hex(0x0096FF), lv.PART.KNOB)
|
||||
slider.set_style_outline_width(3, lv.PART.KNOB)
|
||||
slider.set_style_outline_pad(-5, lv.PART.KNOB)
|
||||
slider.set_style_shadow_spread(2, lv.PART.KNOB)
|
||||
```
|
||||
</details>
|
||||
<br>
|
||||
|
||||
### English, Hebrew (mixed LTR-RTL) and Chinese texts
|
||||
|
||||

|
||||
|
||||
<details>
|
||||
<summary>C code</summary>
|
||||
|
||||
```c
|
||||
lv_obj_t * ltr_label = lv_label_create(lv_screen_active());
|
||||
lv_label_set_text(ltr_label, "In modern terminology, a microcontroller is similar to a system on a chip (SoC).");
|
||||
lv_obj_set_style_text_font(ltr_label, &lv_font_montserrat_16, 0);
|
||||
lv_obj_set_width(ltr_label, 310);
|
||||
lv_obj_align(ltr_label, LV_ALIGN_TOP_LEFT, 5, 5);
|
||||
|
||||
lv_obj_t * rtl_label = lv_label_create(lv_screen_active());
|
||||
lv_label_set_text(rtl_label,"מעבד, או בשמו המלא יחידת עיבוד מרכזית (באנגלית: CPU - Central Processing Unit).");
|
||||
lv_obj_set_style_base_dir(rtl_label, LV_BASE_DIR_RTL, 0);
|
||||
lv_obj_set_style_text_font(rtl_label, &lv_font_dejavu_16_persian_hebrew, 0);
|
||||
lv_obj_set_width(rtl_label, 310);
|
||||
lv_obj_align(rtl_label, LV_ALIGN_LEFT_MID, 5, 0);
|
||||
|
||||
lv_obj_t * cz_label = lv_label_create(lv_screen_active());
|
||||
lv_label_set_text(cz_label,
|
||||
"嵌入式系统(Embedded System),\n是一种嵌入机械或电气系统内部、具有专一功能和实时计算性能的计算机系统。");
|
||||
lv_obj_set_style_text_font(cz_label, &lv_font_simsun_16_cjk, 0);
|
||||
lv_obj_set_width(cz_label, 310);
|
||||
lv_obj_align(cz_label, LV_ALIGN_BOTTOM_LEFT, 5, -5);
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary>MicroPython code | <a href="https://sim.lvgl.io/v8.3/micropython/ports/javascript/index.html?script_startup=https://raw.githubusercontent.com/lvgl/lvgl/0d9ab4ee0e591aad1970e3c9164fd7c544ecce70/examples/header.py&script=https://raw.githubusercontent.com/lvgl/lvgl/0d9ab4ee0e591aad1970e3c9164fd7c544ecce70/examples/widgets/slider/lv_example_slider_2.py&script_direct=18bb38200a64e10ead1aa17a65c977fc18131842" target="_blank">Online Simulator</a></summary>
|
||||
|
||||
```python
|
||||
ltr_label = lv.label(lv.screen_active())
|
||||
ltr_label.set_text("In modern terminology, a microcontroller is similar to a system on a chip (SoC).")
|
||||
ltr_label.set_style_text_font(lv.font_montserrat_16, 0);
|
||||
|
||||
ltr_label.set_width(310)
|
||||
ltr_label.align(lv.ALIGN.TOP_LEFT, 5, 5)
|
||||
|
||||
rtl_label = lv.label(lv.screen_active())
|
||||
rtl_label.set_text("מעבד, או בשמו המלא יחידת עיבוד מרכזית (באנגלית: CPU - Central Processing Unit).")
|
||||
rtl_label.set_style_base_dir(lv.BASE_DIR.RTL, 0)
|
||||
rtl_label.set_style_text_font(lv.font_dejavu_16_persian_hebrew, 0)
|
||||
rtl_label.set_width(310)
|
||||
rtl_label.align(lv.ALIGN.LEFT_MID, 5, 0)
|
||||
|
||||
font_simsun_16_cjk = lv.font_load("S:../../assets/font/lv_font_simsun_16_cjk.fnt")
|
||||
|
||||
cz_label = lv.label(lv.screen_active())
|
||||
cz_label.set_style_text_font(font_simsun_16_cjk, 0)
|
||||
cz_label.set_text("嵌入式系统(Embedded System),\n是一种嵌入机械或电气系统内部、具有专一功能和实时计算性能的计算机系统。")
|
||||
cz_label.set_width(310)
|
||||
cz_label.align(lv.ALIGN.BOTTOM_LEFT, 5, -5)
|
||||
|
||||
```
|
||||
</details>
|
||||
|
||||
## :arrow_forward: Get started
|
||||
This list will guide you to get started with LVGL step-by-step.
|
||||
|
||||
**Get Familiar with LVGL**
|
||||
|
||||
1. Check the [Online demos](https://lvgl.io/demos) to see LVGL in action (3 minutes)
|
||||
2. Read the [Introduction](https://docs.lvgl.io/master/intro/index.html) page of the documentation (5 minutes)
|
||||
3. Get familiar with the basics on the [Quick overview](https://docs.lvgl.io/master/get-started/quick-overview.html) page (15 minutes)
|
||||
|
||||
**Start to Use LVGL**
|
||||
|
||||
4. Set up a [Simulator](https://docs.lvgl.io/master/integration/ide/pc-simulator.html#simulator) (10 minutes)
|
||||
5. Try out some [Examples](https://github.com/lvgl/lvgl/tree/master/examples)
|
||||
6. Port LVGL to a board. See the [Porting](https://docs.lvgl.io/master/porting/index.html) guide or check the ready to use [Projects](https://github.com/lvgl?q=lv_port_)
|
||||
|
||||
**Become a Pro**
|
||||
|
||||
7. Read the [Overview](https://docs.lvgl.io/master/overview/index.html) page to get a better understanding of the library (2-3 hours)
|
||||
8. Check the documentation of the [Widgets](https://docs.lvgl.io/master/widgets/index.html) to see their features and usage
|
||||
|
||||
**Get Help and Help Others**
|
||||
|
||||
9. If you have questions go to the [Forum](http://forum.lvgl.io/)
|
||||
10. Read the [Contributing](https://docs.lvgl.io/master/CONTRIBUTING.html) guide to see how you can help to improve LVGL (15 minutes)
|
||||
|
||||
|
||||
## :handshake: Services
|
||||
LVGL LLC was established to provide a solid background for LVGL library and to offer several type of services to help you in UI development. With 15+ years of experience in the user interface and graphics industry we can help you the bring your UI to the next level.
|
||||
|
||||
- **Graphics design** Our in-house graphics designers are experts in creating beautiful modern designs which fit to your product and the resources of your hardware.
|
||||
- **UI implementation** We can also implement your UI based on the design you or we have created. You can be sure that we will make the most out of your hardware and LVGL. If a feature or widget is missing from LVGL, don't worry, we will implement it for you.
|
||||
- **Consulting and Support** We can support you with consulting as well to avoid pricey and time consuming mistakes during the UI development.
|
||||
- **Board certification** For companies who are offering development boards, or production ready kits we do board certification which shows how board can run LVGL.
|
||||
|
||||
|
||||
Check out our [Demos](https://lvgl.io/demos) as reference. For more information take look at the [Services page](https://lvgl.io/services).
|
||||
|
||||
[Contact us](https://lvgl.io/#contact) and tell how we can help.
|
||||
|
||||
|
||||
## :star2: Contributing
|
||||
LVGL is an open project and contribution is very welcome. There are many ways to contribute from simply speaking about your project, through writing examples, improving the documentation, fixing bugs or even hosting your own project under the LVGL organization.
|
||||
|
||||
For a detailed description of contribution opportunities visit the [Contributing](https://docs.lvgl.io/master/CONTRIBUTING.html) section of the documentation.
|
||||
|
||||
More than 300 people already left their fingerprint in LVGL. Be one them! See you here! :slightly_smiling_face:
|
||||
|
||||
<a href="https://github.com/lvgl/lvgl/graphs/contributors">
|
||||
<img src="https://contrib.rocks/image?repo=lvgl/lvgl&max=48" />
|
||||
</a>
|
||||
|
||||
... and many other.
|
||||
@@ -0,0 +1,11 @@
|
||||
# RT-Thread building script for bridge
|
||||
|
||||
import os
|
||||
from building import *
|
||||
|
||||
objs = []
|
||||
cwd = GetCurrentDir()
|
||||
|
||||
objs = objs + SConscript(cwd + '/env_support/rt-thread/SConscript')
|
||||
|
||||
Return('objs')
|
||||
@@ -0,0 +1,66 @@
|
||||
# ESP-IDF component file for make based commands
|
||||
|
||||
COMPONENT_SRCDIRS := . \
|
||||
src \
|
||||
src/core \
|
||||
src/draw \
|
||||
src/extra \
|
||||
src/font \
|
||||
src/hal \
|
||||
src/misc \
|
||||
src/widgets \
|
||||
src/draw/arm2d \
|
||||
src/draw/nxp \
|
||||
src/draw/sdl \
|
||||
src/draw/stm32_dma2d \
|
||||
src/draw/sw \
|
||||
src/draw/swm342_dma2d \
|
||||
src/extra/layouts \
|
||||
src/extra/libs \
|
||||
src/extra/others \
|
||||
src/extra/themes \
|
||||
src/extra/widgets \
|
||||
src/extra/layouts/flex \
|
||||
src/extra/layouts/grid \
|
||||
src/extra/libs/bmp \
|
||||
src/extra/libs/ffmpeg \
|
||||
src/extra/libs/freetype \
|
||||
src/extra/libs/fsdrv \
|
||||
src/extra/libs/gif \
|
||||
src/extra/libs/png \
|
||||
src/extra/libs/qrcode \
|
||||
src/extra/libs/rlottie \
|
||||
src/extra/libs/sjgp \
|
||||
src/extra/others/fragment \
|
||||
src/extra/others/gridnav \
|
||||
src/extra/others/ime \
|
||||
src/extra/others/imgfont \
|
||||
src/extra/others/monkey \
|
||||
src/extra/others/msg \
|
||||
src/extra/others/snapshot \
|
||||
src/extra/themes/basic \
|
||||
src/extra/themes/default \
|
||||
src/extra/themes/mono \
|
||||
src/extra/widgets/animimg \
|
||||
src/extra/widgets/calendar \
|
||||
src/extra/widgets/chart \
|
||||
src/extra/widgets/colorwheel \
|
||||
src/extra/widgets/imgbtn \
|
||||
src/extra/widgets/keyboard \
|
||||
src/extra/widgets/led \
|
||||
src/extra/widgets/list \
|
||||
src/extra/widgets/menu \
|
||||
src/extra/widgets/meter \
|
||||
src/extra/widgets/msgbox \
|
||||
src/extra/widgets/span \
|
||||
src/extra/widgets/spinbox \
|
||||
src/extra/widgets/spinner \
|
||||
src/extra/widgets/tabview \
|
||||
src/extra/widgets/tileview \
|
||||
src/extra/widgets/win
|
||||
|
||||
ifeq ($(CONFIG_LV_USE_THORVG_INTERNAL),y)
|
||||
COMPONENT_SRCDIRS += src/extra/libs/thorvg
|
||||
endif
|
||||
|
||||
COMPONENT_ADD_INCLUDEDIRS := $(COMPONENT_SRCDIRS) .
|
||||
@@ -0,0 +1,157 @@
|
||||
# Demos for LVGL
|
||||
|
||||
## Add the examples to your projects
|
||||
1. demos can be found in the 'demos' folder once you clone the lvgl.
|
||||
|
||||
2. In the ***lv_conf.h*** or equivalent places, you can find demo related macros, change its value to enable or disable specified demos:
|
||||
|
||||
```c
|
||||
...
|
||||
/*===================
|
||||
* DEMO USAGE
|
||||
====================*/
|
||||
|
||||
/*Show some widget. It might be required to increase `LV_MEM_SIZE` */
|
||||
#define LV_USE_DEMO_WIDGETS 0
|
||||
|
||||
/*Demonstrate the usage of encoder and keyboard*/
|
||||
#define LV_USE_DEMO_KEYPAD_AND_ENCODER 0
|
||||
|
||||
/*Benchmark your system*/
|
||||
#define LV_USE_DEMO_BENCHMARK 0
|
||||
|
||||
/*Stress test for LVGL*/
|
||||
#define LV_USE_DEMO_STRESS 0
|
||||
|
||||
/*Music player demo*/
|
||||
#define LV_USE_DEMO_MUSIC 0
|
||||
#if LV_USE_DEMO_MUSIC
|
||||
# define LV_DEMO_MUSIC_SQUARE 0
|
||||
# define LV_DEMO_MUSIC_LANDSCAPE 0
|
||||
# define LV_DEMO_MUSIC_ROUND 0
|
||||
# define LV_DEMO_MUSIC_LARGE 0
|
||||
# define LV_DEMO_MUSIC_AUTO_PLAY 0
|
||||
#endif
|
||||
|
||||
/*Flex layout demo*/
|
||||
#define LV_USE_DEMO_FLEX_LAYOUT 0
|
||||
|
||||
/*Smart-phone like multi-language demo*/
|
||||
#define LV_USE_DEMO_MULTILANG 0
|
||||
|
||||
/*Widget transformation demo*/
|
||||
#define LV_USE_DEMO_TRANSFORM 0
|
||||
|
||||
/*Demonstrate scroll settings*/
|
||||
#define LV_USE_DEMO_SCROLL 0
|
||||
...
|
||||
```
|
||||
|
||||
3. If your development environment or toolchain does not add source files inside '***lvgl***' folder automatically, ensure the `demos` folder is included for compilation.
|
||||
4. Include "***demos/lv_demos.h***" in your application source file, for example:
|
||||
|
||||
```c
|
||||
//! main.c
|
||||
#include "lvgl.h"
|
||||
#include "demos/lv_demos.h"
|
||||
...
|
||||
```
|
||||
|
||||
## Configure Demos Entry
|
||||
|
||||
"demos/lv_demos.c" provides `lv_demos_create` and `lv_demos_show_help` to simplify the creation of demos.
|
||||
|
||||
If you build your main program named `lv_demos`, then you can run the widgets demo by running `lv_demos widgets` and the benchmark demo by running `lv_demos benchmark 1`.
|
||||
|
||||
For example:
|
||||
|
||||
```c
|
||||
//! main.c
|
||||
#include "lvgl.h"
|
||||
#include "demos/lv_demos.h"
|
||||
|
||||
...
|
||||
static lv_display_t* hal_init(void)
|
||||
{
|
||||
lv_display_t* disp = NULL;
|
||||
|
||||
...
|
||||
/* TODO: init display and indev */
|
||||
...
|
||||
|
||||
return disp;
|
||||
}
|
||||
|
||||
int main(int argc, char ** argv)
|
||||
{
|
||||
lv_init();
|
||||
|
||||
lv_display_t* disp = hal_init();
|
||||
if (disp == NULL) {
|
||||
LV_LOG_ERROR("lv_demos initialization failure!");
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (!lv_demos_create(&argv[1], argc - 1)) {
|
||||
lv_demos_show_help();
|
||||
goto demo_end;
|
||||
}
|
||||
|
||||
while (1) {
|
||||
uint32_t delay = lv_timer_handler();
|
||||
if (delay < 1) delay = 1;
|
||||
usleep(delay * 1000);
|
||||
}
|
||||
|
||||
demo_end:
|
||||
lv_deinit();
|
||||
return 0;
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
## Demos
|
||||
|
||||
### Widgets
|
||||
Shows how the widgets look like out of the box using the built-in material theme.
|
||||
|
||||
See in [widgets](https://github.com/lvgl/lvgl/tree/master/demos/widgets) folder.
|
||||
|
||||

|
||||
|
||||
For running this demo properly, please make sure **LV_MEM_SIZE** is at least **38KB** (and **48KB** is recommended):
|
||||
|
||||
```c
|
||||
#define LV_MEM_SIZE (38ul * 1024ul)
|
||||
```
|
||||
|
||||
|
||||
|
||||
### Music player
|
||||
The music player demo shows what kind of modern, smartphone-like user interfaces can be created on LVGL. It works the best with display with 480x272 or 272x480 resolution.
|
||||
|
||||
See in [music](https://github.com/lvgl/lvgl/tree/master/demos/music) folder.
|
||||
|
||||

|
||||
|
||||
### Keypad and encoder
|
||||
LVGL allows you to control the widgets with a keypad and/or encoder without a touchpad. This demo shows how to handle buttons, drop-down lists, rollers, sliders, switches, and text inputs without touchpad.
|
||||
Learn more about the touchpad-less usage of LVGL [here](https://docs.lvgl.io/master/overview/indev.html#keypad-and-encoder).
|
||||
|
||||
See in [keypad_encoder](https://github.com/lvgl/lvgl/tree/master/demos/keypad_encoder) folder.
|
||||
|
||||

|
||||
|
||||
### Benchmark
|
||||
A demo to measure the performance of LVGL or to compare different settings.
|
||||
See in [benchmark](https://github.com/lvgl/lvgl/tree/master/demos/benchmark) folder.
|
||||

|
||||
|
||||
### Stress
|
||||
A stress test for LVGL. It contains a lot of object creation, deletion, animations, style usage, and so on. It can be used if there is any memory corruption during heavy usage or any memory leaks.
|
||||
See in [stress](https://github.com/lvgl/lvgl/tree/master/demos/stress) folder.
|
||||

|
||||
|
||||
## Contributing
|
||||
For contribution and coding style guidelines, please refer to the file docs/CONTRIBUTING.md in the main LVGL repo:
|
||||
https://github.com/lvgl/lvgl
|
||||
@@ -0,0 +1,123 @@
|
||||
#ifdef __has_include
|
||||
#if __has_include("lvgl.h")
|
||||
#ifndef LV_LVGL_H_INCLUDE_SIMPLE
|
||||
#define LV_LVGL_H_INCLUDE_SIMPLE
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
|
||||
#include "lvgl.h"
|
||||
#else
|
||||
#include "lvgl/lvgl.h"
|
||||
#endif
|
||||
|
||||
#if LV_USE_DEMO_BENCHMARK
|
||||
|
||||
#ifndef LV_ATTRIBUTE_MEM_ALIGN
|
||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||
#endif
|
||||
|
||||
#ifndef LV_ATTRIBUTE_IMAGE_IMG_BENCHMARK_AVATAR
|
||||
#define LV_ATTRIBUTE_IMAGE_IMG_BENCHMARK_AVATAR
|
||||
#endif
|
||||
|
||||
static const
|
||||
LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMAGE_IMG_BENCHMARK_AVATAR
|
||||
uint8_t img_benchmark_avatar_map[] = {
|
||||
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x69, 0x65, 0x72, 0x0a, 0x6b, 0x63, 0x71, 0x28, 0x6e, 0x65, 0x6f, 0x40, 0x72, 0x66, 0x6f, 0x5d, 0x6c, 0x64, 0x6b, 0x87, 0x6b, 0x64, 0x70, 0xb2, 0x63, 0x60, 0x72, 0xd1, 0x62, 0x61, 0x75, 0xe6, 0x80, 0x7a, 0x8a, 0xf3, 0x9b, 0x8d, 0x95, 0xfc, 0xae, 0x9e, 0x9a, 0xfc, 0xb9, 0xa9, 0x9c, 0xf3, 0xbe, 0xae, 0x9c, 0xe6, 0xc0, 0xb3, 0xa1, 0xd1, 0xbf, 0xb4, 0x9e, 0xb2, 0xba, 0xb0, 0x9a, 0x87, 0xb6, 0xb0, 0x99, 0x5d, 0xb6, 0xb2, 0x9c, 0x40, 0xbf, 0xb6, 0xa1, 0x28, 0xc2, 0xbb, 0xa3, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x62, 0x83, 0x03, 0x5b, 0x61, 0x84, 0x0a, 0x5c, 0x61, 0x84, 0x4a, 0x60, 0x61, 0x84, 0xa8, 0x60, 0x61, 0x7f, 0xe1, 0x61, 0x60, 0x79, 0xee, 0x64, 0x61, 0x75, 0xfa, 0x66, 0x61, 0x72, 0xff, 0x67, 0x65, 0x75, 0xff, 0x5f, 0x5e, 0x72, 0xff, 0x5f, 0x5f, 0x76, 0xff, 0x60, 0x61, 0x78, 0xff, 0x7b, 0x78, 0x88, 0xff, 0x9c, 0x91, 0x98, 0xff, 0xb0, 0x9f, 0x9d, 0xff, 0xbd, 0xaa, 0xa0, 0xff, 0xc6, 0xb3, 0xa1, 0xff, 0xc6, 0xb5, 0xa2, 0xff, 0xc0, 0xb5, 0xa2, 0xff, 0xbd, 0xb3, 0xa0, 0xff, 0xba, 0xb2, 0x9f, 0xff, 0xb7, 0xb1, 0x9d, 0xfa, 0xba, 0xb4, 0xa1, 0xee, 0xbd, 0xb7, 0xa4, 0xe1, 0xbc, 0xb6, 0xa3, 0xa8, 0xbc, 0xb8, 0xa3, 0x4a, 0xbb, 0xb6, 0xa3, 0x0a, 0xbe, 0xb9, 0xa4, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x54, 0x6b, 0x07, 0x57, 0x5b, 0x79, 0x50, 0x5b, 0x60, 0x80, 0xa0, 0x5d, 0x63, 0x86, 0xe8, 0x5c, 0x62, 0x88, 0xff, 0x5d, 0x63, 0x88, 0xff, 0x5b, 0x61, 0x84, 0xff, 0x5a, 0x5e, 0x7e, 0xff, 0x58, 0x5c, 0x7b, 0xff, 0x5f, 0x61, 0x7c, 0xff, 0x65, 0x68, 0x80, 0xff, 0x59, 0x5c, 0x76, 0xff, 0x5c, 0x5f, 0x7d, 0xff, 0x65, 0x69, 0x84, 0xff, 0x84, 0x84, 0x97, 0xff, 0x93, 0x8c, 0x94, 0xff, 0xad, 0xa1, 0x9f, 0xff, 0xba, 0xa9, 0xa0, 0xff, 0xc5, 0xb2, 0xa0, 0xff, 0xc6, 0xb6, 0xa0, 0xff, 0xc3, 0xb8, 0xa4, 0xff, 0xc2, 0xb7, 0xa4, 0xff, 0xc3, 0xb8, 0xa5, 0xff, 0xc2, 0xb6, 0xa3, 0xff, 0xbf, 0xb7, 0xa5, 0xff, 0xbc, 0xb6, 0xa4, 0xff, 0xba, 0xb6, 0xa5, 0xff, 0xb7, 0xb5, 0xa4, 0xff, 0xb9, 0xb5, 0xa3, 0xe8, 0xbe, 0xb9, 0xa5, 0xa0, 0xc2, 0xbc, 0xa5, 0x50, 0xc3, 0xbf, 0xa5, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7b, 0x71, 0x6c, 0x13, 0x6a, 0x67, 0x71, 0x64, 0x62, 0x62, 0x73, 0xe4, 0x5d, 0x5f, 0x79, 0xfb, 0x5e, 0x61, 0x7e, 0xff, 0x5f, 0x64, 0x84, 0xff, 0x5f, 0x65, 0x88, 0xff, 0x60, 0x65, 0x89, 0xff, 0x5d, 0x63, 0x85, 0xff, 0x58, 0x5f, 0x7f, 0xff, 0x57, 0x5c, 0x7c, 0xff, 0x5c, 0x5f, 0x7f, 0xff, 0x67, 0x6b, 0x88, 0xff, 0x5d, 0x60, 0x7d, 0xff, 0x59, 0x5e, 0x7d, 0xff, 0x5d, 0x62, 0x80, 0xff, 0x79, 0x7c, 0x8f, 0xff, 0x9d, 0x99, 0xa0, 0xff, 0xab, 0xa5, 0xa4, 0xff, 0xb6, 0xac, 0xa3, 0xff, 0xc0, 0xb3, 0xa0, 0xff, 0xc6, 0xb9, 0xa3, 0xff, 0xc6, 0xbc, 0xa7, 0xff, 0xc8, 0xbb, 0xa4, 0xff, 0xc7, 0xbb, 0xa4, 0xff, 0xc9, 0xbe, 0xa9, 0xff, 0xc8, 0xbd, 0xab, 0xff, 0xc6, 0xbb, 0xaa, 0xff, 0xc3, 0xbb, 0xaa, 0xff, 0xbc, 0xb9, 0xa7, 0xff, 0xb6, 0xb5, 0xa4, 0xff, 0xbc, 0xb7, 0xa2, 0xff, 0xc1, 0xbb, 0xa3, 0xfb, 0xc5, 0xbd, 0xa6, 0xe4, 0xc5, 0xbd, 0xa7, 0x64, 0xc8, 0xc0, 0xa8, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x97, 0x79, 0x0c, 0x9f, 0x8f, 0x79, 0x81, 0x89, 0x7c, 0x70, 0xdf, 0x7f, 0x77, 0x75, 0xff, 0x79, 0x72, 0x7a, 0xff, 0x6a, 0x69, 0x78, 0xff, 0x62, 0x66, 0x7c, 0xff, 0x5f, 0x65, 0x83, 0xff, 0x63, 0x66, 0x85, 0xff, 0x64, 0x67, 0x86, 0xff, 0x62, 0x66, 0x85, 0xff, 0x5d, 0x61, 0x7f, 0xff, 0x5e, 0x62, 0x80, 0xff, 0x5d, 0x5e, 0x81, 0xff, 0x61, 0x68, 0x87, 0xff, 0x69, 0x6e, 0x8d, 0xff, 0x70, 0x73, 0x92, 0xff, 0x68, 0x6d, 0x8b, 0xff, 0x73, 0x75, 0x8a, 0xff, 0x8f, 0x89, 0x95, 0xff, 0xaa, 0xa4, 0xa4, 0xff, 0xb6, 0xae, 0xa9, 0xff, 0xbf, 0xb3, 0xa7, 0xff, 0xca, 0xbc, 0xa9, 0xff, 0xca, 0xbd, 0xa9, 0xff, 0xcd, 0xbd, 0xaa, 0xff, 0xcb, 0xbc, 0xaa, 0xff, 0xcb, 0xc3, 0xae, 0xff, 0xc9, 0xbf, 0xa9, 0xff, 0xce, 0xc1, 0xae, 0xff, 0xcd, 0xc2, 0xaf, 0xff, 0xc8, 0xc0, 0xad, 0xff, 0xc5, 0xbd, 0xaa, 0xff, 0xc2, 0xbb, 0xa8, 0xff, 0xc3, 0xbb, 0xa8, 0xff, 0xc3, 0xba, 0xa9, 0xff, 0xc4, 0xbb, 0xa6, 0xff, 0xc6, 0xbe, 0xa8, 0xdf, 0xca, 0xc0, 0xae, 0x81, 0xc7, 0xc0, 0xb0, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0xa8, 0x8a, 0x05, 0xca, 0xae, 0x8a, 0x52, 0xc1, 0xa8, 0x85, 0xdd, 0xb6, 0xa1, 0x7f, 0xff, 0xa5, 0x90, 0x75, 0xff, 0x9c, 0x89, 0x7a, 0xff, 0x95, 0x85, 0x7f, 0xff, 0x7e, 0x78, 0x81, 0xff, 0x6a, 0x6c, 0x7e, 0xff, 0x66, 0x69, 0x84, 0xff, 0x6a, 0x6e, 0x89, 0xff, 0x6a, 0x6d, 0x88, 0xff, 0x68, 0x6c, 0x83, 0xff, 0x64, 0x66, 0x7c, 0xff, 0x6e, 0x6f, 0x85, 0xff, 0x66, 0x67, 0x82, 0xff, 0x74, 0x7a, 0x96, 0xff, 0x5d, 0x62, 0x81, 0xff, 0x74, 0x78, 0x96, 0xff, 0x6d, 0x71, 0x8e, 0xff, 0x83, 0x85, 0x9b, 0xff, 0x90, 0x8d, 0x99, 0xff, 0xa7, 0xa1, 0xa7, 0xff, 0xb2, 0xab, 0xab, 0xff, 0xbe, 0xb3, 0xa8, 0xff, 0xc2, 0xb7, 0xa4, 0xff, 0xc9, 0xbc, 0xa8, 0xff, 0xc3, 0xbe, 0xb7, 0xff, 0xc8, 0xc3, 0xb7, 0xff, 0xd1, 0xc1, 0xa9, 0xff, 0xd7, 0xc2, 0xa4, 0xff, 0xcc, 0xc7, 0xa9, 0xff, 0xd0, 0xc5, 0xb0, 0xff, 0xd4, 0xc4, 0xb2, 0xff, 0xcf, 0xc4, 0xad, 0xff, 0xcd, 0xc1, 0xab, 0xff, 0xcc, 0xc1, 0xab, 0xff, 0xcb, 0xc0, 0xab, 0xff, 0xca, 0xbf, 0xa9, 0xff, 0xc9, 0xbe, 0xac, 0xff, 0xc8, 0xbd, 0xae, 0xff, 0xbf, 0xb6, 0xb5, 0xde, 0xb7, 0xae, 0xb6, 0x52, 0xb8, 0xb0, 0xb8, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xae, 0x9d, 0x20, 0xc9, 0xb2, 0x97, 0xbf, 0xd2, 0xb6, 0x90, 0xfa, 0xcd, 0xb2, 0x8b, 0xff, 0xc3, 0xac, 0x83, 0xff, 0xb5, 0x9f, 0x7a, 0xff, 0xae, 0x99, 0x85, 0xff, 0xa8, 0x95, 0x8b, 0xff, 0x90, 0x88, 0x88, 0xff, 0x76, 0x72, 0x7e, 0xff, 0x6c, 0x6e, 0x83, 0xff, 0x70, 0x71, 0x8b, 0xff, 0x72, 0x76, 0x89, 0xff, 0x72, 0x74, 0x85, 0xff, 0x6f, 0x70, 0x7c, 0xff, 0x6c, 0x6c, 0x77, 0xff, 0x84, 0x86, 0x95, 0xff, 0x7c, 0x84, 0x97, 0xff, 0x86, 0x8e, 0xa7, 0xff, 0x72, 0x7a, 0x95, 0xff, 0x86, 0x8f, 0xab, 0xff, 0x99, 0xa3, 0xb8, 0xff, 0xc1, 0xc7, 0xd3, 0xff, 0xc6, 0xca, 0xd5, 0xff, 0xcd, 0xd1, 0xd9, 0xff, 0xc6, 0xc4, 0xc7, 0xff, 0xbf, 0xbb, 0xbb, 0xff, 0xbf, 0xb6, 0xac, 0xff, 0xbf, 0xbe, 0xb4, 0xff, 0xc2, 0xc6, 0xc4, 0xff, 0xb1, 0xb4, 0xb6, 0xff, 0xcf, 0xc2, 0xb4, 0xff, 0xd3, 0xc1, 0xa9, 0xff, 0xd9, 0xc4, 0xab, 0xff, 0xd5, 0xc5, 0xae, 0xff, 0xd3, 0xc5, 0xae, 0xff, 0xd2, 0xc4, 0xac, 0xff, 0xd1, 0xc2, 0xab, 0xff, 0xd0, 0xc1, 0xaa, 0xff, 0xcf, 0xc2, 0xab, 0xff, 0xcc, 0xc1, 0xb0, 0xff, 0xc9, 0xbb, 0xb4, 0xff, 0xbb, 0xb2, 0xb6, 0xff, 0xaf, 0xa8, 0xb8, 0xfa, 0xa0, 0x9c, 0xbd, 0xbf, 0x98, 0x95, 0xc1, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0xa7, 0xaf, 0x02, 0xbe, 0xad, 0xa5, 0x62, 0xc6, 0xb0, 0x9e, 0xe8, 0xcd, 0xb7, 0x9a, 0xff, 0xd8, 0xbd, 0x96, 0xff, 0xd3, 0xb8, 0x91, 0xff, 0xc8, 0xb1, 0x8a, 0xff, 0xbb, 0xa6, 0x82, 0xff, 0xb5, 0xa1, 0x8b, 0xff, 0xad, 0x9c, 0x91, 0xff, 0x99, 0x91, 0x90, 0xff, 0x7e, 0x7b, 0x87, 0xff, 0x71, 0x75, 0x8a, 0xff, 0x74, 0x79, 0x91, 0xff, 0x79, 0x7d, 0x8e, 0xff, 0x7e, 0x7d, 0x88, 0xff, 0x7c, 0x78, 0x7d, 0xff, 0x76, 0x72, 0x77, 0xff, 0x78, 0x7d, 0x84, 0xff, 0xa1, 0xac, 0xbb, 0xff, 0xc1, 0xcb, 0xdf, 0xff, 0xdc, 0xe4, 0xef, 0xff, 0xdd, 0xe7, 0xf6, 0xff, 0xd8, 0xe5, 0xf8, 0xff, 0xe7, 0xef, 0xf9, 0xff, 0xda, 0xea, 0xf8, 0xff, 0xc6, 0xd5, 0xe3, 0xff, 0xca, 0xcf, 0xda, 0xff, 0xcd, 0xcf, 0xd7, 0xff, 0xbd, 0xc1, 0xc6, 0xff, 0xb9, 0xbc, 0xb8, 0xff, 0xb7, 0xbd, 0xbd, 0xff, 0x9b, 0xa8, 0xb5, 0xff, 0x87, 0x9b, 0xa8, 0xff, 0xc2, 0xba, 0xb2, 0xff, 0xd9, 0xc7, 0xac, 0xff, 0xd5, 0xc2, 0xa3, 0xff, 0xd4, 0xc3, 0xa9, 0xff, 0xcf, 0xc3, 0xa9, 0xff, 0xd0, 0xc3, 0xa9, 0xff, 0xd2, 0xc2, 0xaa, 0xff, 0xd2, 0xc3, 0xac, 0xff, 0xcf, 0xc2, 0xb3, 0xff, 0xc9, 0xbc, 0xb7, 0xff, 0xbe, 0xb6, 0xbb, 0xff, 0xb1, 0xa9, 0xbe, 0xff, 0x9e, 0x9a, 0xc1, 0xff, 0x90, 0x8c, 0xc6, 0xe8, 0x7a, 0x80, 0xc8, 0x62, 0x73, 0x78, 0xc2, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8a, 0x89, 0x9d, 0x0d, 0xa4, 0x9d, 0xa8, 0x93, 0xba, 0xab, 0xa7, 0xfb, 0xc2, 0xae, 0x9d, 0xff, 0xc8, 0xb2, 0x94, 0xff, 0xd2, 0xb9, 0x91, 0xff, 0xd4, 0xb9, 0x93, 0xff, 0xcd, 0xb3, 0x90, 0xff, 0xc1, 0xab, 0x88, 0xff, 0xba, 0xa5, 0x8d, 0xff, 0xac, 0x9e, 0x92, 0xff, 0x99, 0x93, 0x95, 0xff, 0x88, 0x86, 0x96, 0xff, 0x7c, 0x7f, 0x98, 0xff, 0x7e, 0x83, 0x9a, 0xff, 0x84, 0x85, 0x96, 0xff, 0x8a, 0x88, 0x91, 0xff, 0x8b, 0x8b, 0x90, 0xff, 0x96, 0x9c, 0xa3, 0xff, 0xc1, 0xcf, 0xdf, 0xff, 0xc2, 0xd5, 0xea, 0xff, 0xc6, 0xda, 0xf0, 0xff, 0xb3, 0xc6, 0xd7, 0xff, 0xb1, 0xca, 0xdc, 0xff, 0xa9, 0xc4, 0xda, 0xff, 0xae, 0xc7, 0xdc, 0xff, 0xa5, 0xc0, 0xd9, 0xff, 0xad, 0xc4, 0xda, 0xff, 0xb7, 0xc6, 0xd7, 0xff, 0xbf, 0xc9, 0xd7, 0xff, 0xc0, 0xca, 0xdd, 0xff, 0xb6, 0xbe, 0xcb, 0xff, 0xbb, 0xbc, 0xc3, 0xff, 0xb3, 0xb0, 0xae, 0xff, 0xb3, 0xb9, 0xb6, 0xff, 0x5e, 0x75, 0x8d, 0xff, 0x9d, 0xa4, 0xa8, 0xff, 0xd0, 0xc3, 0xb1, 0xff, 0xd1, 0xc0, 0xa5, 0xff, 0xd2, 0xc2, 0xa0, 0xff, 0xd0, 0xc0, 0xa3, 0xff, 0xd2, 0xc3, 0xa9, 0xff, 0xd4, 0xc4, 0xad, 0xff, 0xd1, 0xc1, 0xb2, 0xff, 0xc8, 0xbc, 0xb7, 0xff, 0xbd, 0xb5, 0xba, 0xff, 0xaf, 0xa6, 0xbd, 0xff, 0x9c, 0x9b, 0xbc, 0xff, 0x8d, 0x89, 0xc5, 0xff, 0x7b, 0x80, 0xc6, 0xfb, 0x7c, 0x80, 0xcb, 0x93, 0x7f, 0x83, 0xd2, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0x7e, 0x93, 0x16, 0x88, 0x87, 0x9c, 0xc0, 0x9c, 0x98, 0xa6, 0xff, 0xb2, 0xa7, 0xa5, 0xff, 0xbb, 0xa9, 0x9c, 0xff, 0xc2, 0xad, 0x91, 0xff, 0xc8, 0xb1, 0x8a, 0xff, 0xcb, 0xb3, 0x8b, 0xff, 0xc6, 0xaf, 0x88, 0xff, 0xbf, 0xa7, 0x85, 0xff, 0xb4, 0xa2, 0x8b, 0xff, 0xa4, 0x99, 0x90, 0xff, 0x92, 0x8d, 0x93, 0xff, 0x85, 0x84, 0x97, 0xff, 0x80, 0x81, 0x9c, 0xff, 0x84, 0x88, 0x9f, 0xff, 0x94, 0x97, 0xa9, 0xff, 0xa1, 0xa6, 0xb3, 0xff, 0xd6, 0xe1, 0xed, 0xff, 0xd9, 0xe9, 0xf6, 0xff, 0xdf, 0xee, 0xf8, 0xff, 0xd0, 0xe1, 0xf0, 0xff, 0xb7, 0xcb, 0xdd, 0xff, 0x9f, 0xb9, 0xd2, 0xff, 0x87, 0xa4, 0xc3, 0xff, 0x5d, 0x7b, 0x99, 0xff, 0x5e, 0x7e, 0x9c, 0xff, 0x7e, 0x9c, 0xbb, 0xff, 0x5e, 0x7a, 0x9a, 0xff, 0x69, 0x81, 0x9d, 0xff, 0x88, 0x9d, 0xb7, 0xff, 0xa6, 0xbc, 0xd2, 0xff, 0xac, 0xc1, 0xd6, 0xff, 0xae, 0xc2, 0xd4, 0xff, 0xa7, 0xb6, 0xc6, 0xff, 0xb6, 0xb4, 0xbb, 0xff, 0xae, 0xb3, 0xbe, 0xff, 0x5f, 0x6d, 0x82, 0xff, 0x6b, 0x77, 0x82, 0xff, 0xc1, 0xbc, 0xb0, 0xff, 0xd5, 0xc0, 0xa3, 0xff, 0xcd, 0xba, 0x9d, 0xff, 0xce, 0xc0, 0xa6, 0xff, 0xd1, 0xc1, 0xa8, 0xff, 0xd0, 0xc0, 0xae, 0xff, 0xc9, 0xbc, 0xb1, 0xff, 0xc0, 0xb3, 0xb6, 0xff, 0xae, 0xa5, 0xb8, 0xff, 0x98, 0x99, 0xb8, 0xff, 0x87, 0x87, 0xc0, 0xff, 0x7f, 0x82, 0xc3, 0xff, 0x80, 0x83, 0xcc, 0xff, 0x82, 0x84, 0xd2, 0xc0, 0x82, 0x85, 0xd3, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0x76, 0x85, 0x28, 0x7b, 0x7a, 0x8d, 0xdb, 0x85, 0x84, 0x9a, 0xff, 0x96, 0x94, 0xa3, 0xff, 0xaa, 0xa0, 0xa2, 0xff, 0xb2, 0xa3, 0x9a, 0xff, 0xb7, 0xa4, 0x8c, 0xff, 0xbc, 0xa7, 0x81, 0xff, 0xbf, 0xab, 0x81, 0xff, 0xbe, 0xa6, 0x80, 0xff, 0xb8, 0x9f, 0x7d, 0xff, 0xab, 0x9a, 0x84, 0xff, 0x9c, 0x92, 0x8c, 0xff, 0x8f, 0x87, 0x92, 0xff, 0x83, 0x83, 0x98, 0xff, 0x84, 0x8f, 0xa7, 0xff, 0xa8, 0xb8, 0xcc, 0xff, 0xce, 0xda, 0xeb, 0xff, 0xd2, 0xdf, 0xee, 0xff, 0xbc, 0xce, 0xdf, 0xff, 0x84, 0x9a, 0xad, 0xff, 0x97, 0xa4, 0xb2, 0xff, 0xa4, 0xb4, 0xc2, 0xff, 0x92, 0xa8, 0xbe, 0xff, 0x7a, 0x91, 0xaa, 0xff, 0x4b, 0x5e, 0x76, 0xff, 0x56, 0x69, 0x7f, 0xff, 0x3a, 0x52, 0x6f, 0xff, 0x22, 0x33, 0x48, 0xff, 0x5a, 0x73, 0x8e, 0xff, 0x3b, 0x56, 0x73, 0xff, 0x2e, 0x42, 0x58, 0xff, 0x46, 0x63, 0x7b, 0xff, 0x70, 0x8d, 0xa5, 0xff, 0x92, 0xb0, 0xc9, 0xff, 0x8f, 0xae, 0xca, 0xff, 0x94, 0xab, 0xc8, 0xff, 0xc1, 0xc7, 0xcf, 0xff, 0x9b, 0xa6, 0xb5, 0xff, 0x4f, 0x68, 0x83, 0xff, 0x48, 0x5a, 0x6e, 0xff, 0xa8, 0xa6, 0xa7, 0xff, 0xca, 0xbb, 0xa6, 0xff, 0xc6, 0xb8, 0x9c, 0xff, 0xcb, 0xbc, 0xa2, 0xff, 0xcc, 0xbc, 0xa5, 0xff, 0xc7, 0xb8, 0xa9, 0xff, 0xc0, 0xb0, 0xac, 0xff, 0xaf, 0xa2, 0xaf, 0xff, 0x95, 0x94, 0xac, 0xff, 0x86, 0x86, 0xb6, 0xff, 0x7f, 0x81, 0xbe, 0xff, 0x83, 0x83, 0xca, 0xff, 0x85, 0x86, 0xd2, 0xff, 0x84, 0x89, 0xd5, 0xdb, 0x86, 0x8c, 0xda, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x83, 0x81, 0x25, 0x80, 0x7b, 0x83, 0xe2, 0x7c, 0x7b, 0x8b, 0xff, 0x80, 0x81, 0x98, 0xff, 0x8d, 0x90, 0xa1, 0xff, 0x9f, 0x9a, 0xa0, 0xff, 0xaa, 0x9d, 0x97, 0xff, 0xb0, 0x9f, 0x87, 0xff, 0xb2, 0x9f, 0x78, 0xff, 0xb2, 0x9e, 0x79, 0xff, 0xb0, 0x9b, 0x75, 0xff, 0xa9, 0x98, 0x76, 0xff, 0x9e, 0x91, 0x83, 0xff, 0x94, 0x8b, 0x85, 0xff, 0x88, 0x83, 0x89, 0xff, 0x86, 0x8d, 0xa1, 0xff, 0xae, 0xc1, 0xd8, 0xff, 0xbb, 0xcf, 0xe3, 0xff, 0xc1, 0xcf, 0xe4, 0xff, 0x9e, 0xb0, 0xc6, 0xff, 0x95, 0xab, 0xc4, 0xff, 0x66, 0x7f, 0x9a, 0xff, 0x1c, 0x2d, 0x43, 0xff, 0x21, 0x32, 0x45, 0xff, 0x3b, 0x4d, 0x63, 0xff, 0x41, 0x58, 0x72, 0xff, 0x2d, 0x3e, 0x52, 0xff, 0x0e, 0x18, 0x24, 0xff, 0x21, 0x2d, 0x3e, 0xff, 0x27, 0x3c, 0x4c, 0xff, 0x0b, 0x17, 0x27, 0xff, 0x31, 0x40, 0x54, 0xff, 0x42, 0x5b, 0x74, 0xff, 0x24, 0x33, 0x46, 0xff, 0x15, 0x26, 0x38, 0xff, 0x62, 0x76, 0x8d, 0xff, 0x70, 0x89, 0xa4, 0xff, 0x89, 0xa5, 0xb8, 0xff, 0x7d, 0x9b, 0xb5, 0xff, 0x8d, 0xa9, 0xc1, 0xff, 0x75, 0x90, 0xa8, 0xff, 0x2b, 0x49, 0x6b, 0xff, 0x2a, 0x38, 0x4f, 0xff, 0x8b, 0x8f, 0x91, 0xff, 0xcf, 0xc6, 0xad, 0xff, 0xca, 0xb7, 0x9c, 0xff, 0xca, 0xb4, 0x9f, 0xff, 0xc4, 0xb1, 0xa1, 0xff, 0xbe, 0xac, 0xa0, 0xff, 0xad, 0x9f, 0xa0, 0xff, 0x9b, 0x8f, 0x9d, 0xff, 0x86, 0x84, 0xae, 0xff, 0x83, 0x82, 0xb8, 0xff, 0x85, 0x84, 0xc6, 0xff, 0x87, 0x86, 0xd0, 0xff, 0x87, 0x8a, 0xd4, 0xff, 0x8a, 0x8d, 0xda, 0xe2, 0x8a, 0x8c, 0xda, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x96, 0x7c, 0x28, 0x9f, 0x8d, 0x7e, 0xe1, 0x89, 0x80, 0x83, 0xff, 0x80, 0x7c, 0x8e, 0xff, 0x7a, 0x7f, 0x95, 0xff, 0x83, 0x8b, 0x9c, 0xff, 0x96, 0x98, 0x9d, 0xff, 0xa2, 0x99, 0x97, 0xff, 0xa9, 0x9a, 0x87, 0xff, 0xab, 0x9a, 0x75, 0xff, 0xa8, 0x96, 0x6f, 0xff, 0xa7, 0x93, 0x70, 0xff, 0xab, 0x90, 0x71, 0xff, 0xa1, 0x8a, 0x79, 0xff, 0x90, 0x89, 0x8c, 0xff, 0x9a, 0x9d, 0xab, 0xff, 0xb8, 0xc4, 0xd7, 0xff, 0xc9, 0xda, 0xee, 0xff, 0xd0, 0xdf, 0xed, 0xff, 0xa9, 0xbd, 0xd0, 0xff, 0xa6, 0xbc, 0xd2, 0xff, 0x74, 0x8b, 0xa6, 0xff, 0x30, 0x47, 0x62, 0xff, 0x28, 0x34, 0x46, 0xff, 0x17, 0x24, 0x35, 0xff, 0x16, 0x22, 0x34, 0xff, 0x31, 0x44, 0x5b, 0xff, 0x27, 0x34, 0x49, 0xff, 0x12, 0x18, 0x27, 0xff, 0x0a, 0x12, 0x1d, 0xff, 0x1b, 0x26, 0x36, 0xff, 0x23, 0x32, 0x3e, 0xff, 0x2f, 0x3a, 0x48, 0xff, 0x1b, 0x27, 0x3a, 0xff, 0x20, 0x29, 0x38, 0xff, 0x13, 0x1e, 0x2b, 0xff, 0x21, 0x31, 0x42, 0xff, 0x3d, 0x52, 0x69, 0xff, 0x63, 0x78, 0x8a, 0xff, 0x67, 0x80, 0x99, 0xff, 0x68, 0x82, 0x9b, 0xff, 0x6c, 0x87, 0xa0, 0xff, 0x3d, 0x56, 0x73, 0xff, 0x1c, 0x31, 0x4c, 0xff, 0x19, 0x29, 0x39, 0xff, 0x78, 0x7e, 0x7f, 0xff, 0xc2, 0xb7, 0xab, 0xff, 0xd8, 0xc0, 0xa5, 0xff, 0xc9, 0xb3, 0x99, 0xff, 0xc1, 0xad, 0x94, 0xff, 0xb0, 0x9d, 0x8c, 0xff, 0xa2, 0x8d, 0x88, 0xff, 0x89, 0x80, 0x9a, 0xff, 0x86, 0x81, 0xae, 0xff, 0x8a, 0x85, 0xbf, 0xff, 0x8b, 0x88, 0xcd, 0xff, 0x8b, 0x8b, 0xd5, 0xff, 0x8b, 0x8e, 0xdc, 0xff, 0x8b, 0x8c, 0xdc, 0xe1, 0x8b, 0x8c, 0xdc, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x9f, 0x96, 0x16, 0xa9, 0x96, 0x7e, 0xda, 0xa1, 0x8e, 0x7d, 0xff, 0x8f, 0x81, 0x82, 0xff, 0x80, 0x7b, 0x8d, 0xff, 0x7a, 0x80, 0x94, 0xff, 0x81, 0x8b, 0x99, 0xff, 0x8c, 0x92, 0x9a, 0xff, 0x98, 0x94, 0x94, 0xff, 0xa0, 0x95, 0x88, 0xff, 0xa6, 0x97, 0x79, 0xff, 0xa7, 0x97, 0x6e, 0xff, 0xa8, 0x97, 0x6f, 0xff, 0xab, 0x95, 0x70, 0xff, 0xa1, 0x95, 0x81, 0xff, 0x9f, 0xa9, 0xae, 0xff, 0xc4, 0xd5, 0xe7, 0xff, 0xc5, 0xd8, 0xea, 0xff, 0xbd, 0xd2, 0xe2, 0xff, 0xad, 0xc2, 0xd3, 0xff, 0x6e, 0x8a, 0x9f, 0xff, 0x2e, 0x46, 0x5a, 0xff, 0x2f, 0x40, 0x56, 0xff, 0x31, 0x40, 0x55, 0xff, 0x0f, 0x1c, 0x2c, 0xff, 0x1e, 0x29, 0x3a, 0xff, 0x14, 0x23, 0x37, 0xff, 0x25, 0x37, 0x4d, 0xff, 0x18, 0x27, 0x3d, 0xff, 0x1a, 0x26, 0x3a, 0xff, 0x12, 0x1d, 0x2d, 0xff, 0x19, 0x21, 0x30, 0xff, 0x17, 0x25, 0x34, 0xff, 0x30, 0x3d, 0x4a, 0xff, 0x0f, 0x10, 0x18, 0xff, 0x22, 0x27, 0x34, 0xff, 0x09, 0x0e, 0x18, 0xff, 0x1e, 0x25, 0x2f, 0xff, 0x43, 0x52, 0x61, 0xff, 0x28, 0x35, 0x43, 0xff, 0x37, 0x4d, 0x61, 0xff, 0x60, 0x79, 0x8e, 0xff, 0x44, 0x5d, 0x73, 0xff, 0x36, 0x4e, 0x69, 0xff, 0x17, 0x27, 0x3f, 0xff, 0x0f, 0x1b, 0x2c, 0xff, 0x2b, 0x3c, 0x55, 0xff, 0x5e, 0x64, 0x6e, 0xff, 0xb4, 0xa9, 0x97, 0xff, 0xd1, 0xbd, 0xa1, 0xff, 0xc5, 0xaf, 0x8f, 0xff, 0xb4, 0xa2, 0x83, 0xff, 0xa4, 0x8a, 0x75, 0xff, 0x90, 0x80, 0x8c, 0xff, 0x88, 0x81, 0xa5, 0xff, 0x8f, 0x87, 0xbc, 0xff, 0x90, 0x8a, 0xce, 0xff, 0x8e, 0x8d, 0xd7, 0xff, 0x8b, 0x8e, 0xdd, 0xff, 0x8c, 0x8d, 0xdd, 0xff, 0x8b, 0x8c, 0xdd, 0xda, 0x89, 0x8c, 0xdc, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, 0xa7, 0xb8, 0x0d, 0xa4, 0xa3, 0xae, 0xc1, 0xa3, 0x9b, 0x9a, 0xff, 0x99, 0x8c, 0x87, 0xff, 0x8a, 0x7e, 0x7f, 0xff, 0x80, 0x7d, 0x8a, 0xff, 0x7e, 0x80, 0x92, 0xff, 0x82, 0x89, 0x99, 0xff, 0x92, 0x94, 0x9d, 0xff, 0x99, 0x97, 0x97, 0xff, 0x9c, 0x98, 0x87, 0xff, 0xa5, 0x98, 0x7e, 0xff, 0xa9, 0x9a, 0x76, 0xff, 0xaf, 0x99, 0x74, 0xff, 0xaa, 0x9e, 0x90, 0xff, 0xb3, 0xc0, 0xd0, 0xff, 0xd0, 0xe9, 0xf5, 0xff, 0xc5, 0xde, 0xef, 0xff, 0xc3, 0xdb, 0xf1, 0xff, 0xae, 0xcb, 0xe4, 0xff, 0x7d, 0x9f, 0xbd, 0xff, 0x64, 0x81, 0xa0, 0xff, 0x36, 0x4a, 0x62, 0xff, 0x05, 0x11, 0x1f, 0xff, 0x11, 0x19, 0x28, 0xff, 0x1e, 0x2a, 0x40, 0xff, 0x13, 0x1f, 0x32, 0xff, 0x16, 0x27, 0x41, 0xff, 0x12, 0x25, 0x3f, 0xff, 0x16, 0x29, 0x43, 0xff, 0x03, 0x13, 0x30, 0xff, 0x04, 0x15, 0x2a, 0xff, 0x0d, 0x1e, 0x30, 0xff, 0x0a, 0x15, 0x29, 0xff, 0x0b, 0x15, 0x24, 0xff, 0x27, 0x33, 0x38, 0xff, 0x18, 0x1d, 0x23, 0xff, 0x1e, 0x20, 0x26, 0xff, 0x30, 0x36, 0x3d, 0xff, 0x19, 0x1e, 0x28, 0xff, 0x15, 0x1c, 0x25, 0xff, 0x3f, 0x50, 0x62, 0xff, 0x38, 0x50, 0x64, 0xff, 0x20, 0x3b, 0x53, 0xff, 0x1d, 0x33, 0x4c, 0xff, 0x1b, 0x24, 0x35, 0xff, 0x0e, 0x12, 0x1d, 0xff, 0x1d, 0x24, 0x2e, 0xff, 0x2c, 0x3c, 0x4d, 0xff, 0x65, 0x71, 0x7f, 0xff, 0x9e, 0x8f, 0x82, 0xff, 0xc3, 0xaf, 0x96, 0xff, 0xb1, 0xa2, 0x85, 0xff, 0xaa, 0x92, 0x7c, 0xff, 0x9b, 0x89, 0x98, 0xff, 0x90, 0x8b, 0xac, 0xff, 0x92, 0x8c, 0xc0, 0xff, 0x90, 0x8d, 0xd3, 0xff, 0x8e, 0x8e, 0xdb, 0xff, 0x8d, 0x8e, 0xdf, 0xff, 0x8e, 0x8f, 0xe0, 0xff, 0x8d, 0x8e, 0xe0, 0xff, 0x89, 0x8c, 0xde, 0xc1, 0x87, 0x8a, 0xdb, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, 0xbb, 0xfe, 0x03, 0x94, 0xb1, 0xda, 0x92, 0x94, 0xa3, 0xbd, 0xff, 0x99, 0x9e, 0xac, 0xff, 0x93, 0x8e, 0x9d, 0xff, 0x7f, 0x78, 0x7a, 0xff, 0x7b, 0x76, 0x80, 0xff, 0x7d, 0x7d, 0x8e, 0xff, 0x86, 0x88, 0x93, 0xff, 0x92, 0x93, 0x97, 0xff, 0x99, 0x96, 0x90, 0xff, 0xa1, 0x97, 0x85, 0xff, 0xa8, 0x98, 0x7e, 0xff, 0xad, 0x9a, 0x7b, 0xff, 0xaa, 0x97, 0x85, 0xff, 0xc1, 0xce, 0xd8, 0xff, 0xcf, 0xde, 0xe7, 0xff, 0x9a, 0xba, 0xd2, 0xff, 0x7a, 0x96, 0xb5, 0xff, 0x50, 0x70, 0x90, 0xff, 0x45, 0x62, 0x83, 0xff, 0x54, 0x70, 0x92, 0xff, 0x38, 0x55, 0x77, 0xff, 0x20, 0x2e, 0x4a, 0xff, 0x0c, 0x18, 0x31, 0xff, 0x23, 0x39, 0x54, 0xff, 0x48, 0x5f, 0x7c, 0xff, 0x61, 0x7b, 0xa7, 0xff, 0x5a, 0x79, 0xa5, 0xff, 0x61, 0x84, 0xb2, 0xff, 0x53, 0x78, 0xa9, 0xff, 0x5b, 0x7d, 0xae, 0xff, 0x4b, 0x69, 0x98, 0xff, 0x32, 0x52, 0x7b, 0xff, 0x4d, 0x6c, 0x93, 0xff, 0x29, 0x40, 0x5f, 0xff, 0x2c, 0x3e, 0x4f, 0xff, 0x15, 0x1d, 0x29, 0xff, 0x27, 0x28, 0x31, 0xff, 0x09, 0x0b, 0x10, 0xff, 0x20, 0x24, 0x2b, 0xff, 0x19, 0x1d, 0x21, 0xff, 0x4a, 0x55, 0x5c, 0xff, 0x09, 0x16, 0x25, 0xff, 0x18, 0x2a, 0x40, 0xff, 0x11, 0x21, 0x34, 0xff, 0x0b, 0x10, 0x1a, 0xff, 0x11, 0x12, 0x1b, 0xff, 0x05, 0x07, 0x10, 0xff, 0x06, 0x0b, 0x16, 0xff, 0x53, 0x5d, 0x6a, 0xff, 0x62, 0x6c, 0x7b, 0xff, 0x9f, 0x95, 0x93, 0xff, 0xc0, 0xab, 0x93, 0xff, 0xb0, 0x9b, 0x7d, 0xff, 0xa0, 0x8e, 0x9b, 0xff, 0x98, 0x90, 0xb1, 0xff, 0x98, 0x8f, 0xc5, 0xff, 0x94, 0x92, 0xd1, 0xff, 0x8f, 0x8e, 0xdd, 0xff, 0x8f, 0x90, 0xe0, 0xff, 0x8d, 0x8f, 0xe0, 0xff, 0x8c, 0x8f, 0xe0, 0xff, 0x8a, 0x8c, 0xde, 0xff, 0x88, 0x8c, 0xdd, 0x92, 0x87, 0x8a, 0xdb, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x77, 0xbc, 0xf7, 0x62, 0x7d, 0xb6, 0xea, 0xfb, 0x85, 0xa8, 0xd0, 0xff, 0x85, 0x9a, 0xb8, 0xff, 0x86, 0x8e, 0xa8, 0xff, 0x73, 0x73, 0x7b, 0xff, 0x70, 0x6e, 0x79, 0xff, 0x78, 0x78, 0x84, 0xff, 0x81, 0x83, 0x8d, 0xff, 0x8c, 0x8d, 0x8f, 0xff, 0x94, 0x90, 0x8a, 0xff, 0x9b, 0x92, 0x83, 0xff, 0xa5, 0x97, 0x80, 0xff, 0xa8, 0x97, 0x7a, 0xff, 0xb9, 0xb8, 0xb8, 0xff, 0x57, 0x76, 0x8f, 0xff, 0x37, 0x41, 0x52, 0xff, 0x27, 0x36, 0x41, 0xff, 0x36, 0x48, 0x62, 0xff, 0x1f, 0x35, 0x4f, 0xff, 0x1d, 0x30, 0x4d, 0xff, 0x14, 0x27, 0x45, 0xff, 0x0f, 0x21, 0x40, 0xff, 0x11, 0x2d, 0x5a, 0xff, 0x40, 0x5b, 0x88, 0xff, 0x96, 0xaf, 0xce, 0xff, 0xc4, 0xe1, 0xf6, 0xff, 0xac, 0xd0, 0xfa, 0xff, 0xa3, 0xca, 0xf4, 0xff, 0x9d, 0xc1, 0xee, 0xff, 0x95, 0xb8, 0xee, 0xff, 0x99, 0xbe, 0xf4, 0xff, 0x87, 0xaf, 0xe8, 0xff, 0x85, 0xa8, 0xe0, 0xff, 0x54, 0x78, 0xb1, 0xff, 0x41, 0x63, 0x9b, 0xff, 0x33, 0x50, 0x83, 0xff, 0x22, 0x39, 0x59, 0xff, 0x36, 0x45, 0x61, 0xff, 0x30, 0x3a, 0x4f, 0xff, 0x0a, 0x13, 0x24, 0xff, 0x27, 0x30, 0x42, 0xff, 0x10, 0x16, 0x20, 0xff, 0x13, 0x1a, 0x22, 0xff, 0x09, 0x13, 0x21, 0xff, 0x14, 0x1e, 0x2f, 0xff, 0x0a, 0x10, 0x18, 0xff, 0x08, 0x0e, 0x15, 0xff, 0x0a, 0x0c, 0x10, 0xff, 0x09, 0x0b, 0x10, 0xff, 0x13, 0x18, 0x21, 0xff, 0x40, 0x4b, 0x5b, 0xff, 0x56, 0x65, 0x70, 0xff, 0xb2, 0xa1, 0x97, 0xff, 0xb7, 0x9d, 0x88, 0xff, 0xa2, 0x95, 0x99, 0xff, 0x9b, 0x92, 0xb5, 0xff, 0x9c, 0x92, 0xc7, 0xff, 0x96, 0x94, 0xd1, 0xff, 0x91, 0x90, 0xde, 0xff, 0x8f, 0x90, 0xe1, 0xff, 0x8f, 0x91, 0xe1, 0xff, 0x8d, 0x90, 0xe1, 0xff, 0x8c, 0x8f, 0xe0, 0xff, 0x8a, 0x8d, 0xde, 0xfb, 0x8a, 0x8c, 0xdd, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0xc3, 0xff, 0x20, 0x4d, 0xbd, 0xff, 0xe8, 0x59, 0xba, 0xf9, 0xff, 0x68, 0xaa, 0xe1, 0xff, 0x6a, 0x95, 0xc4, 0xff, 0x74, 0x8c, 0xb1, 0xff, 0x6e, 0x75, 0x7f, 0xff, 0x69, 0x68, 0x6f, 0xff, 0x71, 0x71, 0x78, 0xff, 0x7a, 0x7c, 0x82, 0xff, 0x85, 0x83, 0x84, 0xff, 0x8a, 0x86, 0x81, 0xff, 0x92, 0x8b, 0x7d, 0xff, 0x9a, 0x8e, 0x7a, 0xff, 0xa1, 0x95, 0x7f, 0xff, 0xae, 0xa4, 0x99, 0xff, 0x79, 0x8b, 0x96, 0xff, 0x50, 0x5f, 0x75, 0xff, 0x49, 0x64, 0x80, 0xff, 0x33, 0x46, 0x63, 0xff, 0x1b, 0x2b, 0x42, 0xff, 0x1f, 0x2d, 0x44, 0xff, 0x03, 0x11, 0x30, 0xff, 0x53, 0x68, 0x8d, 0xff, 0x89, 0xa5, 0xce, 0xff, 0xb8, 0xcf, 0xef, 0xff, 0xe9, 0xf4, 0xfe, 0xff, 0xeb, 0xf7, 0xfb, 0xff, 0xc7, 0xe1, 0xf4, 0xff, 0xcc, 0xe6, 0xfa, 0xff, 0xd3, 0xed, 0xfb, 0xff, 0xc3, 0xe3, 0xf7, 0xff, 0xc2, 0xe2, 0xfc, 0xff, 0xb0, 0xd0, 0xf5, 0xff, 0xa0, 0xc4, 0xf2, 0xff, 0x88, 0xaf, 0xe0, 0xff, 0x6d, 0x95, 0xc5, 0xff, 0x72, 0x97, 0xc5, 0xff, 0x5e, 0x81, 0xae, 0xff, 0x59, 0x74, 0x9f, 0xff, 0x29, 0x40, 0x68, 0xff, 0x1f, 0x37, 0x5c, 0xff, 0x24, 0x39, 0x5a, 0xff, 0x14, 0x24, 0x42, 0xff, 0x13, 0x1d, 0x2f, 0xff, 0x15, 0x20, 0x2f, 0xff, 0x15, 0x1e, 0x2b, 0xff, 0x07, 0x09, 0x10, 0xff, 0x05, 0x09, 0x0d, 0xff, 0x08, 0x08, 0x0a, 0xff, 0x06, 0x07, 0x0a, 0xff, 0x03, 0x04, 0x09, 0xff, 0x0c, 0x12, 0x1b, 0xff, 0x03, 0x0e, 0x16, 0xff, 0x6f, 0x69, 0x67, 0xff, 0xb7, 0xaa, 0x9f, 0xff, 0xa6, 0x96, 0x9a, 0xff, 0x9c, 0x93, 0xb3, 0xff, 0x9c, 0x93, 0xc6, 0xff, 0x95, 0x94, 0xd0, 0xff, 0x91, 0x91, 0xde, 0xff, 0x91, 0x91, 0xe2, 0xff, 0x90, 0x92, 0xe2, 0xff, 0x8e, 0x91, 0xe2, 0xff, 0x8c, 0x8f, 0xe0, 0xff, 0x8c, 0x8e, 0xdf, 0xff, 0x8d, 0x8f, 0xe0, 0xe8, 0x8c, 0x8d, 0xde, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0xc4, 0xff, 0x05, 0x30, 0xc6, 0xff, 0xc0, 0x3a, 0xbe, 0xfe, 0xff, 0x43, 0xbd, 0xfe, 0xff, 0x53, 0xaf, 0xea, 0xff, 0x63, 0x9c, 0xd1, 0xff, 0x70, 0x8e, 0xb8, 0xff, 0x6e, 0x75, 0x7d, 0xff, 0x77, 0x72, 0x72, 0xff, 0x76, 0x76, 0x7a, 0xff, 0x76, 0x76, 0x7b, 0xff, 0x81, 0x7e, 0x7f, 0xff, 0x85, 0x80, 0x7b, 0xff, 0x89, 0x81, 0x76, 0xff, 0x8f, 0x87, 0x77, 0xff, 0x90, 0x89, 0x76, 0xff, 0x95, 0x85, 0x7a, 0xff, 0xa9, 0xb5, 0xbf, 0xff, 0xb8, 0xc4, 0xd7, 0xff, 0x5e, 0x79, 0x8d, 0xff, 0x18, 0x33, 0x53, 0xff, 0x1b, 0x2d, 0x44, 0xff, 0x10, 0x1c, 0x31, 0xff, 0x68, 0x81, 0xa7, 0xff, 0xa5, 0xc7, 0xf7, 0xff, 0xcc, 0xe0, 0xf5, 0xff, 0xfb, 0xfd, 0xfd, 0xff, 0xff, 0xfe, 0xf8, 0xff, 0xf0, 0xf5, 0xf7, 0xff, 0xd8, 0xed, 0xfa, 0xff, 0xd8, 0xee, 0xfc, 0xff, 0xcc, 0xe7, 0xf5, 0xff, 0xbc, 0xdf, 0xf5, 0xff, 0xb6, 0xd3, 0xf6, 0xff, 0xb1, 0xcb, 0xfb, 0xff, 0xa4, 0xc2, 0xf0, 0xff, 0x9e, 0xc0, 0xee, 0xff, 0x94, 0xb4, 0xe2, 0xff, 0x98, 0xb3, 0xdb, 0xff, 0x75, 0x98, 0xc4, 0xff, 0x77, 0x96, 0xc5, 0xff, 0x4d, 0x6a, 0x9c, 0xff, 0x3f, 0x5e, 0x90, 0xff, 0x32, 0x4f, 0x7c, 0xff, 0x2e, 0x46, 0x75, 0xff, 0x1d, 0x31, 0x56, 0xff, 0x10, 0x23, 0x38, 0xff, 0x0b, 0x15, 0x20, 0xff, 0x09, 0x0b, 0x10, 0xff, 0x08, 0x04, 0x06, 0xff, 0x04, 0x04, 0x0a, 0xff, 0x01, 0x03, 0x06, 0xff, 0x03, 0x04, 0x04, 0xff, 0x09, 0x09, 0x08, 0xff, 0x08, 0x08, 0x06, 0xff, 0x02, 0x05, 0x05, 0xff, 0x81, 0x81, 0x7e, 0xff, 0xb5, 0xa2, 0xad, 0xff, 0x9c, 0x95, 0xb4, 0xff, 0x9b, 0x93, 0xc5, 0xff, 0x94, 0x94, 0xd0, 0xff, 0x92, 0x92, 0xdd, 0xff, 0x92, 0x92, 0xe3, 0xff, 0x91, 0x93, 0xe3, 0xff, 0x8f, 0x92, 0xe4, 0xff, 0x8e, 0x91, 0xe2, 0xff, 0x8d, 0x90, 0xe1, 0xff, 0x8f, 0x90, 0xe1, 0xff, 0x8f, 0x90, 0xe1, 0xc0, 0x91, 0x91, 0xdf, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0xc0, 0xfd, 0x53, 0x1e, 0xc5, 0xff, 0xfa, 0x35, 0xc5, 0xfc, 0xff, 0x3a, 0xc0, 0xff, 0xff, 0x52, 0xb6, 0xf5, 0xff, 0x64, 0xa3, 0xd6, 0xff, 0x6f, 0x91, 0xba, 0xff, 0x76, 0x7d, 0x81, 0xff, 0x89, 0x81, 0x7f, 0xff, 0x8b, 0x85, 0x83, 0xff, 0x83, 0x80, 0x7d, 0xff, 0x82, 0x80, 0x7c, 0xff, 0x8b, 0x85, 0x7f, 0xff, 0x88, 0x80, 0x76, 0xff, 0x8b, 0x82, 0x76, 0xff, 0x85, 0x7e, 0x72, 0xff, 0xa2, 0xa6, 0xa8, 0xff, 0xbe, 0xce, 0xdf, 0xff, 0x9b, 0xb7, 0xd3, 0xff, 0x59, 0x77, 0x98, 0xff, 0x1b, 0x32, 0x54, 0xff, 0x0e, 0x24, 0x41, 0xff, 0x86, 0xa4, 0xc5, 0xff, 0xcc, 0xe0, 0xfe, 0xff, 0xeb, 0xf4, 0xfb, 0xff, 0xfd, 0xfe, 0xfd, 0xff, 0xfe, 0xfd, 0xf9, 0xff, 0xfa, 0xfd, 0xfc, 0xff, 0xee, 0xf7, 0xf9, 0xff, 0xda, 0xea, 0xf6, 0xff, 0xd4, 0xe8, 0xf6, 0xff, 0xcb, 0xe2, 0xf5, 0xff, 0xb8, 0xd5, 0xf3, 0xff, 0xb2, 0xcf, 0xf7, 0xff, 0xad, 0xc7, 0xf4, 0xff, 0xaa, 0xc7, 0xf0, 0xff, 0x9d, 0xbc, 0xe8, 0xff, 0x97, 0xb5, 0xe2, 0xff, 0x9f, 0xb5, 0xdc, 0xff, 0xa0, 0xba, 0xe0, 0xff, 0x92, 0xae, 0xd5, 0xff, 0x7e, 0x9a, 0xc5, 0xff, 0x66, 0x83, 0xaf, 0xff, 0x51, 0x6e, 0x9c, 0xff, 0x41, 0x5d, 0x8f, 0xff, 0x2d, 0x45, 0x6f, 0xff, 0x14, 0x27, 0x42, 0xff, 0x09, 0x12, 0x20, 0xff, 0x12, 0x12, 0x19, 0xff, 0x07, 0x09, 0x0a, 0xff, 0x05, 0x08, 0x09, 0xff, 0x09, 0x0b, 0x0c, 0xff, 0x05, 0x07, 0x08, 0xff, 0x02, 0x04, 0x05, 0xff, 0x09, 0x08, 0x0d, 0xff, 0x0d, 0x0e, 0x13, 0xff, 0x24, 0x27, 0x2c, 0xff, 0x77, 0x77, 0x80, 0xff, 0xa9, 0xa3, 0xc0, 0xff, 0x9f, 0x9c, 0xc5, 0xff, 0x9c, 0x99, 0xd4, 0xff, 0x99, 0x96, 0xdc, 0xff, 0x95, 0x94, 0xe1, 0xff, 0x92, 0x92, 0xe6, 0xff, 0x8f, 0x91, 0xe5, 0xff, 0x8d, 0x91, 0xe4, 0xff, 0x8e, 0x92, 0xe4, 0xff, 0x90, 0x91, 0xe1, 0xff, 0x91, 0x91, 0xe0, 0xfa, 0x91, 0x90, 0xdf, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb5, 0xfc, 0x0c, 0x00, 0xc1, 0xfe, 0xdd, 0x05, 0xc5, 0xfe, 0xff, 0x1d, 0xc6, 0xfc, 0xff, 0x2d, 0xc4, 0xff, 0xff, 0x4d, 0xb5, 0xf1, 0xff, 0x62, 0x9c, 0xcf, 0xff, 0x76, 0x94, 0xba, 0xff, 0x90, 0x95, 0x96, 0xff, 0x9a, 0x8f, 0x87, 0xff, 0x9d, 0x95, 0x8c, 0xff, 0x95, 0x91, 0x87, 0xff, 0x8d, 0x87, 0x7f, 0xff, 0x94, 0x8e, 0x87, 0xff, 0x8d, 0x8a, 0x7c, 0xff, 0x8a, 0x82, 0x71, 0xff, 0x9e, 0xa3, 0xac, 0xff, 0xd6, 0xe2, 0xf2, 0xff, 0xd9, 0xe9, 0xf9, 0xff, 0xad, 0xc8, 0xe2, 0xff, 0x6c, 0x8c, 0xad, 0xff, 0x36, 0x58, 0x7e, 0xff, 0xa8, 0xbb, 0xcd, 0xff, 0xec, 0xfd, 0xff, 0xff, 0xfd, 0xff, 0xfb, 0xff, 0xfc, 0xfd, 0xfd, 0xff, 0xff, 0xfc, 0xf9, 0xff, 0xfe, 0xfc, 0xfb, 0xff, 0xf7, 0xfc, 0xff, 0xff, 0xe0, 0xec, 0xf5, 0xff, 0xdc, 0xeb, 0xf6, 0xff, 0xd9, 0xea, 0xf6, 0xff, 0xcc, 0xe2, 0xf2, 0xff, 0xbd, 0xd7, 0xf4, 0xff, 0xb6, 0xd1, 0xf7, 0xff, 0xb3, 0xcb, 0xf5, 0xff, 0xac, 0xc8, 0xf5, 0xff, 0xa4, 0xc1, 0xee, 0xff, 0xa5, 0xbf, 0xea, 0xff, 0xae, 0xc6, 0xef, 0xff, 0xaf, 0xc8, 0xed, 0xff, 0x96, 0xb1, 0xd6, 0xff, 0x9b, 0xb4, 0xd9, 0xff, 0x8f, 0xa9, 0xce, 0xff, 0x75, 0x91, 0xb8, 0xff, 0x56, 0x72, 0x9a, 0xff, 0x3b, 0x53, 0x78, 0xff, 0x3d, 0x53, 0x6d, 0xff, 0x1e, 0x2c, 0x3a, 0xff, 0x06, 0x07, 0x0e, 0xff, 0x06, 0x03, 0x07, 0xff, 0x04, 0x06, 0x07, 0xff, 0x04, 0x06, 0x07, 0xff, 0x09, 0x0b, 0x0c, 0xff, 0x06, 0x08, 0x09, 0xff, 0x06, 0x07, 0x08, 0xff, 0x15, 0x16, 0x1a, 0xff, 0x19, 0x1b, 0x1f, 0xff, 0x00, 0x00, 0x00, 0xff, 0x86, 0x83, 0x96, 0xff, 0xb2, 0xab, 0xca, 0xff, 0xab, 0xa2, 0xd2, 0xff, 0xa5, 0xa0, 0xdb, 0xff, 0x9f, 0x9e, 0xe3, 0xff, 0x9b, 0x9a, 0xe3, 0xff, 0x96, 0x99, 0xe2, 0xff, 0x94, 0x96, 0xe2, 0xff, 0x92, 0x94, 0xe2, 0xff, 0x91, 0x92, 0xe0, 0xff, 0x91, 0x91, 0xdf, 0xff, 0x92, 0x92, 0xdc, 0xdd, 0x93, 0x93, 0xd9, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xb9, 0xfe, 0x80, 0x00, 0xc1, 0xfe, 0xff, 0x01, 0xc6, 0xff, 0xff, 0x12, 0xc6, 0xfc, 0xff, 0x27, 0xc4, 0xff, 0xff, 0x52, 0xb7, 0xf2, 0xff, 0x6f, 0xa2, 0xd4, 0xff, 0x88, 0xa1, 0xc4, 0xff, 0xa1, 0xa1, 0x9c, 0xff, 0xaa, 0x9c, 0x8e, 0xff, 0xab, 0xa0, 0x8e, 0xff, 0xa6, 0xa0, 0x8f, 0xff, 0x9e, 0x94, 0x87, 0xff, 0xad, 0x9f, 0x93, 0xff, 0x9b, 0x97, 0x87, 0xff, 0x9d, 0xa3, 0xa5, 0xff, 0xc3, 0xd6, 0xea, 0xff, 0xc7, 0xdc, 0xf1, 0xff, 0xcf, 0xe2, 0xf3, 0xff, 0xba, 0xd3, 0xeb, 0xff, 0x82, 0xa5, 0xc4, 0xff, 0x83, 0xa6, 0xc7, 0xff, 0xf6, 0xfa, 0xfd, 0xff, 0xff, 0xfe, 0xf8, 0xff, 0xf6, 0xfc, 0xfe, 0xff, 0xfe, 0xfd, 0xf9, 0xff, 0xfe, 0xfc, 0xfb, 0xff, 0xfc, 0xfc, 0xfd, 0xff, 0xf8, 0xfb, 0xfd, 0xff, 0xef, 0xf8, 0xfb, 0xff, 0xeb, 0xf5, 0xf8, 0xff, 0xe0, 0xef, 0xf8, 0xff, 0xcf, 0xe8, 0xf7, 0xff, 0xbf, 0xde, 0xf6, 0xff, 0xb3, 0xd3, 0xf5, 0xff, 0xaf, 0xcd, 0xf2, 0xff, 0xa9, 0xc7, 0xf4, 0xff, 0xae, 0xc9, 0xf1, 0xff, 0xba, 0xd4, 0xf6, 0xff, 0xbf, 0xda, 0xfc, 0xff, 0xad, 0xc6, 0xf1, 0xff, 0x9b, 0xb4, 0xdb, 0xff, 0xa0, 0xba, 0xdd, 0xff, 0x9a, 0xb4, 0xd4, 0xff, 0x94, 0xaf, 0xd0, 0xff, 0x8c, 0xa9, 0xca, 0xff, 0x4f, 0x6a, 0x88, 0xff, 0x22, 0x35, 0x4f, 0xff, 0x15, 0x1e, 0x2d, 0xff, 0x09, 0x0b, 0x14, 0xff, 0x04, 0x06, 0x0a, 0xff, 0x02, 0x05, 0x07, 0xff, 0x01, 0x02, 0x03, 0xff, 0x01, 0x03, 0x04, 0xff, 0x06, 0x09, 0x09, 0xff, 0x08, 0x09, 0x0a, 0xff, 0x03, 0x05, 0x06, 0xff, 0x16, 0x18, 0x1b, 0xff, 0x05, 0x0a, 0x0e, 0xff, 0x8c, 0x8c, 0x91, 0xff, 0xc2, 0xb6, 0xca, 0xff, 0xb8, 0xac, 0xcf, 0xff, 0xb6, 0xaf, 0xda, 0xff, 0xb0, 0xab, 0xde, 0xff, 0xac, 0xa6, 0xe0, 0xff, 0xa8, 0xa5, 0xdf, 0xff, 0xa5, 0xa4, 0xde, 0xff, 0xa2, 0xa0, 0xdd, 0xff, 0x9e, 0x9d, 0xdb, 0xff, 0x99, 0x99, 0xd8, 0xff, 0x94, 0x97, 0xd6, 0xff, 0x93, 0x95, 0xd4, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0xb0, 0xfa, 0x13, 0x0d, 0xb6, 0xfc, 0xdf, 0x05, 0xc1, 0xfc, 0xff, 0x11, 0xc8, 0xff, 0xff, 0x23, 0xc7, 0xfe, 0xff, 0x37, 0xc2, 0xff, 0xff, 0x65, 0xbb, 0xf5, 0xff, 0x7d, 0xac, 0xdd, 0xff, 0x94, 0xab, 0xce, 0xff, 0xa5, 0xa5, 0x9e, 0xff, 0xb4, 0xa5, 0x92, 0xff, 0xb5, 0xa8, 0x94, 0xff, 0xb1, 0xa6, 0x94, 0xff, 0xaa, 0x9e, 0x8e, 0xff, 0xb7, 0xaa, 0x98, 0xff, 0xaf, 0xa3, 0x98, 0xff, 0xaf, 0xc6, 0xdb, 0xff, 0xad, 0xc7, 0xda, 0xff, 0xae, 0xc3, 0xe1, 0xff, 0xba, 0xd6, 0xe3, 0xff, 0xbc, 0xd2, 0xec, 0xff, 0x82, 0xaa, 0xcf, 0xff, 0xd6, 0xe5, 0xec, 0xff, 0xfc, 0xfd, 0xfe, 0xff, 0xfa, 0xfa, 0xfe, 0xff, 0xfe, 0xfc, 0xfa, 0xff, 0xfc, 0xfb, 0xfd, 0xff, 0xfd, 0xfa, 0xff, 0xff, 0xfd, 0xfb, 0xfd, 0xff, 0xfd, 0xfb, 0xfb, 0xff, 0xf8, 0xfc, 0xfa, 0xff, 0xed, 0xf7, 0xf7, 0xff, 0xd9, 0xeb, 0xf6, 0xff, 0xc6, 0xe3, 0xf5, 0xff, 0xb6, 0xdb, 0xf0, 0xff, 0xb0, 0xd4, 0xf2, 0xff, 0xab, 0xce, 0xf1, 0xff, 0xa8, 0xca, 0xf2, 0xff, 0xb4, 0xcf, 0xf5, 0xff, 0xbd, 0xd7, 0xf9, 0xff, 0xb5, 0xd2, 0xf4, 0xff, 0x9d, 0xb9, 0xe8, 0xff, 0x82, 0x9b, 0xc6, 0xff, 0x92, 0xac, 0xd0, 0xff, 0x9f, 0xbb, 0xdc, 0xff, 0x9e, 0xb8, 0xd7, 0xff, 0xa4, 0xbf, 0xd8, 0xff, 0x8c, 0xa6, 0xc1, 0xff, 0x38, 0x4c, 0x68, 0xff, 0x18, 0x21, 0x36, 0xff, 0x06, 0x08, 0x10, 0xff, 0x06, 0x0a, 0x0f, 0xff, 0x01, 0x03, 0x04, 0xff, 0x02, 0x04, 0x05, 0xff, 0x02, 0x03, 0x04, 0xff, 0x09, 0x0a, 0x0c, 0xff, 0x08, 0x08, 0x08, 0xff, 0x0e, 0x0f, 0x0f, 0xff, 0x08, 0x0a, 0x0c, 0xff, 0x12, 0x15, 0x18, 0xff, 0x58, 0x59, 0x5a, 0xff, 0xb9, 0xb1, 0xbb, 0xff, 0xc2, 0xb6, 0xcb, 0xff, 0xc1, 0xb6, 0xd4, 0xff, 0xbe, 0xb5, 0xdb, 0xff, 0xba, 0xb2, 0xde, 0xff, 0xba, 0xb1, 0xdc, 0xff, 0xb7, 0xb1, 0xda, 0xff, 0xb3, 0xae, 0xda, 0xff, 0xac, 0xaa, 0xd7, 0xff, 0xa5, 0xa4, 0xd3, 0xff, 0x9d, 0x9f, 0xd1, 0xff, 0x99, 0x9a, 0xd0, 0xdf, 0x97, 0x99, 0xd0, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x9d, 0xe2, 0x64, 0x19, 0xb2, 0xfd, 0xff, 0x07, 0xc0, 0xfd, 0xff, 0x11, 0xc8, 0xff, 0xff, 0x1d, 0xc8, 0xfd, 0xff, 0x31, 0xc4, 0xff, 0xff, 0x57, 0xbe, 0xf6, 0xff, 0x7a, 0xad, 0xdc, 0xff, 0x8d, 0xa5, 0xc9, 0xff, 0xa7, 0xa8, 0xa1, 0xff, 0xb6, 0xa7, 0x92, 0xff, 0xb8, 0xa9, 0x97, 0xff, 0xb5, 0xa8, 0x96, 0xff, 0xb3, 0xa7, 0x96, 0xff, 0xba, 0xae, 0x9f, 0xff, 0xb7, 0xb4, 0xad, 0xff, 0x99, 0xb6, 0xd4, 0xff, 0xa2, 0xb3, 0xc1, 0xff, 0xa5, 0xc0, 0xe3, 0xff, 0xc6, 0xe0, 0xf0, 0xff, 0x9e, 0xbf, 0xe2, 0xff, 0x96, 0xbb, 0xd8, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfc, 0xfc, 0xfb, 0xff, 0xfd, 0xfc, 0xfc, 0xff, 0xfe, 0xfc, 0xfc, 0xff, 0xfa, 0xfc, 0xfd, 0xff, 0xfd, 0xfc, 0xfc, 0xff, 0xfa, 0xfc, 0xfb, 0xff, 0xfa, 0xfe, 0xfd, 0xff, 0xf1, 0xf4, 0xf7, 0xff, 0xe0, 0xee, 0xf1, 0xff, 0xd7, 0xea, 0xf4, 0xff, 0xc6, 0xe0, 0xf5, 0xff, 0xbd, 0xdb, 0xf5, 0xff, 0xbf, 0xdc, 0xf4, 0xff, 0xbe, 0xdc, 0xf5, 0xff, 0xc2, 0xdd, 0xf7, 0xff, 0xbc, 0xd8, 0xf5, 0xff, 0xb5, 0xd0, 0xf6, 0xff, 0xb2, 0xc8, 0xf5, 0xff, 0x94, 0xb1, 0xe0, 0xff, 0x6d, 0x84, 0xb2, 0xff, 0x75, 0x8d, 0xb8, 0xff, 0x6e, 0x8b, 0xb4, 0xff, 0x75, 0x8f, 0xb5, 0xff, 0x8a, 0x9f, 0xbd, 0xff, 0xa7, 0xc1, 0xdd, 0xff, 0x51, 0x6a, 0x88, 0xff, 0x21, 0x2e, 0x48, 0xff, 0x08, 0x0b, 0x15, 0xff, 0x04, 0x05, 0x0c, 0xff, 0x02, 0x04, 0x07, 0xff, 0x01, 0x03, 0x04, 0xff, 0x03, 0x03, 0x04, 0xff, 0x06, 0x05, 0x07, 0xff, 0x0a, 0x0a, 0x0a, 0xff, 0x08, 0x08, 0x08, 0xff, 0x17, 0x17, 0x17, 0xff, 0x36, 0x37, 0x37, 0xff, 0x33, 0x37, 0x37, 0xff, 0x57, 0x59, 0x59, 0xff, 0xc9, 0xbf, 0xc6, 0xff, 0xd1, 0xc1, 0xce, 0xff, 0xca, 0xbf, 0xd4, 0xff, 0xc3, 0xbc, 0xd7, 0xff, 0xc4, 0xbc, 0xd7, 0xff, 0xc4, 0xbb, 0xd5, 0xff, 0xbf, 0xb8, 0xd4, 0xff, 0xb7, 0xb3, 0xd0, 0xff, 0xae, 0xae, 0xcb, 0xff, 0xa9, 0xa8, 0xc9, 0xff, 0xa2, 0xa2, 0xc9, 0xff, 0x9b, 0x9d, 0xcb, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x7b, 0x96, 0x07, 0x44, 0x9c, 0xd6, 0xe3, 0x27, 0xb1, 0xf8, 0xff, 0x11, 0xbc, 0xfc, 0xff, 0x11, 0xc1, 0xff, 0xff, 0x1e, 0xc2, 0xfe, 0xff, 0x2d, 0xbf, 0xff, 0xff, 0x4c, 0xb5, 0xee, 0xff, 0x69, 0xa0, 0xca, 0xff, 0x83, 0x9d, 0xbe, 0xff, 0xa3, 0xa2, 0x9f, 0xff, 0xaf, 0x9b, 0x8c, 0xff, 0xaf, 0xa0, 0x90, 0xff, 0xb1, 0xa3, 0x94, 0xff, 0xb2, 0xa6, 0x97, 0xff, 0xbd, 0xad, 0xa2, 0xff, 0x9e, 0xb6, 0xbd, 0xff, 0x96, 0xac, 0xc0, 0xff, 0xb0, 0xb6, 0xcf, 0xff, 0xa8, 0xd0, 0xe4, 0xff, 0xb7, 0xca, 0xeb, 0xff, 0x6b, 0xa0, 0xc9, 0xff, 0xd7, 0xe3, 0xec, 0xff, 0xfe, 0xfe, 0xfd, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0xff, 0xfe, 0xf9, 0xff, 0xff, 0xfd, 0xfc, 0xff, 0xfa, 0xfd, 0xfe, 0xff, 0xe5, 0xf0, 0xf6, 0xff, 0xdb, 0xeb, 0xf8, 0xff, 0xe1, 0xf1, 0xfb, 0xff, 0xe2, 0xf6, 0xfe, 0xff, 0xdd, 0xf7, 0xfe, 0xff, 0xc5, 0xe0, 0xf5, 0xff, 0xb7, 0xd3, 0xe3, 0xff, 0xae, 0xce, 0xd3, 0xff, 0xae, 0xc9, 0xce, 0xff, 0xb0, 0xc9, 0xc9, 0xff, 0xb8, 0xd2, 0xdc, 0xff, 0xb6, 0xcc, 0xf0, 0xff, 0xa4, 0xbd, 0xe2, 0xff, 0x70, 0x89, 0xb6, 0xff, 0x56, 0x70, 0xa4, 0xff, 0x59, 0x74, 0xa9, 0xff, 0x54, 0x71, 0xa2, 0xff, 0x38, 0x55, 0x82, 0xff, 0x55, 0x70, 0x94, 0xff, 0x6b, 0x86, 0xaa, 0xff, 0x33, 0x43, 0x5f, 0xff, 0x10, 0x19, 0x28, 0xff, 0x06, 0x09, 0x15, 0xff, 0x07, 0x09, 0x10, 0xff, 0x01, 0x05, 0x09, 0xff, 0x02, 0x03, 0x06, 0xff, 0x01, 0x02, 0x03, 0xff, 0x05, 0x04, 0x05, 0xff, 0x0d, 0x0d, 0x0d, 0xff, 0x20, 0x20, 0x20, 0xff, 0x44, 0x45, 0x45, 0xff, 0x2b, 0x30, 0x2e, 0xff, 0x66, 0x69, 0x63, 0xff, 0xb5, 0xae, 0xac, 0xff, 0xd8, 0xca, 0xca, 0xff, 0xd7, 0xca, 0xc9, 0xff, 0xd3, 0xc8, 0xcd, 0xff, 0xce, 0xc7, 0xd2, 0xff, 0xcf, 0xc6, 0xcf, 0xff, 0xcc, 0xc3, 0xca, 0xff, 0xc3, 0xbd, 0xc5, 0xff, 0xba, 0xb9, 0xc1, 0xff, 0xb2, 0xb0, 0xbf, 0xff, 0xa9, 0xab, 0xbe, 0xff, 0x9e, 0xa3, 0xbe, 0xe3, 0x99, 0xa2, 0xbd, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x97, 0xb0, 0x50, 0x61, 0xa3, 0xce, 0xfb, 0x48, 0xaf, 0xea, 0xff, 0x3a, 0xb6, 0xf6, 0xff, 0x30, 0xba, 0xfe, 0xff, 0x33, 0xba, 0xf9, 0xff, 0x40, 0xb7, 0xfb, 0xff, 0x5d, 0xac, 0xe6, 0xff, 0x6e, 0x9d, 0xc6, 0xff, 0x80, 0x9a, 0xb9, 0xff, 0x89, 0x8b, 0x89, 0xff, 0x9b, 0x8c, 0x80, 0xff, 0x9b, 0x8f, 0x86, 0xff, 0x9b, 0x90, 0x88, 0xff, 0xaa, 0xa0, 0x98, 0xff, 0xa8, 0xa1, 0x9b, 0xff, 0x8e, 0xa7, 0xbf, 0xff, 0x9d, 0xa8, 0xb3, 0xff, 0xa9, 0xc3, 0xe1, 0xff, 0xb7, 0xd4, 0xed, 0xff, 0x88, 0xae, 0xd7, 0xff, 0x77, 0xa0, 0xbd, 0xff, 0xf1, 0xf8, 0xfb, 0xff, 0xfe, 0xfd, 0xfb, 0xff, 0xfd, 0xfc, 0xfc, 0xff, 0xfb, 0xfc, 0xfd, 0xff, 0xfa, 0xfd, 0xfc, 0xff, 0xee, 0xf5, 0xfb, 0xff, 0xf2, 0xf6, 0xfe, 0xff, 0xe6, 0xef, 0xf8, 0xff, 0xd3, 0xe4, 0xf2, 0xff, 0xdc, 0xeb, 0xf8, 0xff, 0xda, 0xe2, 0xe5, 0xff, 0xa3, 0xb0, 0xb9, 0xff, 0x69, 0x7a, 0x80, 0xff, 0x40, 0x4d, 0x50, 0xff, 0x1b, 0x2d, 0x2d, 0xff, 0x19, 0x2b, 0x29, 0xff, 0x00, 0x1a, 0x1a, 0xff, 0x7c, 0x6d, 0x56, 0xff, 0x96, 0x87, 0x70, 0xff, 0x2a, 0x3a, 0x43, 0xff, 0x96, 0xab, 0xbb, 0xff, 0x9b, 0xb3, 0xd5, 0xff, 0x69, 0x81, 0xb2, 0xff, 0x5e, 0x76, 0xa9, 0xff, 0x49, 0x66, 0x98, 0xff, 0x30, 0x4f, 0x85, 0xff, 0x1d, 0x38, 0x6c, 0xff, 0x27, 0x3d, 0x65, 0xff, 0x4e, 0x64, 0x83, 0xff, 0x13, 0x21, 0x39, 0xff, 0x0e, 0x15, 0x24, 0xff, 0x09, 0x0c, 0x15, 0xff, 0x06, 0x09, 0x10, 0xff, 0x07, 0x0a, 0x0c, 0xff, 0x05, 0x07, 0x07, 0xff, 0x05, 0x05, 0x05, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x13, 0x13, 0x13, 0xff, 0x11, 0x10, 0x11, 0xff, 0x20, 0x1f, 0x1f, 0xff, 0x68, 0x6a, 0x64, 0xff, 0x9b, 0x9b, 0x94, 0xff, 0xbc, 0xb4, 0xaf, 0xff, 0xda, 0xcd, 0xc2, 0xff, 0xdd, 0xcc, 0xc1, 0xff, 0xdc, 0xce, 0xc7, 0xff, 0xda, 0xce, 0xc7, 0xff, 0xd5, 0xcb, 0xc3, 0xff, 0xcc, 0xc4, 0xbd, 0xff, 0xc2, 0xbe, 0xb8, 0xff, 0xb7, 0xb8, 0xb2, 0xff, 0xae, 0xb1, 0xb1, 0xff, 0xa4, 0xaa, 0xb3, 0xfb, 0x9c, 0xa5, 0xb3, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x8f, 0x9a, 0x94, 0x03, 0x87, 0x9b, 0xa2, 0xa1, 0x79, 0xa3, 0xbc, 0xff, 0x63, 0xaa, 0xd7, 0xff, 0x57, 0xae, 0xea, 0xff, 0x52, 0xb5, 0xf3, 0xff, 0x4e, 0xb4, 0xf3, 0xff, 0x57, 0xb1, 0xf2, 0xff, 0x68, 0xab, 0xdc, 0xff, 0x6e, 0x9f, 0xc2, 0xff, 0x71, 0x85, 0x99, 0xff, 0x6d, 0x6b, 0x67, 0xff, 0x79, 0x73, 0x6d, 0xff, 0x7b, 0x73, 0x70, 0xff, 0x83, 0x7d, 0x7c, 0xff, 0x91, 0x8a, 0x8a, 0xff, 0x95, 0x97, 0x9e, 0xff, 0x7e, 0x98, 0xb4, 0xff, 0x90, 0xad, 0xbd, 0xff, 0xa5, 0xc8, 0xe7, 0xff, 0xae, 0xca, 0xea, 0xff, 0x63, 0x93, 0xc0, 0xff, 0xb7, 0xcc, 0xdf, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfd, 0xfc, 0xf9, 0xff, 0xf6, 0xfa, 0xfe, 0xff, 0xfe, 0xfe, 0xfa, 0xff, 0xfa, 0xfd, 0xfa, 0xff, 0xe0, 0xe9, 0xf0, 0xff, 0xcb, 0xdc, 0xe6, 0xff, 0xa8, 0xc9, 0xe0, 0xff, 0xb3, 0xc8, 0xd6, 0xff, 0x8c, 0x93, 0x8a, 0xff, 0x62, 0x65, 0x5d, 0xff, 0x37, 0x3b, 0x34, 0xff, 0x2b, 0x2e, 0x2b, 0xff, 0x15, 0x12, 0x0f, 0xff, 0x07, 0x06, 0x04, 0xff, 0x03, 0x03, 0x02, 0xff, 0x0f, 0x0d, 0x07, 0xff, 0x9c, 0x7e, 0x62, 0xff, 0x75, 0x5e, 0x49, 0xff, 0x02, 0x00, 0x00, 0xff, 0x10, 0x17, 0x1b, 0xff, 0x7f, 0x9e, 0xb6, 0xff, 0x66, 0x84, 0xb3, 0xff, 0x62, 0x76, 0xa4, 0xff, 0x52, 0x6d, 0x9c, 0xff, 0x3e, 0x58, 0x89, 0xff, 0x2a, 0x48, 0x7d, 0xff, 0x19, 0x34, 0x66, 0xff, 0x23, 0x3a, 0x5f, 0xff, 0x1b, 0x2c, 0x46, 0xff, 0x11, 0x1f, 0x2f, 0xff, 0x0c, 0x10, 0x1b, 0xff, 0x08, 0x0a, 0x12, 0xff, 0x04, 0x07, 0x0b, 0xff, 0x06, 0x08, 0x0a, 0xff, 0x07, 0x08, 0x09, 0xff, 0x07, 0x06, 0x08, 0xff, 0x0b, 0x0a, 0x0a, 0xff, 0x16, 0x14, 0x15, 0xff, 0x2d, 0x2a, 0x29, 0xff, 0x42, 0x43, 0x3e, 0xff, 0x78, 0x77, 0x71, 0xff, 0xa7, 0xa3, 0x9e, 0xff, 0xc6, 0xb9, 0xb3, 0xff, 0xe0, 0xcf, 0xba, 0xff, 0xe1, 0xd0, 0xba, 0xff, 0xdd, 0xd0, 0xbd, 0xff, 0xdb, 0xcd, 0xbc, 0xff, 0xd1, 0xc8, 0xb8, 0xff, 0xc6, 0xc3, 0xb5, 0xff, 0xbd, 0xbb, 0xb2, 0xff, 0xb1, 0xb4, 0xad, 0xff, 0xa6, 0xaf, 0xab, 0xff, 0xa0, 0xaa, 0xaa, 0xa1, 0xa1, 0xaa, 0xab, 0x03, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x9b, 0xa2, 0x95, 0x0a, 0x9c, 0xa4, 0x9a, 0xe8, 0x96, 0xa8, 0xab, 0xff, 0x81, 0xaa, 0xc3, 0xff, 0x77, 0xab, 0xd5, 0xff, 0x6c, 0xaa, 0xdb, 0xff, 0x69, 0xad, 0xe1, 0xff, 0x73, 0xae, 0xda, 0xff, 0x76, 0xa2, 0xbc, 0xff, 0x75, 0x93, 0xa1, 0xff, 0x6d, 0x75, 0x74, 0xff, 0x65, 0x61, 0x5a, 0xff, 0x5b, 0x5a, 0x5a, 0xff, 0x65, 0x63, 0x64, 0xff, 0x75, 0x74, 0x77, 0xff, 0x78, 0x79, 0x7e, 0xff, 0x81, 0x8a, 0x9a, 0xff, 0x7a, 0x99, 0xbb, 0xff, 0x8b, 0xaf, 0xda, 0xff, 0x99, 0xbe, 0xe4, 0xff, 0x85, 0xb0, 0xd9, 0xff, 0x7b, 0xa5, 0xca, 0xff, 0xee, 0xf7, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xf6, 0xfc, 0xfc, 0xff, 0xe0, 0xeb, 0xf3, 0xff, 0xde, 0xe7, 0xef, 0xff, 0xda, 0xec, 0xf7, 0xff, 0xd0, 0xe5, 0xf0, 0xff, 0x98, 0xbf, 0xef, 0xff, 0xb0, 0xc9, 0xdb, 0xff, 0xe6, 0xe2, 0xd5, 0xff, 0x8b, 0x8a, 0x72, 0xff, 0x58, 0x57, 0x43, 0xff, 0x26, 0x28, 0x1d, 0xff, 0x0c, 0x10, 0x0d, 0xff, 0x07, 0x09, 0x0a, 0xff, 0x09, 0x0c, 0x0c, 0xff, 0x07, 0x09, 0x08, 0xff, 0x03, 0x06, 0x0a, 0xff, 0x5c, 0x50, 0x42, 0xff, 0x22, 0x1e, 0x18, 0xff, 0x0a, 0x09, 0x09, 0xff, 0x02, 0x08, 0x07, 0xff, 0x97, 0x90, 0xa3, 0xff, 0x8f, 0x91, 0xbd, 0xff, 0x4e, 0x74, 0x9d, 0xff, 0x53, 0x6c, 0x9d, 0xff, 0x44, 0x5f, 0x90, 0xff, 0x36, 0x50, 0x85, 0xff, 0x27, 0x43, 0x7b, 0xff, 0x19, 0x33, 0x62, 0xff, 0x09, 0x1a, 0x38, 0xff, 0x0e, 0x16, 0x23, 0xff, 0x0f, 0x11, 0x1b, 0xff, 0x0a, 0x0c, 0x13, 0xff, 0x05, 0x08, 0x0c, 0xff, 0x06, 0x07, 0x0a, 0xff, 0x0a, 0x0c, 0x0d, 0xff, 0x07, 0x07, 0x09, 0xff, 0x09, 0x08, 0x09, 0xff, 0x21, 0x1f, 0x1f, 0xff, 0x21, 0x1f, 0x1d, 0xff, 0x3f, 0x3f, 0x3b, 0xff, 0x95, 0x90, 0x8a, 0xff, 0xbb, 0xb4, 0xad, 0xff, 0xbc, 0xb3, 0xad, 0xff, 0xd4, 0xc8, 0xb2, 0xff, 0xd7, 0xca, 0xb0, 0xff, 0xd8, 0xca, 0xb5, 0xff, 0xd8, 0xcb, 0xb5, 0xff, 0xd3, 0xc9, 0xb7, 0xff, 0xc5, 0xc4, 0xb4, 0xff, 0xbe, 0xbc, 0xb4, 0xff, 0xb1, 0xb7, 0xb0, 0xff, 0xa8, 0xb2, 0xac, 0xff, 0xa6, 0xaf, 0xab, 0xe8, 0xa8, 0xb1, 0xa9, 0x0a, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0xae, 0xae, 0x99, 0x4a, 0xae, 0xb1, 0xa2, 0xff, 0xa9, 0xaf, 0xa9, 0xff, 0x9b, 0xac, 0xaf, 0xff, 0x95, 0xaa, 0xbb, 0xff, 0x90, 0xa7, 0xbc, 0xff, 0x8e, 0xa7, 0xba, 0xff, 0x90, 0xa4, 0xaf, 0xff, 0x94, 0xa0, 0x9d, 0xff, 0x98, 0x9d, 0x91, 0xff, 0x89, 0x88, 0x79, 0xff, 0x73, 0x71, 0x65, 0xff, 0x5d, 0x5b, 0x59, 0xff, 0x60, 0x5f, 0x63, 0xff, 0x6b, 0x6f, 0x75, 0xff, 0x6f, 0x77, 0x81, 0xff, 0x7c, 0x92, 0xa2, 0xff, 0x76, 0xa2, 0xc3, 0xff, 0x8c, 0xb0, 0xd5, 0xff, 0xa4, 0xcc, 0xe4, 0xff, 0xaf, 0xce, 0xde, 0xff, 0xd9, 0xe5, 0xe4, 0xff, 0xdd, 0xdf, 0xce, 0xff, 0xbd, 0xc1, 0xbc, 0xff, 0x8b, 0xb0, 0xae, 0xff, 0x96, 0xb3, 0xea, 0xff, 0xbe, 0xe0, 0xf5, 0xff, 0xad, 0xbd, 0xd1, 0xff, 0x61, 0x85, 0xb9, 0xff, 0x9c, 0xbb, 0xdf, 0xff, 0xf4, 0xf0, 0xd3, 0xff, 0xf9, 0xf1, 0xdb, 0xff, 0xd3, 0xcd, 0xac, 0xff, 0xa5, 0xa0, 0x86, 0xff, 0x6c, 0x6c, 0x5d, 0xff, 0x07, 0x0a, 0x06, 0xff, 0x04, 0x07, 0x07, 0xff, 0x0a, 0x10, 0x0e, 0xff, 0x0a, 0x0e, 0x0f, 0xff, 0x2f, 0x23, 0x16, 0xff, 0x4e, 0x37, 0x24, 0xff, 0x00, 0x04, 0x05, 0xff, 0x08, 0x0d, 0x15, 0xff, 0x01, 0x01, 0x00, 0xff, 0x59, 0x65, 0x7c, 0xff, 0x3f, 0x54, 0x81, 0xff, 0x34, 0x53, 0x7e, 0xff, 0x57, 0x72, 0xa6, 0xff, 0x3f, 0x5d, 0x97, 0xff, 0x3f, 0x56, 0x91, 0xff, 0x34, 0x4d, 0x87, 0xff, 0x20, 0x3c, 0x74, 0xff, 0x0e, 0x20, 0x46, 0xff, 0x0d, 0x10, 0x1e, 0xff, 0x0b, 0x0b, 0x14, 0xff, 0x05, 0x07, 0x0f, 0xff, 0x07, 0x09, 0x0e, 0xff, 0x07, 0x08, 0x0b, 0xff, 0x05, 0x07, 0x0c, 0xff, 0x08, 0x09, 0x0d, 0xff, 0x15, 0x14, 0x16, 0xff, 0x13, 0x12, 0x13, 0xff, 0x38, 0x36, 0x34, 0xff, 0x35, 0x33, 0x33, 0xff, 0x64, 0x5d, 0x56, 0xff, 0xc2, 0xba, 0xac, 0xff, 0xb9, 0xb0, 0xa7, 0xff, 0xcd, 0xc2, 0xad, 0xff, 0xd5, 0xc6, 0xac, 0xff, 0xd3, 0xc3, 0xae, 0xff, 0xd1, 0xc4, 0xaf, 0xff, 0xcc, 0xc2, 0xb1, 0xff, 0xc1, 0xbf, 0xaf, 0xff, 0xb7, 0xb9, 0xb0, 0xff, 0xad, 0xb5, 0xae, 0xff, 0xa8, 0xb2, 0xac, 0xff, 0xa9, 0xb2, 0xaf, 0xff, 0xaa, 0xb2, 0xaf, 0x4a, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0xbc, 0xb7, 0xa2, 0xa8, 0xbb, 0xbb, 0xa8, 0xff, 0xb9, 0xb8, 0xa1, 0xff, 0xad, 0xae, 0x91, 0xff, 0xa9, 0xab, 0x94, 0xff, 0xa8, 0xaa, 0x95, 0xff, 0xa5, 0xaa, 0x96, 0xff, 0xa7, 0xac, 0x9e, 0xff, 0xab, 0xaf, 0xa0, 0xff, 0xa9, 0xad, 0x9d, 0xff, 0x94, 0x9a, 0x87, 0xff, 0x7b, 0x7e, 0x6d, 0xff, 0x69, 0x66, 0x59, 0xff, 0x69, 0x66, 0x67, 0xff, 0x73, 0x78, 0x7b, 0xff, 0x7c, 0x89, 0x93, 0xff, 0x83, 0x9b, 0xaf, 0xff, 0x85, 0xa5, 0xbb, 0xff, 0xdc, 0xe8, 0xe5, 0xff, 0xf5, 0xf8, 0xef, 0xff, 0xfe, 0xfe, 0xfa, 0xff, 0xfb, 0xf9, 0xe5, 0xff, 0x5c, 0x63, 0x4d, 0xff, 0x00, 0x00, 0x00, 0xff, 0x3d, 0x34, 0x32, 0xff, 0x75, 0x89, 0x7d, 0xff, 0x92, 0xbb, 0xd5, 0xff, 0xb9, 0xc7, 0xeb, 0xff, 0xbe, 0xc8, 0xed, 0xff, 0x84, 0xa4, 0xc0, 0xff, 0xf7, 0xed, 0xda, 0xff, 0xc1, 0xbd, 0xab, 0xff, 0x96, 0x96, 0x78, 0xff, 0x86, 0x84, 0x6f, 0xff, 0x4c, 0x4c, 0x46, 0xff, 0x0e, 0x0e, 0x0f, 0xff, 0x07, 0x0c, 0x0b, 0xff, 0x1c, 0x26, 0x24, 0xff, 0x0e, 0x11, 0x12, 0xff, 0x2f, 0x26, 0x1d, 0xff, 0x32, 0x22, 0x18, 0xff, 0x01, 0x0a, 0x0e, 0xff, 0x05, 0x04, 0x04, 0xff, 0x00, 0x00, 0x00, 0xff, 0x3e, 0x51, 0x69, 0xff, 0x32, 0x4e, 0x84, 0xff, 0x50, 0x6a, 0x9c, 0xff, 0x4d, 0x67, 0x9c, 0xff, 0x49, 0x6c, 0xad, 0xff, 0x47, 0x69, 0xa6, 0xff, 0x38, 0x56, 0x8e, 0xff, 0x2d, 0x4b, 0x82, 0xff, 0x1d, 0x37, 0x61, 0xff, 0x0a, 0x15, 0x28, 0xff, 0x0a, 0x0d, 0x16, 0xff, 0x05, 0x06, 0x0e, 0xff, 0x07, 0x09, 0x0e, 0xff, 0x08, 0x08, 0x0c, 0xff, 0x03, 0x06, 0x0b, 0xff, 0x05, 0x08, 0x0d, 0xff, 0x06, 0x08, 0x0a, 0xff, 0x0b, 0x0b, 0x0c, 0xff, 0x16, 0x15, 0x15, 0xff, 0x53, 0x4f, 0x52, 0xff, 0x66, 0x5e, 0x56, 0xff, 0xaf, 0xa2, 0x90, 0xff, 0xc6, 0xb5, 0xa9, 0xff, 0xcd, 0xbf, 0xad, 0xff, 0xdd, 0xc5, 0xac, 0xff, 0xd2, 0xc0, 0xab, 0xff, 0xca, 0xbe, 0xaa, 0xff, 0xc6, 0xbd, 0xab, 0xff, 0xbe, 0xbb, 0xac, 0xff, 0xb0, 0xb5, 0xac, 0xff, 0xa8, 0xb2, 0xaa, 0xff, 0xa6, 0xb1, 0xab, 0xff, 0xa9, 0xb1, 0xae, 0xff, 0xa6, 0xb4, 0xac, 0xa8, 0x00, 0x00, 0x00, 0x00,
|
||||
0xbb, 0xb3, 0x98, 0x0b, 0xc0, 0xbc, 0xa5, 0xe1, 0xc3, 0xc0, 0xa9, 0xff, 0xc2, 0xbe, 0xa3, 0xff, 0xb8, 0xb6, 0x93, 0xff, 0xb6, 0xb2, 0x8e, 0xff, 0xb5, 0xb2, 0x94, 0xff, 0xb6, 0xb5, 0x9e, 0xff, 0xb8, 0xb9, 0xa9, 0xff, 0xb9, 0xbd, 0xad, 0xff, 0xb5, 0xba, 0xa7, 0xff, 0xa3, 0xa8, 0x93, 0xff, 0x8b, 0x8c, 0x79, 0xff, 0x74, 0x70, 0x63, 0xff, 0x72, 0x6e, 0x69, 0xff, 0x81, 0x83, 0x89, 0xff, 0x7f, 0x95, 0x9a, 0xff, 0xaf, 0xbb, 0xc4, 0xff, 0xec, 0xf4, 0xed, 0xff, 0xf6, 0xf2, 0xd6, 0xff, 0xfe, 0xf9, 0xea, 0xff, 0xfc, 0xf6, 0xeb, 0xff, 0xfa, 0xf6, 0xe1, 0xff, 0xae, 0xb2, 0x9c, 0xff, 0x4b, 0x4a, 0x39, 0xff, 0x0a, 0x0e, 0x06, 0xff, 0x2c, 0x36, 0x29, 0xff, 0x72, 0x91, 0xba, 0xff, 0xdb, 0xed, 0xf4, 0xff, 0xd0, 0xe2, 0xf6, 0xff, 0x85, 0xb0, 0xe1, 0xff, 0xef, 0xe9, 0xcd, 0xff, 0xcb, 0xcf, 0xb5, 0xff, 0x84, 0x88, 0x6f, 0xff, 0x17, 0x1b, 0x13, 0xff, 0x07, 0x0c, 0x0a, 0xff, 0x10, 0x10, 0x0d, 0xff, 0x0e, 0x0c, 0x0c, 0xff, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, 0x44, 0x38, 0x28, 0xff, 0x1b, 0x17, 0x10, 0xff, 0x03, 0x06, 0x07, 0xff, 0x03, 0x04, 0x04, 0xff, 0x00, 0x00, 0x00, 0xff, 0x42, 0x58, 0x6e, 0xff, 0x31, 0x49, 0x82, 0xff, 0x44, 0x64, 0x9a, 0xff, 0x55, 0x72, 0xa7, 0xff, 0x48, 0x66, 0x9c, 0xff, 0x4b, 0x6b, 0xa6, 0xff, 0x4b, 0x6a, 0xad, 0xff, 0x34, 0x55, 0x93, 0xff, 0x23, 0x3d, 0x71, 0xff, 0x11, 0x1b, 0x35, 0xff, 0x0c, 0x0f, 0x1a, 0xff, 0x03, 0x09, 0x0e, 0xff, 0x04, 0x0a, 0x0a, 0xff, 0x10, 0x07, 0x0e, 0xff, 0x07, 0x08, 0x0c, 0xff, 0x09, 0x0b, 0x0e, 0xff, 0x09, 0x09, 0x0e, 0xff, 0x0a, 0x0b, 0x0e, 0xff, 0x0e, 0x0e, 0x0e, 0xff, 0x16, 0x14, 0x13, 0xff, 0x59, 0x56, 0x55, 0xff, 0x3e, 0x3a, 0x34, 0xff, 0xb0, 0xa9, 0x9f, 0xff, 0xcd, 0xbb, 0xa6, 0xff, 0xdb, 0xc7, 0xaa, 0xff, 0xd1, 0xc1, 0xaa, 0xff, 0xcc, 0xbe, 0xa7, 0xff, 0xc4, 0xbb, 0xa9, 0xff, 0xbe, 0xb9, 0xaa, 0xff, 0xb1, 0xb5, 0xaa, 0xff, 0xaa, 0xb2, 0xa7, 0xff, 0xa8, 0xb2, 0xab, 0xff, 0xa5, 0xb1, 0xab, 0xff, 0xaa, 0xb3, 0xaa, 0xe1, 0xa9, 0xb1, 0xaa, 0x0b,
|
||||
0xc0, 0xb7, 0x9c, 0x29, 0xc4, 0xbf, 0xa6, 0xef, 0xc7, 0xc3, 0xac, 0xff, 0xc5, 0xc0, 0xa8, 0xff, 0xbc, 0xb9, 0x99, 0xff, 0xb9, 0xb4, 0x93, 0xff, 0xbb, 0xb7, 0x9a, 0xff, 0xbf, 0xbd, 0xa7, 0xff, 0xc2, 0xc3, 0xb2, 0xff, 0xc1, 0xc4, 0xb3, 0xff, 0xbc, 0xc0, 0xac, 0xff, 0xad, 0xaf, 0x9a, 0xff, 0x97, 0x96, 0x83, 0xff, 0x7c, 0x79, 0x6a, 0xff, 0x74, 0x72, 0x76, 0xff, 0x84, 0x8d, 0x8d, 0xff, 0x90, 0x9b, 0xa8, 0xff, 0xef, 0xf2, 0xe0, 0xff, 0xf8, 0xf0, 0xd9, 0xff, 0xf9, 0xed, 0xdc, 0xff, 0xf7, 0xf2, 0xe1, 0xff, 0xf5, 0xee, 0xe0, 0xff, 0xf0, 0xe9, 0xd5, 0xff, 0xd6, 0xd2, 0xb3, 0xff, 0xbb, 0xb5, 0x99, 0xff, 0x86, 0x85, 0x72, 0xff, 0x20, 0x31, 0x30, 0xff, 0x6a, 0x8c, 0xaf, 0xff, 0xe8, 0xed, 0xef, 0xff, 0xd6, 0xed, 0xfb, 0xff, 0x84, 0xc0, 0xe3, 0xff, 0x6e, 0x76, 0x65, 0xff, 0xb8, 0xb6, 0x9f, 0xff, 0x50, 0x52, 0x45, 0xff, 0x0a, 0x0d, 0x0a, 0xff, 0x0f, 0x12, 0x10, 0xff, 0x0b, 0x0e, 0x09, 0xff, 0x0c, 0x0f, 0x0d, 0xff, 0x12, 0x16, 0x12, 0xff, 0x22, 0x24, 0x23, 0xff, 0x63, 0x5f, 0x4f, 0xff, 0x1a, 0x18, 0x12, 0xff, 0x0c, 0x0c, 0x10, 0xff, 0x03, 0x05, 0x09, 0xff, 0x0f, 0x0d, 0x0a, 0xff, 0x54, 0x6b, 0x85, 0xff, 0x35, 0x4b, 0x84, 0xff, 0x42, 0x5d, 0x94, 0xff, 0x52, 0x72, 0xa7, 0xff, 0x55, 0x73, 0xa8, 0xff, 0x49, 0x6b, 0xa4, 0xff, 0x3e, 0x5f, 0x9e, 0xff, 0x37, 0x5c, 0x96, 0xff, 0x36, 0x57, 0x92, 0xff, 0x17, 0x29, 0x57, 0xff, 0x06, 0x0c, 0x12, 0xff, 0x0e, 0x0a, 0x17, 0xff, 0x08, 0x05, 0x0f, 0xff, 0x02, 0x0b, 0x0b, 0xff, 0x09, 0x0a, 0x0e, 0xff, 0x0a, 0x0b, 0x0f, 0xff, 0x0a, 0x0b, 0x0f, 0xff, 0x08, 0x09, 0x0d, 0xff, 0x09, 0x0a, 0x0a, 0xff, 0x18, 0x18, 0x17, 0xff, 0x41, 0x40, 0x40, 0xff, 0x5d, 0x59, 0x55, 0xff, 0x70, 0x6e, 0x68, 0xff, 0xcf, 0xc0, 0xae, 0xff, 0xcf, 0xbb, 0xa0, 0xff, 0xcb, 0xbb, 0xa3, 0xff, 0xca, 0xbb, 0xa3, 0xff, 0xc5, 0xbc, 0xa7, 0xff, 0xc0, 0xb8, 0xa6, 0xff, 0xb5, 0xb5, 0xa7, 0xff, 0xb0, 0xb4, 0xa8, 0xff, 0xaa, 0xb3, 0xa9, 0xff, 0xa8, 0xb1, 0xa9, 0xff, 0xa8, 0xaf, 0xa8, 0xef, 0xa9, 0xb1, 0xa8, 0x29,
|
||||
0xc3, 0xb8, 0x9c, 0x43, 0xc8, 0xc0, 0xa6, 0xfb, 0xca, 0xc5, 0xae, 0xff, 0xca, 0xc3, 0xab, 0xff, 0xbf, 0xbb, 0x9a, 0xff, 0xbb, 0xb6, 0x95, 0xff, 0xbf, 0xba, 0x9d, 0xff, 0xc4, 0xc0, 0xa9, 0xff, 0xc6, 0xc5, 0xb3, 0xff, 0xc6, 0xc8, 0xb5, 0xff, 0xc3, 0xc5, 0xb1, 0xff, 0xb3, 0xb5, 0xa0, 0xff, 0xa1, 0x9f, 0x8c, 0xff, 0x85, 0x7f, 0x70, 0xff, 0x7c, 0x77, 0x7b, 0xff, 0x83, 0x8e, 0x93, 0xff, 0xd5, 0xdc, 0xde, 0xff, 0xa0, 0x9f, 0x80, 0xff, 0x74, 0x76, 0x5d, 0xff, 0xf1, 0xeb, 0xdc, 0xff, 0xfe, 0xf5, 0xe6, 0xff, 0xf1, 0xea, 0xd2, 0xff, 0xc5, 0xc6, 0xad, 0xff, 0x7a, 0x8a, 0x78, 0xff, 0x79, 0x90, 0x8c, 0xff, 0x2c, 0x32, 0x2d, 0xff, 0x3f, 0x56, 0x58, 0xff, 0xa0, 0xbc, 0xde, 0xff, 0xfb, 0xfc, 0xfd, 0xff, 0xce, 0xe3, 0xfb, 0xff, 0x8a, 0xbc, 0xee, 0xff, 0x46, 0x68, 0x80, 0xff, 0x00, 0x00, 0x00, 0xff, 0x08, 0x07, 0x07, 0xff, 0x08, 0x0a, 0x09, 0xff, 0x06, 0x07, 0x06, 0xff, 0x1d, 0x24, 0x23, 0xff, 0x44, 0x4e, 0x4c, 0xff, 0x32, 0x37, 0x33, 0xff, 0x39, 0x3d, 0x37, 0xff, 0x65, 0x68, 0x5e, 0xff, 0x08, 0x0b, 0x0d, 0xff, 0x0a, 0x09, 0x0b, 0xff, 0x04, 0x05, 0x0b, 0xff, 0x26, 0x2a, 0x34, 0xff, 0x7a, 0x93, 0xbe, 0xff, 0x65, 0x7b, 0xb5, 0xff, 0x5b, 0x75, 0xab, 0xff, 0x4f, 0x6b, 0xa2, 0xff, 0x4e, 0x6b, 0x9e, 0xff, 0x51, 0x6f, 0xa8, 0xff, 0x4f, 0x6d, 0xa8, 0xff, 0x3b, 0x5c, 0x94, 0xff, 0x25, 0x47, 0x82, 0xff, 0x2b, 0x3f, 0x6b, 0xff, 0x2f, 0x35, 0x61, 0xff, 0x15, 0x1c, 0x37, 0xff, 0x03, 0x03, 0x00, 0xff, 0x0d, 0x08, 0x0b, 0xff, 0x0a, 0x0a, 0x10, 0xff, 0x09, 0x09, 0x10, 0xff, 0x0c, 0x0c, 0x12, 0xff, 0x0b, 0x0c, 0x11, 0xff, 0x0b, 0x0e, 0x0e, 0xff, 0x0a, 0x0a, 0x0b, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x70, 0x6d, 0x6a, 0xff, 0x55, 0x54, 0x55, 0xff, 0xb5, 0xab, 0x9f, 0xff, 0xd7, 0xc0, 0xa8, 0xff, 0xca, 0xb8, 0x9f, 0xff, 0xc8, 0xb9, 0x9f, 0xff, 0xc9, 0xbc, 0xa4, 0xff, 0xc3, 0xb9, 0xa1, 0xff, 0xb9, 0xb5, 0xa4, 0xff, 0xb4, 0xb3, 0xa3, 0xff, 0xb1, 0xb3, 0xa6, 0xff, 0xac, 0xb1, 0xa5, 0xff, 0xa7, 0xae, 0xa5, 0xfa, 0xa9, 0xaf, 0xa6, 0x43,
|
||||
0xc5, 0xb8, 0x9a, 0x68, 0xcc, 0xc2, 0xa7, 0xff, 0xce, 0xc7, 0xaf, 0xff, 0xcd, 0xc5, 0xad, 0xff, 0xc4, 0xbd, 0x9d, 0xff, 0xc1, 0xba, 0x99, 0xff, 0xc2, 0xbd, 0x9f, 0xff, 0xc7, 0xc2, 0xab, 0xff, 0xcb, 0xca, 0xb6, 0xff, 0xcb, 0xcc, 0xb9, 0xff, 0xc6, 0xc8, 0xb5, 0xff, 0xba, 0xba, 0xa5, 0xff, 0xa6, 0xa4, 0x90, 0xff, 0x8c, 0x84, 0x78, 0xff, 0x86, 0x80, 0x77, 0xff, 0x8d, 0x98, 0xa7, 0xff, 0xc7, 0xd6, 0xc3, 0xff, 0x47, 0x40, 0x05, 0xff, 0x26, 0x25, 0x11, 0xff, 0xbd, 0xc8, 0xad, 0xff, 0x84, 0x9b, 0x81, 0xff, 0xe2, 0xe4, 0xd3, 0xff, 0xea, 0xe2, 0xce, 0xff, 0xae, 0xb4, 0x9f, 0xff, 0x1e, 0x27, 0x21, 0xff, 0x00, 0x00, 0x04, 0xff, 0x68, 0x80, 0x84, 0xff, 0xe7, 0xf7, 0xff, 0xff, 0xf7, 0xfb, 0xf6, 0xff, 0xb1, 0xc8, 0xf4, 0xff, 0x64, 0x7b, 0xcc, 0xff, 0x64, 0x83, 0xb3, 0xff, 0x11, 0x10, 0x10, 0xff, 0x0b, 0x09, 0x0d, 0xff, 0x04, 0x05, 0x07, 0xff, 0x07, 0x05, 0x05, 0xff, 0x1c, 0x23, 0x24, 0xff, 0x12, 0x1a, 0x1b, 0xff, 0x27, 0x25, 0x23, 0xff, 0x1f, 0x20, 0x1c, 0xff, 0x15, 0x14, 0x11, 0xff, 0x0d, 0x0e, 0x13, 0xff, 0x06, 0x04, 0x04, 0xff, 0x06, 0x0d, 0x0c, 0xff, 0x51, 0x5b, 0x70, 0xff, 0x8f, 0xab, 0xe1, 0xff, 0x5c, 0x76, 0xb0, 0xff, 0x60, 0x7a, 0xb1, 0xff, 0x64, 0x79, 0xb0, 0xff, 0x5c, 0x70, 0xa5, 0xff, 0x4a, 0x64, 0x9b, 0xff, 0x4a, 0x65, 0xa0, 0xff, 0x44, 0x62, 0x99, 0xff, 0x33, 0x51, 0x86, 0xff, 0x17, 0x28, 0x4b, 0xff, 0x0e, 0x11, 0x1f, 0xff, 0x30, 0x34, 0x63, 0xff, 0x26, 0x2e, 0x57, 0xff, 0x09, 0x0b, 0x16, 0xff, 0x08, 0x08, 0x0d, 0xff, 0x0a, 0x0a, 0x10, 0xff, 0x0f, 0x0f, 0x14, 0xff, 0x0b, 0x0b, 0x12, 0xff, 0x06, 0x09, 0x0d, 0xff, 0x08, 0x0a, 0x0c, 0xff, 0x03, 0x04, 0x04, 0xff, 0x4d, 0x4b, 0x4a, 0xff, 0x3e, 0x3f, 0x42, 0xff, 0x9c, 0x94, 0x8c, 0xff, 0xd9, 0xc2, 0xaa, 0xff, 0xd0, 0xbe, 0xa3, 0xff, 0xcb, 0xbb, 0xa2, 0xff, 0xce, 0xc0, 0xa5, 0xff, 0xc6, 0xb8, 0x9e, 0xff, 0xbd, 0xb6, 0xa2, 0xff, 0xb8, 0xb4, 0xa1, 0xff, 0xb5, 0xb4, 0xa5, 0xff, 0xad, 0xaf, 0xa1, 0xff, 0xa5, 0xaa, 0xa1, 0xff, 0xa7, 0xac, 0xa2, 0x68,
|
||||
0xc5, 0xb9, 0x9b, 0x92, 0xcd, 0xc3, 0xa8, 0xff, 0xd0, 0xc8, 0xaf, 0xff, 0xcd, 0xc7, 0xad, 0xff, 0xc9, 0xc0, 0xa2, 0xff, 0xc6, 0xbc, 0x9a, 0xff, 0xc6, 0xbf, 0xa0, 0xff, 0xc9, 0xc3, 0xab, 0xff, 0xcc, 0xc8, 0xb5, 0xff, 0xcb, 0xcc, 0xb8, 0xff, 0xc8, 0xc9, 0xb7, 0xff, 0xbc, 0xbc, 0xa8, 0xff, 0xaa, 0xa7, 0x92, 0xff, 0x8f, 0x88, 0x76, 0xff, 0x7a, 0x74, 0x71, 0xff, 0xb7, 0xd1, 0xd5, 0xff, 0x58, 0x67, 0x60, 0xff, 0x41, 0x3c, 0x1b, 0xff, 0x19, 0x17, 0x0a, 0xff, 0x19, 0x2f, 0x20, 0xff, 0x03, 0x37, 0x2c, 0xff, 0x38, 0x4b, 0x3b, 0xff, 0x8c, 0x8c, 0x77, 0xff, 0x3f, 0x3d, 0x32, 0xff, 0x08, 0x08, 0x0a, 0xff, 0x00, 0x04, 0x02, 0xff, 0xac, 0xc7, 0xda, 0xff, 0xf5, 0xfe, 0xfe, 0xff, 0xe4, 0xef, 0xf7, 0xff, 0xb4, 0xc8, 0xf6, 0xff, 0x85, 0x9a, 0xd6, 0xff, 0x6d, 0x85, 0xb8, 0xff, 0x37, 0x49, 0x64, 0xff, 0x14, 0x13, 0x11, 0xff, 0x1c, 0x1a, 0x1a, 0xff, 0x04, 0x07, 0x0d, 0xff, 0x06, 0x05, 0x08, 0xff, 0x10, 0x10, 0x15, 0xff, 0x00, 0x01, 0x04, 0xff, 0x05, 0x03, 0x05, 0xff, 0x03, 0x02, 0x03, 0xff, 0x03, 0x02, 0x06, 0xff, 0x17, 0x1d, 0x26, 0xff, 0x13, 0x1e, 0x22, 0xff, 0x89, 0x9e, 0xbd, 0xff, 0x8e, 0xa2, 0xd1, 0xff, 0x7c, 0x91, 0xcd, 0xff, 0x54, 0x6f, 0xa8, 0xff, 0x51, 0x68, 0xa5, 0xff, 0x54, 0x6f, 0xa7, 0xff, 0x4f, 0x6d, 0xa4, 0xff, 0x48, 0x67, 0x9e, 0xff, 0x42, 0x5f, 0x94, 0xff, 0x2d, 0x4f, 0x84, 0xff, 0x13, 0x25, 0x46, 0xff, 0x08, 0x0a, 0x13, 0xff, 0x08, 0x08, 0x08, 0xff, 0x16, 0x19, 0x33, 0xff, 0x13, 0x17, 0x27, 0xff, 0x06, 0x09, 0x15, 0xff, 0x06, 0x07, 0x0b, 0xff, 0x0c, 0x10, 0x11, 0xff, 0x05, 0x0a, 0x0f, 0xff, 0x09, 0x06, 0x05, 0xff, 0x05, 0x03, 0x04, 0xff, 0x01, 0x01, 0x00, 0xff, 0x12, 0x14, 0x16, 0xff, 0x37, 0x33, 0x31, 0xff, 0x6a, 0x71, 0x78, 0xff, 0xcd, 0xba, 0xa4, 0xff, 0xcd, 0xbc, 0xa6, 0xff, 0xcc, 0xbf, 0xa5, 0xff, 0xdc, 0xc4, 0xa9, 0xff, 0xca, 0xba, 0x9d, 0xff, 0xb9, 0xb5, 0x9d, 0xff, 0xb3, 0xb2, 0x9d, 0xff, 0xb5, 0xb5, 0xa4, 0xff, 0xae, 0xab, 0x9e, 0xff, 0xa2, 0xa7, 0x9b, 0xff, 0xa6, 0xaa, 0x9e, 0x92,
|
||||
0xc7, 0xbb, 0x9d, 0xb5, 0xd0, 0xc6, 0xab, 0xff, 0xd3, 0xcb, 0xb2, 0xff, 0xd0, 0xc9, 0xaf, 0xff, 0xc8, 0xbf, 0xa1, 0xff, 0xc7, 0xbe, 0x9c, 0xff, 0xc8, 0xc0, 0x9f, 0xff, 0xca, 0xc4, 0xa9, 0xff, 0xcd, 0xc8, 0xb3, 0xff, 0xcc, 0xcb, 0xb6, 0xff, 0xc9, 0xc8, 0xb4, 0xff, 0xbd, 0xbb, 0xa5, 0xff, 0xab, 0xa7, 0x90, 0xff, 0x92, 0x8a, 0x77, 0xff, 0x81, 0x76, 0x75, 0xff, 0x99, 0xae, 0xb7, 0xff, 0x64, 0x76, 0x79, 0xff, 0x24, 0x25, 0x13, 0xff, 0x15, 0x15, 0x10, 0xff, 0x15, 0x18, 0x13, 0xff, 0x19, 0x2c, 0x25, 0xff, 0x08, 0x1f, 0x22, 0xff, 0x06, 0x09, 0x0e, 0xff, 0x11, 0x13, 0x12, 0xff, 0x0c, 0x11, 0x14, 0xff, 0x33, 0x43, 0x4c, 0xff, 0xeb, 0xf2, 0xf3, 0xff, 0xf6, 0xfd, 0xfc, 0xff, 0xcf, 0xe2, 0xf8, 0xff, 0xb4, 0xc5, 0xeb, 0xff, 0x87, 0x9d, 0xd2, 0xff, 0x64, 0x7c, 0xb2, 0xff, 0x57, 0x6e, 0x99, 0xff, 0x2b, 0x36, 0x49, 0xff, 0x05, 0x0e, 0x04, 0xff, 0x3c, 0x41, 0x46, 0xff, 0x4f, 0x50, 0x53, 0xff, 0x0c, 0x11, 0x10, 0xff, 0x06, 0x0b, 0x0b, 0xff, 0x08, 0x0e, 0x10, 0xff, 0x09, 0x12, 0x1c, 0xff, 0x0b, 0x17, 0x18, 0xff, 0x05, 0x14, 0x1a, 0xff, 0x7d, 0x7d, 0x9b, 0xff, 0x8d, 0x9d, 0xc3, 0xff, 0x8e, 0x9f, 0xcd, 0xff, 0x7a, 0x8f, 0xc1, 0xff, 0x72, 0x89, 0xbb, 0xff, 0x56, 0x6e, 0xa8, 0xff, 0x53, 0x6d, 0xa5, 0xff, 0x4e, 0x6d, 0xa3, 0xff, 0x46, 0x65, 0x9f, 0xff, 0x46, 0x63, 0x9c, 0xff, 0x3b, 0x59, 0x93, 0xff, 0x21, 0x33, 0x5d, 0xff, 0x09, 0x12, 0x21, 0xff, 0x10, 0x11, 0x14, 0xff, 0x07, 0x0c, 0x13, 0xff, 0x03, 0x04, 0x06, 0xff, 0x04, 0x03, 0x0b, 0xff, 0x01, 0x00, 0x05, 0xff, 0x01, 0x02, 0x05, 0xff, 0x02, 0x03, 0x03, 0xff, 0x0e, 0x12, 0x22, 0xff, 0x2d, 0x3d, 0x5c, 0xff, 0x4b, 0x56, 0x78, 0xff, 0x48, 0x4f, 0x62, 0xff, 0x18, 0x14, 0x13, 0xff, 0x55, 0x56, 0x65, 0xff, 0xc3, 0xb2, 0x9d, 0xff, 0xc8, 0xb6, 0x9e, 0xff, 0xc6, 0xb9, 0x9e, 0xff, 0xd4, 0xbf, 0xa5, 0xff, 0xc9, 0xba, 0x9e, 0xff, 0xbe, 0xb5, 0x9a, 0xff, 0xb7, 0xb2, 0x9a, 0xff, 0xb8, 0xb6, 0xa2, 0xff, 0xae, 0xab, 0x99, 0xff, 0x9c, 0xa2, 0x94, 0xff, 0xa2, 0xa6, 0x99, 0xb5,
|
||||
0xc8, 0xbb, 0x9c, 0xd1, 0xce, 0xc4, 0xa9, 0xff, 0xd2, 0xca, 0xb1, 0xff, 0xd1, 0xca, 0xb1, 0xff, 0xc8, 0xbf, 0xa2, 0xff, 0xc7, 0xbe, 0x9c, 0xff, 0xc9, 0xbf, 0x9d, 0xff, 0xcb, 0xc1, 0xa5, 0xff, 0xcd, 0xc7, 0xaf, 0xff, 0xce, 0xcb, 0xb2, 0xff, 0xc9, 0xc7, 0xb0, 0xff, 0xbd, 0xba, 0xa1, 0xff, 0xaa, 0xa4, 0x8b, 0xff, 0x92, 0x89, 0x73, 0xff, 0x84, 0x79, 0x76, 0xff, 0x8c, 0x98, 0xa0, 0xff, 0x6a, 0x78, 0x7b, 0xff, 0x27, 0x28, 0x1f, 0xff, 0x15, 0x1d, 0x1f, 0xff, 0x09, 0x07, 0x08, 0xff, 0x39, 0x49, 0x46, 0xff, 0x4c, 0x6c, 0x69, 0xff, 0x10, 0x17, 0x13, 0xff, 0x0b, 0x0e, 0x0a, 0xff, 0x04, 0x07, 0x06, 0xff, 0x96, 0x98, 0x9c, 0xff, 0xfc, 0xfd, 0xfe, 0xff, 0xd8, 0xe2, 0xf3, 0xff, 0xb1, 0xc7, 0xf7, 0xff, 0xa6, 0xb7, 0xea, 0xff, 0x81, 0x94, 0xcb, 0xff, 0x57, 0x6c, 0xa2, 0xff, 0x41, 0x58, 0x8d, 0xff, 0x29, 0x41, 0x69, 0xff, 0x44, 0x52, 0x62, 0xff, 0x29, 0x38, 0x43, 0xff, 0x22, 0x2e, 0x32, 0xff, 0x1a, 0x27, 0x2f, 0xff, 0x26, 0x36, 0x3d, 0xff, 0x3a, 0x47, 0x4d, 0xff, 0x42, 0x55, 0x63, 0xff, 0x68, 0x78, 0x89, 0xff, 0x89, 0x9b, 0xb4, 0xff, 0x9a, 0xa7, 0xce, 0xff, 0x8c, 0x9b, 0xc9, 0xff, 0x7c, 0x8d, 0xbc, 0xff, 0x71, 0x85, 0xb7, 0xff, 0x68, 0x7e, 0xb2, 0xff, 0x54, 0x6e, 0xa4, 0xff, 0x51, 0x6c, 0xa4, 0xff, 0x4d, 0x6a, 0xa1, 0xff, 0x45, 0x66, 0xa0, 0xff, 0x45, 0x64, 0x9c, 0xff, 0x40, 0x5f, 0x97, 0xff, 0x2b, 0x42, 0x6f, 0xff, 0x13, 0x20, 0x37, 0xff, 0x11, 0x12, 0x18, 0xff, 0x08, 0x0a, 0x0f, 0xff, 0x05, 0x06, 0x0b, 0xff, 0x03, 0x06, 0x08, 0xff, 0x08, 0x10, 0x22, 0xff, 0x12, 0x1c, 0x3f, 0xff, 0x22, 0x2a, 0x57, 0xff, 0x31, 0x4c, 0x82, 0xff, 0x41, 0x60, 0x9e, 0xff, 0x41, 0x5b, 0xa0, 0xff, 0x6d, 0x81, 0xc2, 0xff, 0x58, 0x60, 0x7c, 0xff, 0x40, 0x42, 0x40, 0xff, 0xce, 0xb9, 0x95, 0xff, 0xcf, 0xb6, 0x9b, 0xff, 0xc4, 0xb7, 0x9c, 0xff, 0xcc, 0xba, 0xa1, 0xff, 0xc6, 0xb6, 0x9c, 0xff, 0xc0, 0xb5, 0x9c, 0xff, 0xb7, 0xb3, 0x9c, 0xff, 0xb3, 0xb3, 0xa0, 0xff, 0xab, 0xab, 0x9b, 0xff, 0x9e, 0xa1, 0x91, 0xff, 0x9f, 0xa2, 0x93, 0xd1,
|
||||
0xc7, 0xba, 0x9b, 0xe8, 0xce, 0xc4, 0xa9, 0xff, 0xd2, 0xc9, 0xb1, 0xff, 0xd0, 0xca, 0xb0, 0xff, 0xca, 0xc2, 0xa4, 0xff, 0xc7, 0xbc, 0x9a, 0xff, 0xc6, 0xbc, 0x99, 0xff, 0xca, 0xc0, 0xa2, 0xff, 0xcd, 0xc5, 0xac, 0xff, 0xce, 0xc8, 0xb0, 0xff, 0xca, 0xc6, 0xad, 0xff, 0xbb, 0xb7, 0x9b, 0xff, 0xa9, 0xa2, 0x87, 0xff, 0x93, 0x86, 0x70, 0xff, 0x84, 0x79, 0x73, 0xff, 0x93, 0x9a, 0x9c, 0xff, 0x6c, 0x75, 0x74, 0xff, 0x00, 0x00, 0x00, 0xff, 0x0b, 0x15, 0x1b, 0xff, 0x16, 0x1f, 0x20, 0xff, 0x31, 0x4b, 0x4b, 0xff, 0x6a, 0x91, 0x8d, 0xff, 0x00, 0x00, 0x00, 0xff, 0x6e, 0x75, 0x60, 0xff, 0x1e, 0x16, 0x2f, 0xff, 0xf3, 0xf4, 0xf4, 0xff, 0xec, 0xf3, 0xfa, 0xff, 0xb2, 0xcc, 0xf5, 0xff, 0x7e, 0x95, 0xdb, 0xff, 0x64, 0x76, 0xbe, 0xff, 0x63, 0x74, 0xb1, 0xff, 0x7a, 0x8c, 0xc1, 0xff, 0x88, 0x9a, 0xce, 0xff, 0x67, 0x75, 0xa4, 0xff, 0x23, 0x35, 0x69, 0xff, 0x37, 0x52, 0x81, 0xff, 0x55, 0x74, 0x9f, 0xff, 0x68, 0x87, 0xb3, 0xff, 0x7b, 0x97, 0xc1, 0xff, 0x91, 0xac, 0xd0, 0xff, 0x95, 0xac, 0xd3, 0xff, 0x92, 0xa8, 0xd8, 0xff, 0x7e, 0x92, 0xca, 0xff, 0x72, 0x87, 0xbc, 0xff, 0x6e, 0x80, 0xb1, 0xff, 0x6a, 0x7d, 0xaf, 0xff, 0x5f, 0x72, 0xa9, 0xff, 0x5b, 0x6e, 0xa9, 0xff, 0x4d, 0x68, 0x9c, 0xff, 0x4b, 0x66, 0x9d, 0xff, 0x4a, 0x68, 0x9f, 0xff, 0x45, 0x65, 0xa1, 0xff, 0x42, 0x61, 0x98, 0xff, 0x43, 0x61, 0x95, 0xff, 0x35, 0x4f, 0x77, 0xff, 0x22, 0x2f, 0x49, 0xff, 0x07, 0x0a, 0x10, 0xff, 0x04, 0x07, 0x17, 0xff, 0x08, 0x15, 0x2d, 0xff, 0x15, 0x26, 0x50, 0xff, 0x22, 0x38, 0x6b, 0xff, 0x26, 0x41, 0x7a, 0xff, 0x26, 0x41, 0x79, 0xff, 0x38, 0x4f, 0x85, 0xff, 0x3d, 0x51, 0x87, 0xff, 0x2f, 0x3f, 0x7e, 0xff, 0x2b, 0x3c, 0x94, 0xff, 0x5a, 0x68, 0xb2, 0xff, 0x61, 0x6e, 0x76, 0xff, 0xd8, 0xba, 0x9c, 0xff, 0xd1, 0xb6, 0x9d, 0xff, 0xc6, 0xb8, 0x9c, 0xff, 0xc8, 0xb9, 0x9e, 0xff, 0xc2, 0xb2, 0x9a, 0xff, 0xba, 0xb0, 0x9c, 0xff, 0xb1, 0xae, 0x9c, 0xff, 0xaa, 0xac, 0x9d, 0xff, 0xa1, 0xa4, 0x97, 0xff, 0x98, 0x9c, 0x8c, 0xff, 0x9d, 0xa1, 0x90, 0xe7,
|
||||
0xc6, 0xba, 0x99, 0xf5, 0xcd, 0xc4, 0xa8, 0xff, 0xd2, 0xc8, 0xb0, 0xff, 0xd0, 0xc9, 0xb0, 0xff, 0xc9, 0xc3, 0xa2, 0xff, 0xc7, 0xba, 0x93, 0xff, 0xc6, 0xb9, 0x95, 0xff, 0xc7, 0xbd, 0x9d, 0xff, 0xcd, 0xc4, 0xa6, 0xff, 0xcf, 0xc6, 0xad, 0xff, 0xc9, 0xc4, 0xa9, 0xff, 0xbd, 0xb7, 0x96, 0xff, 0xa9, 0x9f, 0x7f, 0xff, 0x93, 0x84, 0x6e, 0xff, 0x87, 0x78, 0x75, 0xff, 0x91, 0x94, 0x9d, 0xff, 0x84, 0x8f, 0x91, 0xff, 0x13, 0x1a, 0x08, 0xff, 0x34, 0x2e, 0x29, 0xff, 0x19, 0x17, 0x17, 0xff, 0x3e, 0x5e, 0x62, 0xff, 0x3a, 0x57, 0x62, 0xff, 0x59, 0x60, 0x4d, 0xff, 0xb7, 0xd1, 0x9d, 0xff, 0xab, 0xb3, 0xc5, 0xff, 0xdc, 0xed, 0xfa, 0xff, 0xa8, 0xc1, 0xf8, 0xff, 0x7c, 0x96, 0xd9, 0xff, 0x5a, 0x6a, 0xbb, 0xff, 0x55, 0x6d, 0xaf, 0xff, 0x4d, 0x65, 0xad, 0xff, 0x5f, 0x78, 0xb6, 0xff, 0x6d, 0x87, 0xba, 0xff, 0x6c, 0x86, 0xc2, 0xff, 0x4f, 0x63, 0x9c, 0xff, 0x20, 0x2f, 0x65, 0xff, 0x39, 0x4e, 0x83, 0xff, 0x5a, 0x75, 0xaa, 0xff, 0x79, 0x95, 0xc9, 0xff, 0x8e, 0xa6, 0xd2, 0xff, 0x8a, 0x9d, 0xd1, 0xff, 0x75, 0x8c, 0xc3, 0xff, 0x6a, 0x82, 0xbb, 0xff, 0x62, 0x75, 0xaf, 0xff, 0x53, 0x67, 0x9f, 0xff, 0x47, 0x5b, 0x92, 0xff, 0x44, 0x57, 0x8e, 0xff, 0x45, 0x59, 0x8f, 0xff, 0x44, 0x5b, 0x93, 0xff, 0x44, 0x60, 0x94, 0xff, 0x42, 0x5f, 0x96, 0xff, 0x3a, 0x58, 0x93, 0xff, 0x3b, 0x5b, 0x94, 0xff, 0x42, 0x5c, 0x8d, 0xff, 0x2c, 0x40, 0x63, 0xff, 0x22, 0x2c, 0x48, 0xff, 0x0a, 0x11, 0x1b, 0xff, 0x19, 0x28, 0x51, 0xff, 0x28, 0x40, 0x78, 0xff, 0x2c, 0x43, 0x77, 0xff, 0x30, 0x45, 0x7e, 0xff, 0x2b, 0x41, 0x7b, 0xff, 0x30, 0x47, 0x7b, 0xff, 0x3c, 0x49, 0x73, 0xff, 0x29, 0x3e, 0x76, 0xff, 0x1a, 0x2b, 0x68, 0xff, 0x21, 0x2f, 0x6f, 0xff, 0x2d, 0x39, 0x93, 0xff, 0x70, 0x7c, 0xa9, 0xff, 0xd1, 0xb8, 0x94, 0xff, 0xc9, 0xb7, 0x9d, 0xff, 0xc6, 0xb5, 0x9a, 0xff, 0xc5, 0xb7, 0x9e, 0xff, 0xba, 0xaf, 0x97, 0xff, 0xb3, 0xab, 0x99, 0xff, 0xab, 0xaa, 0x9a, 0xff, 0xa3, 0xa8, 0x9b, 0xff, 0x99, 0x9c, 0x92, 0xff, 0x93, 0x99, 0x8a, 0xff, 0x95, 0x99, 0x89, 0xf5,
|
||||
0xc2, 0xb7, 0x95, 0xfc, 0xc9, 0xc1, 0xa4, 0xff, 0xcf, 0xc7, 0xad, 0xff, 0xd0, 0xc7, 0xac, 0xff, 0xc8, 0xc0, 0x9e, 0xff, 0xc4, 0xb7, 0x8f, 0xff, 0xc5, 0xb8, 0x90, 0xff, 0xc7, 0xbb, 0x98, 0xff, 0xcb, 0xc0, 0xa1, 0xff, 0xcd, 0xc4, 0xa8, 0xff, 0xca, 0xc1, 0xa4, 0xff, 0xbd, 0xb4, 0x90, 0xff, 0xa7, 0x9c, 0x7c, 0xff, 0x92, 0x83, 0x6d, 0xff, 0x85, 0x78, 0x73, 0xff, 0x8c, 0x8b, 0x91, 0xff, 0xae, 0xb7, 0xbc, 0xff, 0x34, 0x3d, 0x3c, 0xff, 0x35, 0x33, 0x21, 0xff, 0x19, 0x13, 0x0b, 0xff, 0x2c, 0x48, 0x46, 0xff, 0x32, 0x5b, 0x48, 0xff, 0x91, 0xa6, 0xa6, 0xff, 0x9f, 0xb5, 0xc5, 0xff, 0xc1, 0xd6, 0xdd, 0xff, 0xc5, 0xe1, 0xf3, 0xff, 0x7e, 0x94, 0xd8, 0xff, 0x7d, 0x8f, 0xd5, 0xff, 0x72, 0x81, 0xbf, 0xff, 0x75, 0x7e, 0xc8, 0xff, 0x71, 0x7f, 0xb6, 0xff, 0x75, 0x87, 0xc9, 0xff, 0x5f, 0x70, 0xc7, 0xff, 0x4d, 0x69, 0xae, 0xff, 0x4c, 0x61, 0xa2, 0xff, 0x23, 0x30, 0x6b, 0xff, 0x38, 0x49, 0x7e, 0xff, 0x36, 0x4c, 0x81, 0xff, 0x58, 0x70, 0xa7, 0xff, 0x85, 0x9d, 0xd3, 0xff, 0x96, 0xa9, 0xd7, 0xff, 0x9d, 0xb1, 0xde, 0xff, 0x83, 0x99, 0xca, 0xff, 0x59, 0x6e, 0xaa, 0xff, 0x4a, 0x61, 0x92, 0xff, 0x41, 0x58, 0x89, 0xff, 0x3e, 0x55, 0x86, 0xff, 0x35, 0x4c, 0x7d, 0xff, 0x35, 0x48, 0x7c, 0xff, 0x38, 0x4f, 0x80, 0xff, 0x3f, 0x58, 0x8b, 0xff, 0x38, 0x56, 0x8c, 0xff, 0x39, 0x59, 0x8e, 0xff, 0x36, 0x4f, 0x7d, 0xff, 0x28, 0x36, 0x5a, 0xff, 0x24, 0x32, 0x50, 0xff, 0x11, 0x20, 0x32, 0xff, 0x2b, 0x42, 0x75, 0xff, 0x26, 0x44, 0x7f, 0xff, 0x2f, 0x45, 0x7a, 0xff, 0x2f, 0x42, 0x7d, 0xff, 0x3d, 0x52, 0x8b, 0xff, 0x17, 0x27, 0x58, 0xff, 0x0d, 0x1c, 0x48, 0xff, 0x28, 0x40, 0x72, 0xff, 0x30, 0x4b, 0x80, 0xff, 0x11, 0x28, 0x69, 0xff, 0x17, 0x22, 0x6d, 0xff, 0x55, 0x5b, 0xb0, 0xff, 0xcb, 0xba, 0x9c, 0xff, 0xcb, 0xb3, 0x9c, 0xff, 0xc4, 0xb3, 0x99, 0xff, 0xc0, 0xb3, 0x9d, 0xff, 0xb6, 0xac, 0x99, 0xff, 0xb0, 0xa9, 0x9a, 0xff, 0xa9, 0xa9, 0x9d, 0xff, 0x9f, 0xa5, 0x9b, 0xff, 0x93, 0x98, 0x91, 0xff, 0x8a, 0x91, 0x84, 0xff, 0x8b, 0x90, 0x83, 0xfc,
|
||||
0xc1, 0xb1, 0x8e, 0xfc, 0xc6, 0xb9, 0x9c, 0xff, 0xca, 0xc1, 0xa6, 0xff, 0xca, 0xc1, 0xa5, 0xff, 0xc1, 0xb9, 0x96, 0xff, 0xc2, 0xb5, 0x8b, 0xff, 0xc5, 0xb6, 0x8b, 0xff, 0xc8, 0xba, 0x92, 0xff, 0xc8, 0xbc, 0x99, 0xff, 0xca, 0xbf, 0xa0, 0xff, 0xc9, 0xbd, 0x9c, 0xff, 0xbd, 0xb2, 0x8b, 0xff, 0xa9, 0x9d, 0x7b, 0xff, 0x94, 0x84, 0x6d, 0xff, 0x85, 0x79, 0x72, 0xff, 0x8e, 0x8b, 0x8f, 0xff, 0xa0, 0xa9, 0xb0, 0xff, 0xa3, 0xaf, 0xb1, 0xff, 0x4c, 0x55, 0x54, 0xff, 0x39, 0x4b, 0x4e, 0xff, 0x83, 0x9d, 0xa0, 0xff, 0xad, 0xc7, 0xd4, 0xff, 0xb7, 0xd1, 0xde, 0xff, 0x9b, 0xbb, 0xcf, 0xff, 0xc1, 0xcb, 0xea, 0xff, 0xde, 0xe5, 0xf7, 0xff, 0x94, 0x9f, 0xd5, 0xff, 0x88, 0x99, 0xcf, 0xff, 0x76, 0x8a, 0xc5, 0xff, 0x1e, 0x21, 0x4e, 0xff, 0x1b, 0x1d, 0x43, 0xff, 0x1e, 0x23, 0x3d, 0xff, 0x63, 0x72, 0xad, 0xff, 0x63, 0x77, 0xb3, 0xff, 0x37, 0x44, 0x7a, 0xff, 0x1f, 0x26, 0x5c, 0xff, 0x29, 0x32, 0x63, 0xff, 0x33, 0x40, 0x73, 0xff, 0x27, 0x37, 0x6f, 0xff, 0x59, 0x6c, 0xa1, 0xff, 0x90, 0xa8, 0xd8, 0xff, 0xa0, 0xb4, 0xdc, 0xff, 0x8e, 0x9f, 0xc8, 0xff, 0x67, 0x77, 0xad, 0xff, 0x4e, 0x63, 0x92, 0xff, 0x44, 0x59, 0x87, 0xff, 0x3a, 0x50, 0x7e, 0xff, 0x37, 0x4b, 0x7a, 0xff, 0x2d, 0x3c, 0x6c, 0xff, 0x29, 0x3c, 0x6a, 0xff, 0x32, 0x46, 0x76, 0xff, 0x37, 0x4e, 0x80, 0xff, 0x38, 0x52, 0x83, 0xff, 0x2d, 0x45, 0x71, 0xff, 0x27, 0x39, 0x5b, 0xff, 0x23, 0x31, 0x4c, 0xff, 0x13, 0x23, 0x38, 0xff, 0x32, 0x4c, 0x80, 0xff, 0x30, 0x50, 0x7e, 0xff, 0x31, 0x48, 0x79, 0xff, 0x24, 0x39, 0x6e, 0xff, 0x2e, 0x44, 0x77, 0xff, 0x2c, 0x42, 0x71, 0xff, 0x2e, 0x46, 0x77, 0xff, 0x43, 0x5d, 0x8e, 0xff, 0x50, 0x6c, 0xa2, 0xff, 0x1e, 0x39, 0x75, 0xff, 0x17, 0x1d, 0x6c, 0xff, 0x37, 0x46, 0x97, 0xff, 0xc1, 0xaf, 0xa9, 0xff, 0xcb, 0xb2, 0x95, 0xff, 0xc2, 0xaf, 0x98, 0xff, 0xbb, 0xae, 0x9c, 0xff, 0xb2, 0xaa, 0x9b, 0xff, 0xaf, 0xaa, 0x9d, 0xff, 0xa8, 0xab, 0x9f, 0xff, 0x9d, 0xa5, 0x9d, 0xff, 0x93, 0x9a, 0x95, 0xff, 0x89, 0x8f, 0x86, 0xff, 0x85, 0x8b, 0x7f, 0xfc,
|
||||
0xbc, 0xa9, 0x86, 0xf5, 0xc2, 0xb3, 0x94, 0xff, 0xc4, 0xba, 0x9b, 0xff, 0xc1, 0xb7, 0x97, 0xff, 0xbb, 0xb0, 0x8b, 0xff, 0xbd, 0xaf, 0x87, 0xff, 0xc1, 0xb0, 0x87, 0xff, 0xc2, 0xb3, 0x8b, 0xff, 0xc4, 0xb5, 0x8f, 0xff, 0xc6, 0xb9, 0x95, 0xff, 0xc2, 0xb7, 0x94, 0xff, 0xb9, 0xae, 0x86, 0xff, 0xaa, 0x9d, 0x7b, 0xff, 0x92, 0x83, 0x6b, 0xff, 0x86, 0x79, 0x72, 0xff, 0x8f, 0x8c, 0x8d, 0xff, 0x9d, 0xa3, 0xaa, 0xff, 0xa9, 0xb3, 0xb8, 0xff, 0xc0, 0xd1, 0xd3, 0xff, 0xc1, 0xd4, 0xe2, 0xff, 0xce, 0xda, 0xf1, 0xff, 0xb5, 0xc0, 0xe1, 0xff, 0x9b, 0xa8, 0xd5, 0xff, 0x87, 0x9b, 0xd4, 0xff, 0x93, 0xab, 0xd2, 0xff, 0x9d, 0xb0, 0xe8, 0xff, 0x84, 0x8e, 0xdc, 0xff, 0x99, 0xaa, 0xe1, 0xff, 0x75, 0x84, 0xc7, 0xff, 0x4d, 0x57, 0xa2, 0xff, 0x5a, 0x5b, 0xa3, 0xff, 0x30, 0x34, 0x6d, 0xff, 0x18, 0x23, 0x4e, 0xff, 0x16, 0x1e, 0x47, 0xff, 0x13, 0x19, 0x46, 0xff, 0x28, 0x2d, 0x5e, 0xff, 0x23, 0x29, 0x56, 0xff, 0x37, 0x43, 0x6d, 0xff, 0x7f, 0x90, 0xbf, 0xff, 0x38, 0x45, 0x6e, 0xff, 0x48, 0x5b, 0x86, 0xff, 0x80, 0x98, 0xc4, 0xff, 0x80, 0x95, 0xc0, 0xff, 0x6d, 0x7c, 0xab, 0xff, 0x5a, 0x6e, 0x9d, 0xff, 0x3f, 0x51, 0x7f, 0xff, 0x38, 0x48, 0x74, 0xff, 0x2f, 0x3e, 0x6a, 0xff, 0x2c, 0x3b, 0x69, 0xff, 0x2f, 0x40, 0x6e, 0xff, 0x2f, 0x42, 0x72, 0xff, 0x34, 0x4a, 0x7c, 0xff, 0x32, 0x4a, 0x7b, 0xff, 0x31, 0x46, 0x72, 0xff, 0x26, 0x37, 0x5c, 0xff, 0x25, 0x33, 0x54, 0xff, 0x1a, 0x24, 0x43, 0xff, 0x3b, 0x52, 0x86, 0xff, 0x41, 0x5b, 0x8a, 0xff, 0x58, 0x70, 0x9f, 0xff, 0x39, 0x51, 0x81, 0xff, 0x28, 0x3a, 0x65, 0xff, 0x16, 0x22, 0x45, 0xff, 0x47, 0x5d, 0x8d, 0xff, 0x4a, 0x65, 0x9a, 0xff, 0x55, 0x6d, 0xa5, 0xff, 0x2d, 0x47, 0x83, 0xff, 0x21, 0x24, 0x6d, 0xff, 0x22, 0x36, 0x86, 0xff, 0xb2, 0xa4, 0xa1, 0xff, 0xcc, 0xb4, 0x99, 0xff, 0xc0, 0xaf, 0x99, 0xff, 0xbb, 0xaf, 0x9e, 0xff, 0xb3, 0xad, 0x9e, 0xff, 0xae, 0xac, 0xa1, 0xff, 0xa7, 0xab, 0xa1, 0xff, 0x9e, 0xa6, 0xa0, 0xff, 0x97, 0x9d, 0x99, 0xff, 0x8c, 0x93, 0x8a, 0xff, 0x84, 0x8a, 0x7f, 0xf5,
|
||||
0xaf, 0x9b, 0x77, 0xe8, 0xb7, 0xa7, 0x85, 0xff, 0xba, 0xad, 0x8c, 0xff, 0xba, 0xad, 0x8a, 0xff, 0xb8, 0xa8, 0x83, 0xff, 0xb8, 0xa6, 0x80, 0xff, 0xbb, 0xa8, 0x81, 0xff, 0xc0, 0xad, 0x87, 0xff, 0xc2, 0xb0, 0x8b, 0xff, 0xc5, 0xb4, 0x8e, 0xff, 0xbc, 0xb0, 0x8d, 0xff, 0xb4, 0xa7, 0x80, 0xff, 0xa7, 0x97, 0x76, 0xff, 0x90, 0x81, 0x6a, 0xff, 0x85, 0x78, 0x72, 0xff, 0x8e, 0x8c, 0x8c, 0xff, 0x9e, 0xa2, 0xa6, 0xff, 0xa8, 0xaf, 0xb2, 0xff, 0x9b, 0xa5, 0xa7, 0xff, 0xdb, 0xdf, 0xe8, 0xff, 0xe9, 0xed, 0xf8, 0xff, 0xeb, 0xed, 0xf7, 0xff, 0xc2, 0xce, 0xf1, 0xff, 0x6e, 0x8d, 0xd2, 0xff, 0x5a, 0x7c, 0xc1, 0xff, 0xbf, 0xd5, 0xef, 0xff, 0x99, 0xa4, 0xd0, 0xff, 0xa1, 0xb2, 0xd4, 0xff, 0x98, 0xa6, 0xd9, 0xff, 0x6a, 0x78, 0xb5, 0xff, 0x2d, 0x37, 0x62, 0xff, 0x0f, 0x17, 0x35, 0xff, 0x0e, 0x15, 0x33, 0xff, 0x16, 0x1c, 0x42, 0xff, 0x2b, 0x33, 0x58, 0xff, 0x32, 0x39, 0x60, 0xff, 0x33, 0x39, 0x63, 0xff, 0x1b, 0x23, 0x4f, 0xff, 0x56, 0x63, 0x8d, 0xff, 0x7b, 0x85, 0xb5, 0xff, 0x3b, 0x48, 0x70, 0xff, 0x41, 0x58, 0x84, 0xff, 0x57, 0x70, 0x9e, 0xff, 0x62, 0x7a, 0xa8, 0xff, 0x57, 0x6c, 0x9b, 0xff, 0x4a, 0x5d, 0x8a, 0xff, 0x34, 0x43, 0x6e, 0xff, 0x30, 0x3e, 0x67, 0xff, 0x2b, 0x3c, 0x66, 0xff, 0x28, 0x3a, 0x66, 0xff, 0x2b, 0x3f, 0x6d, 0xff, 0x2f, 0x47, 0x78, 0xff, 0x36, 0x4e, 0x80, 0xff, 0x30, 0x43, 0x6f, 0xff, 0x2c, 0x3a, 0x63, 0xff, 0x28, 0x38, 0x59, 0xff, 0x19, 0x25, 0x46, 0xff, 0x36, 0x4d, 0x7f, 0xff, 0x40, 0x5a, 0x8c, 0xff, 0x49, 0x62, 0x93, 0xff, 0x56, 0x73, 0xab, 0xff, 0x21, 0x36, 0x63, 0xff, 0x03, 0x02, 0x1d, 0xff, 0x03, 0x10, 0x39, 0xff, 0x30, 0x45, 0x79, 0xff, 0x4b, 0x62, 0x96, 0xff, 0x39, 0x53, 0x93, 0xff, 0x24, 0x28, 0x6f, 0xff, 0x38, 0x46, 0x98, 0xff, 0xb9, 0xad, 0xa6, 0xff, 0xcd, 0xb7, 0xa0, 0xff, 0xc5, 0xb5, 0xa0, 0xff, 0xc0, 0xb5, 0xa4, 0xff, 0xba, 0xb4, 0xa4, 0xff, 0xb4, 0xb2, 0xa8, 0xff, 0xab, 0xaf, 0xa4, 0xff, 0xa2, 0xab, 0xa3, 0xff, 0x9c, 0xa2, 0x9d, 0xff, 0x90, 0x97, 0x8f, 0xff, 0x84, 0x8c, 0x80, 0xe7,
|
||||
0xa2, 0x8c, 0x71, 0xd1, 0xaa, 0x97, 0x7d, 0xff, 0xaf, 0xa0, 0x83, 0xff, 0xaf, 0xa0, 0x83, 0xff, 0xad, 0x9b, 0x7c, 0xff, 0xad, 0x99, 0x78, 0xff, 0xb0, 0x9c, 0x79, 0xff, 0xb6, 0xa2, 0x7e, 0xff, 0xba, 0xa7, 0x85, 0xff, 0xbd, 0xaa, 0x89, 0xff, 0xb6, 0xa6, 0x88, 0xff, 0xae, 0x9e, 0x7c, 0xff, 0x9e, 0x8c, 0x71, 0xff, 0x8a, 0x7a, 0x6a, 0xff, 0x80, 0x74, 0x72, 0xff, 0x89, 0x86, 0x89, 0xff, 0x99, 0x9c, 0xa0, 0xff, 0xa6, 0xa8, 0xad, 0xff, 0xa5, 0xac, 0xaf, 0xff, 0xf0, 0xf6, 0xf7, 0xff, 0xed, 0xf8, 0xfd, 0xff, 0xe4, 0xed, 0xfd, 0xff, 0x9d, 0xb3, 0xee, 0xff, 0x56, 0x79, 0xce, 0xff, 0x7e, 0x90, 0xc8, 0xff, 0xdf, 0xef, 0xfb, 0xff, 0xd6, 0xe1, 0xf7, 0xff, 0xa7, 0xb0, 0xd0, 0xff, 0x91, 0x9c, 0xc7, 0xff, 0x6e, 0x7b, 0xaa, 0xff, 0x35, 0x3f, 0x6b, 0xff, 0x27, 0x2c, 0x54, 0xff, 0x1f, 0x24, 0x48, 0xff, 0x2a, 0x34, 0x56, 0xff, 0x38, 0x42, 0x62, 0xff, 0x2e, 0x39, 0x58, 0xff, 0x37, 0x40, 0x60, 0xff, 0x2a, 0x31, 0x50, 0xff, 0x1b, 0x21, 0x43, 0xff, 0x34, 0x3a, 0x5c, 0xff, 0x4c, 0x59, 0x7b, 0xff, 0x46, 0x56, 0x7b, 0xff, 0x45, 0x5b, 0x84, 0xff, 0x44, 0x61, 0x8c, 0xff, 0x44, 0x59, 0x86, 0xff, 0x4e, 0x63, 0x8e, 0xff, 0x36, 0x46, 0x6e, 0xff, 0x2d, 0x3c, 0x62, 0xff, 0x29, 0x3a, 0x60, 0xff, 0x29, 0x3b, 0x64, 0xff, 0x26, 0x3a, 0x66, 0xff, 0x2d, 0x43, 0x70, 0xff, 0x36, 0x4d, 0x7b, 0xff, 0x33, 0x45, 0x70, 0xff, 0x24, 0x35, 0x5c, 0xff, 0x20, 0x31, 0x54, 0xff, 0x26, 0x31, 0x55, 0xff, 0x35, 0x4d, 0x82, 0xff, 0x36, 0x50, 0x86, 0xff, 0x4d, 0x64, 0x99, 0xff, 0x48, 0x61, 0x96, 0xff, 0x1a, 0x2b, 0x5b, 0xff, 0x0a, 0x10, 0x33, 0xff, 0x09, 0x10, 0x3d, 0xff, 0x10, 0x1e, 0x50, 0xff, 0x47, 0x59, 0x8d, 0xff, 0x34, 0x4c, 0x8e, 0xff, 0x3c, 0x45, 0x8b, 0xff, 0x55, 0x5e, 0xa0, 0xff, 0xcb, 0xb6, 0xab, 0xff, 0xcd, 0xba, 0xa1, 0xff, 0xc8, 0xb7, 0xa2, 0xff, 0xc2, 0xb7, 0xa5, 0xff, 0xbd, 0xb7, 0xa7, 0xff, 0xb6, 0xb4, 0xaa, 0xff, 0xaf, 0xb2, 0xa9, 0xff, 0xa6, 0xad, 0xa7, 0xff, 0x9f, 0xa5, 0xa0, 0xff, 0x95, 0x9c, 0x95, 0xff, 0x89, 0x92, 0x88, 0xd1,
|
||||
0x8f, 0x7d, 0x69, 0xb5, 0x98, 0x88, 0x74, 0xff, 0x9d, 0x8f, 0x7c, 0xff, 0x9b, 0x8c, 0x79, 0xff, 0x9a, 0x88, 0x73, 0xff, 0x9a, 0x88, 0x6f, 0xff, 0x9e, 0x8b, 0x6f, 0xff, 0xa5, 0x93, 0x76, 0xff, 0xab, 0x9a, 0x7e, 0xff, 0xae, 0x9e, 0x84, 0xff, 0xa9, 0x99, 0x81, 0xff, 0x9d, 0x8e, 0x73, 0xff, 0x8e, 0x7f, 0x6d, 0xff, 0x81, 0x74, 0x70, 0xff, 0x7d, 0x72, 0x71, 0xff, 0x80, 0x7d, 0x82, 0xff, 0x91, 0x93, 0x98, 0xff, 0x9f, 0xa0, 0xa3, 0xff, 0xaa, 0xb0, 0xb7, 0xff, 0xdc, 0xf3, 0xfc, 0xff, 0xcb, 0xe2, 0xfc, 0xff, 0xaa, 0xc3, 0xf1, 0xff, 0x6d, 0x87, 0xd1, 0xff, 0x52, 0x67, 0xaf, 0xff, 0xc2, 0xd0, 0xeb, 0xff, 0xdd, 0xed, 0xfb, 0xff, 0xdc, 0xea, 0xfc, 0xff, 0xba, 0xc6, 0xed, 0xff, 0x78, 0x8a, 0xb5, 0xff, 0x6f, 0x7f, 0xab, 0xff, 0x56, 0x65, 0x94, 0xff, 0x43, 0x4b, 0x7a, 0xff, 0x30, 0x32, 0x5e, 0xff, 0x31, 0x39, 0x60, 0xff, 0x2c, 0x34, 0x5a, 0xff, 0x31, 0x3a, 0x5f, 0xff, 0x34, 0x3e, 0x60, 0xff, 0x2a, 0x32, 0x53, 0xff, 0x20, 0x23, 0x45, 0xff, 0x17, 0x1f, 0x3f, 0xff, 0x3c, 0x46, 0x68, 0xff, 0x48, 0x50, 0x75, 0xff, 0x2e, 0x3b, 0x5e, 0xff, 0x4e, 0x64, 0x87, 0xff, 0x34, 0x4c, 0x75, 0xff, 0x3a, 0x4f, 0x77, 0xff, 0x3a, 0x4c, 0x71, 0xff, 0x21, 0x31, 0x56, 0xff, 0x22, 0x31, 0x56, 0xff, 0x26, 0x38, 0x5e, 0xff, 0x25, 0x38, 0x61, 0xff, 0x31, 0x45, 0x70, 0xff, 0x33, 0x46, 0x72, 0xff, 0x2f, 0x41, 0x6b, 0xff, 0x30, 0x40, 0x69, 0xff, 0x23, 0x35, 0x5a, 0xff, 0x24, 0x31, 0x58, 0xff, 0x30, 0x49, 0x81, 0xff, 0x30, 0x4b, 0x82, 0xff, 0x44, 0x5a, 0x90, 0xff, 0x0c, 0x13, 0x33, 0xff, 0x03, 0x07, 0x2b, 0xff, 0x14, 0x26, 0x5d, 0xff, 0x0e, 0x1e, 0x4b, 0xff, 0x16, 0x24, 0x55, 0xff, 0x5b, 0x67, 0x9e, 0xff, 0x27, 0x3a, 0x83, 0xff, 0x49, 0x58, 0x98, 0xff, 0x73, 0x78, 0xaa, 0xff, 0xd4, 0xbc, 0xa7, 0xff, 0xca, 0xba, 0xa0, 0xff, 0xc6, 0xb5, 0xa0, 0xff, 0xc1, 0xb6, 0xa4, 0xff, 0xbc, 0xb6, 0xa6, 0xff, 0xb6, 0xb4, 0xaa, 0xff, 0xae, 0xb2, 0xa8, 0xff, 0xa6, 0xad, 0xa7, 0xff, 0x9f, 0xa6, 0xa1, 0xff, 0x96, 0x9e, 0x99, 0xff, 0x8c, 0x94, 0x8c, 0xb5,
|
||||
0x77, 0x6b, 0x64, 0x92, 0x7d, 0x73, 0x6b, 0xff, 0x83, 0x78, 0x70, 0xff, 0x83, 0x75, 0x6e, 0xff, 0x83, 0x77, 0x6c, 0xff, 0x83, 0x75, 0x66, 0xff, 0x85, 0x77, 0x67, 0xff, 0x8d, 0x7e, 0x6d, 0xff, 0x95, 0x86, 0x76, 0xff, 0x9a, 0x8b, 0x7b, 0xff, 0x91, 0x84, 0x75, 0xff, 0x87, 0x79, 0x6d, 0xff, 0x7f, 0x72, 0x6b, 0xff, 0x7c, 0x6f, 0x6d, 0xff, 0x78, 0x71, 0x75, 0xff, 0x80, 0x79, 0x80, 0xff, 0x89, 0x85, 0x8f, 0xff, 0x94, 0x92, 0x9a, 0xff, 0xaa, 0xb1, 0xb0, 0xff, 0xda, 0xf1, 0xfd, 0xff, 0xbc, 0xd5, 0xfc, 0xff, 0x91, 0xac, 0xd9, 0xff, 0x69, 0x81, 0xba, 0xff, 0x68, 0x7b, 0xae, 0xff, 0xd4, 0xe8, 0xfc, 0xff, 0xd4, 0xe5, 0xf8, 0xff, 0xc9, 0xdd, 0xf8, 0xff, 0xb0, 0xbe, 0xe2, 0xff, 0xa2, 0xa6, 0xc2, 0xff, 0xcd, 0xd1, 0xe0, 0xff, 0xa6, 0xb4, 0xcd, 0xff, 0x70, 0x84, 0xb1, 0xff, 0x51, 0x62, 0x94, 0xff, 0x48, 0x58, 0x8a, 0xff, 0x43, 0x50, 0x80, 0xff, 0x38, 0x42, 0x70, 0xff, 0x32, 0x3d, 0x67, 0xff, 0x32, 0x3b, 0x65, 0xff, 0x24, 0x2d, 0x57, 0xff, 0x2c, 0x36, 0x5f, 0xff, 0x27, 0x31, 0x5b, 0xff, 0x43, 0x4d, 0x76, 0xff, 0x2d, 0x38, 0x5b, 0xff, 0x2b, 0x3b, 0x54, 0xff, 0x55, 0x6e, 0x98, 0xff, 0x2f, 0x42, 0x70, 0xff, 0x2d, 0x3d, 0x5c, 0xff, 0x2d, 0x37, 0x59, 0xff, 0x29, 0x3d, 0x63, 0xff, 0x2c, 0x3c, 0x60, 0xff, 0x27, 0x3a, 0x62, 0xff, 0x29, 0x3d, 0x6a, 0xff, 0x2f, 0x3f, 0x6b, 0xff, 0x2b, 0x3d, 0x63, 0xff, 0x27, 0x39, 0x60, 0xff, 0x20, 0x2d, 0x53, 0xff, 0x24, 0x32, 0x56, 0xff, 0x2a, 0x46, 0x7c, 0xff, 0x2e, 0x49, 0x80, 0xff, 0x2d, 0x3e, 0x6d, 0xff, 0x20, 0x2a, 0x49, 0xff, 0x56, 0x64, 0x8e, 0xff, 0x62, 0x7b, 0xac, 0xff, 0x4f, 0x62, 0x94, 0xff, 0x50, 0x67, 0xa7, 0xff, 0x44, 0x57, 0x97, 0xff, 0x35, 0x44, 0x89, 0xff, 0x56, 0x62, 0xab, 0xff, 0x88, 0x87, 0x8e, 0xff, 0xd1, 0xbc, 0xa4, 0xff, 0xcc, 0xba, 0x9f, 0xff, 0xc6, 0xb6, 0xa0, 0xff, 0xc2, 0xb6, 0xa3, 0xff, 0xbd, 0xb5, 0xa4, 0xff, 0xb8, 0xb4, 0xa6, 0xff, 0xb0, 0xb2, 0xa7, 0xff, 0xa5, 0xad, 0xa7, 0xff, 0x9e, 0xa6, 0x9f, 0xff, 0x95, 0x9c, 0x95, 0xff, 0x8d, 0x94, 0x8a, 0x92,
|
||||
0x67, 0x62, 0x64, 0x68, 0x68, 0x64, 0x65, 0xff, 0x6b, 0x65, 0x66, 0xff, 0x6e, 0x67, 0x67, 0xff, 0x71, 0x69, 0x67, 0xff, 0x73, 0x6a, 0x66, 0xff, 0x74, 0x6c, 0x66, 0xff, 0x78, 0x6f, 0x68, 0xff, 0x7b, 0x72, 0x6b, 0xff, 0x7c, 0x74, 0x6d, 0xff, 0x7a, 0x71, 0x6b, 0xff, 0x75, 0x6c, 0x6a, 0xff, 0x73, 0x6a, 0x6b, 0xff, 0x75, 0x6c, 0x70, 0xff, 0x77, 0x70, 0x76, 0xff, 0x7c, 0x77, 0x7f, 0xff, 0x82, 0x7e, 0x88, 0xff, 0x86, 0x82, 0x8d, 0xff, 0xa7, 0xac, 0xb0, 0xff, 0xdc, 0xf0, 0xfe, 0xff, 0xaf, 0xc5, 0xee, 0xff, 0x95, 0xac, 0xd9, 0xff, 0x55, 0x6b, 0x9e, 0xff, 0x90, 0xa2, 0xc8, 0xff, 0xdf, 0xf2, 0xfe, 0xff, 0xd2, 0xed, 0xf7, 0xff, 0xe0, 0xec, 0xf4, 0xff, 0xf6, 0xf8, 0xfa, 0xff, 0xf6, 0xf8, 0xfa, 0xff, 0xe5, 0xef, 0xf7, 0xff, 0xbb, 0xc6, 0xef, 0xff, 0x76, 0x82, 0xd1, 0xff, 0x61, 0x6f, 0xbe, 0xff, 0x55, 0x64, 0xac, 0xff, 0x4d, 0x59, 0xa0, 0xff, 0x48, 0x52, 0x98, 0xff, 0x42, 0x4c, 0x90, 0xff, 0x39, 0x47, 0x85, 0xff, 0x34, 0x42, 0x7b, 0xff, 0x35, 0x42, 0x75, 0xff, 0x34, 0x3f, 0x72, 0xff, 0x3b, 0x45, 0x76, 0xff, 0x2a, 0x37, 0x5e, 0xff, 0x21, 0x2f, 0x45, 0xff, 0x74, 0x88, 0xb2, 0xff, 0x35, 0x44, 0x73, 0xff, 0x20, 0x32, 0x4d, 0xff, 0x26, 0x37, 0x54, 0xff, 0x34, 0x47, 0x67, 0xff, 0x25, 0x36, 0x56, 0xff, 0x32, 0x46, 0x69, 0xff, 0x35, 0x46, 0x72, 0xff, 0x32, 0x42, 0x6e, 0xff, 0x28, 0x39, 0x5e, 0xff, 0x2c, 0x3b, 0x62, 0xff, 0x1d, 0x2c, 0x51, 0xff, 0x28, 0x36, 0x5b, 0xff, 0x2c, 0x46, 0x7e, 0xff, 0x28, 0x40, 0x77, 0xff, 0x26, 0x43, 0x77, 0xff, 0x5f, 0x76, 0xa9, 0xff, 0x5b, 0x73, 0xa5, 0xff, 0x49, 0x67, 0x9b, 0xff, 0x31, 0x49, 0x8a, 0xff, 0x29, 0x38, 0x76, 0xff, 0x2e, 0x38, 0x7d, 0xff, 0x60, 0x65, 0xba, 0xff, 0x43, 0x52, 0x7a, 0xff, 0x76, 0x6e, 0x6b, 0xff, 0xd1, 0xbb, 0xa2, 0xff, 0xcc, 0xb8, 0x9e, 0xff, 0xc7, 0xb5, 0x9e, 0xff, 0xc2, 0xb4, 0xa1, 0xff, 0xbe, 0xb3, 0xa2, 0xff, 0xb8, 0xb2, 0xa0, 0xff, 0xae, 0xaf, 0xa4, 0xff, 0xa5, 0xaa, 0xa2, 0xff, 0x9d, 0xa3, 0x9b, 0xff, 0x91, 0x99, 0x90, 0xff, 0x8b, 0x91, 0x87, 0x68,
|
||||
0x5f, 0x5c, 0x65, 0x43, 0x5f, 0x5e, 0x66, 0xfb, 0x61, 0x61, 0x68, 0xff, 0x64, 0x63, 0x69, 0xff, 0x67, 0x64, 0x69, 0xff, 0x6a, 0x65, 0x6b, 0xff, 0x6b, 0x67, 0x6a, 0xff, 0x6c, 0x68, 0x6b, 0xff, 0x6e, 0x69, 0x6d, 0xff, 0x6d, 0x68, 0x6b, 0xff, 0x6c, 0x66, 0x6a, 0xff, 0x6a, 0x65, 0x6a, 0xff, 0x6b, 0x67, 0x6d, 0xff, 0x6f, 0x6b, 0x73, 0xff, 0x75, 0x70, 0x7a, 0xff, 0x79, 0x74, 0x7e, 0xff, 0x7c, 0x78, 0x83, 0xff, 0x80, 0x79, 0x86, 0xff, 0x8a, 0x8d, 0x95, 0xff, 0xdd, 0xf1, 0xf7, 0xff, 0xaf, 0xc6, 0xea, 0xff, 0x8c, 0xa5, 0xcd, 0xff, 0x68, 0x7f, 0xa7, 0xff, 0xc0, 0xd2, 0xed, 0xff, 0xdb, 0xf0, 0xfb, 0xff, 0xe1, 0xf4, 0xfc, 0xff, 0xcd, 0xd7, 0xf9, 0xff, 0xa7, 0xac, 0xef, 0xff, 0x86, 0x93, 0xde, 0xff, 0x71, 0x78, 0xd8, 0xff, 0x62, 0x62, 0xc8, 0xff, 0x62, 0x6b, 0xc3, 0xff, 0x5e, 0x6e, 0xb7, 0xff, 0x65, 0x70, 0xba, 0xff, 0x52, 0x5d, 0xa7, 0xff, 0x4f, 0x58, 0xa5, 0xff, 0x3a, 0x40, 0x8b, 0xff, 0x34, 0x3c, 0x7e, 0xff, 0x2c, 0x34, 0x6e, 0xff, 0x29, 0x2a, 0x5c, 0xff, 0x20, 0x24, 0x4d, 0xff, 0x1d, 0x25, 0x4c, 0xff, 0x1c, 0x2a, 0x4e, 0xff, 0x33, 0x46, 0x5f, 0xff, 0x7f, 0x97, 0xbf, 0xff, 0x42, 0x4e, 0x7c, 0xff, 0x1b, 0x2c, 0x47, 0xff, 0x24, 0x37, 0x51, 0xff, 0x1c, 0x2b, 0x45, 0xff, 0x29, 0x3b, 0x5c, 0xff, 0x2a, 0x3b, 0x5f, 0xff, 0x36, 0x45, 0x6f, 0xff, 0x2d, 0x3c, 0x67, 0xff, 0x23, 0x34, 0x58, 0xff, 0x27, 0x35, 0x5a, 0xff, 0x22, 0x32, 0x58, 0xff, 0x23, 0x33, 0x59, 0xff, 0x27, 0x3f, 0x78, 0xff, 0x36, 0x4b, 0x83, 0xff, 0x4c, 0x60, 0x9c, 0xff, 0x47, 0x5a, 0x92, 0xff, 0x5c, 0x6b, 0xa2, 0xff, 0x59, 0x66, 0xa0, 0xff, 0x5f, 0x69, 0x99, 0xff, 0x53, 0x60, 0x99, 0xff, 0x55, 0x64, 0xb5, 0xff, 0x52, 0x5e, 0xa4, 0xff, 0x16, 0x28, 0x1f, 0xff, 0xa6, 0x9c, 0x93, 0xff, 0xce, 0xb8, 0x9d, 0xff, 0xcc, 0xb7, 0x9d, 0xff, 0xc7, 0xb5, 0x9c, 0xff, 0xc1, 0xb3, 0x9e, 0xff, 0xbd, 0xb2, 0xa0, 0xff, 0xb5, 0xad, 0x9a, 0xff, 0xae, 0xab, 0x9d, 0xff, 0xa3, 0xa7, 0x9c, 0xff, 0x9d, 0xa1, 0x96, 0xff, 0x8e, 0x94, 0x8b, 0xfa, 0x89, 0x8f, 0x84, 0x43,
|
||||
0x5a, 0x58, 0x61, 0x29, 0x5b, 0x59, 0x63, 0xef, 0x5d, 0x5c, 0x64, 0xff, 0x5e, 0x5e, 0x67, 0xff, 0x62, 0x5f, 0x68, 0xff, 0x64, 0x60, 0x6a, 0xff, 0x66, 0x62, 0x6a, 0xff, 0x68, 0x64, 0x6b, 0xff, 0x68, 0x65, 0x6b, 0xff, 0x69, 0x65, 0x6b, 0xff, 0x6c, 0x65, 0x6c, 0xff, 0x69, 0x63, 0x6a, 0xff, 0x6a, 0x66, 0x6c, 0xff, 0x6e, 0x6a, 0x72, 0xff, 0x72, 0x6f, 0x7b, 0xff, 0x76, 0x72, 0x7d, 0xff, 0x7a, 0x76, 0x81, 0xff, 0x7f, 0x79, 0x84, 0xff, 0x77, 0x79, 0x7f, 0xff, 0xd6, 0xe9, 0xee, 0xff, 0xb8, 0xcf, 0xed, 0xff, 0x7c, 0x9a, 0xba, 0xff, 0x94, 0xaf, 0xd0, 0xff, 0xc1, 0xd5, 0xec, 0xff, 0xd5, 0xec, 0xfa, 0xff, 0xc6, 0xd4, 0xf7, 0xff, 0x74, 0x87, 0xdd, 0xff, 0x6a, 0x84, 0xd4, 0xff, 0xab, 0xbe, 0xdf, 0xff, 0x90, 0xb4, 0xd7, 0xff, 0xae, 0xcc, 0xe5, 0xff, 0xa1, 0xbc, 0xde, 0xff, 0x98, 0xb5, 0xe2, 0xff, 0xad, 0xc4, 0xd9, 0xff, 0x81, 0x96, 0xb3, 0xff, 0xa5, 0xbd, 0xda, 0xff, 0x6b, 0x81, 0xa6, 0xff, 0x54, 0x71, 0x9a, 0xff, 0x34, 0x4e, 0x71, 0xff, 0x0d, 0x15, 0x39, 0xff, 0x03, 0x01, 0x11, 0xff, 0x0b, 0x0e, 0x23, 0xff, 0x20, 0x2e, 0x4c, 0xff, 0x3a, 0x50, 0x6f, 0xff, 0x80, 0x9f, 0xc4, 0xff, 0x36, 0x42, 0x6f, 0xff, 0x17, 0x23, 0x3e, 0xff, 0x19, 0x29, 0x41, 0xff, 0x25, 0x32, 0x4b, 0xff, 0x35, 0x46, 0x6a, 0xff, 0x2c, 0x39, 0x61, 0xff, 0x34, 0x40, 0x69, 0xff, 0x2a, 0x39, 0x62, 0xff, 0x27, 0x36, 0x5a, 0xff, 0x27, 0x33, 0x58, 0xff, 0x23, 0x34, 0x59, 0xff, 0x20, 0x2f, 0x57, 0xff, 0x23, 0x39, 0x72, 0xff, 0x33, 0x46, 0x80, 0xff, 0x4f, 0x69, 0xa5, 0xff, 0x4d, 0x67, 0x9d, 0xff, 0x5d, 0x71, 0xa4, 0xff, 0x6a, 0x76, 0xaf, 0xff, 0x6a, 0x7c, 0xb7, 0xff, 0x55, 0x6e, 0xb3, 0xff, 0x58, 0x62, 0xa7, 0xff, 0x1c, 0x21, 0x32, 0xff, 0x49, 0x46, 0x59, 0xff, 0xb6, 0xab, 0x99, 0xff, 0xc6, 0xad, 0x98, 0xff, 0xc3, 0xaf, 0x94, 0xff, 0xc5, 0xb1, 0x97, 0xff, 0xc1, 0xb1, 0x9c, 0xff, 0xba, 0xad, 0x9b, 0xff, 0xaf, 0xa7, 0x91, 0xff, 0xa9, 0xa7, 0x97, 0xff, 0xa1, 0xa2, 0x97, 0xff, 0x9a, 0x9d, 0x91, 0xff, 0x8a, 0x8f, 0x84, 0xef, 0x84, 0x89, 0x7d, 0x29,
|
||||
0x58, 0x55, 0x5e, 0x0b, 0x58, 0x55, 0x5e, 0xe1, 0x5a, 0x57, 0x5f, 0xff, 0x5b, 0x58, 0x62, 0xff, 0x5e, 0x5b, 0x64, 0xff, 0x5e, 0x5c, 0x65, 0xff, 0x5f, 0x5d, 0x64, 0xff, 0x60, 0x5e, 0x64, 0xff, 0x61, 0x5e, 0x64, 0xff, 0x62, 0x60, 0x67, 0xff, 0x5f, 0x5e, 0x68, 0xff, 0x5f, 0x5d, 0x66, 0xff, 0x65, 0x62, 0x6b, 0xff, 0x6d, 0x69, 0x70, 0xff, 0x6f, 0x6d, 0x76, 0xff, 0x73, 0x6f, 0x7a, 0xff, 0x76, 0x72, 0x7d, 0xff, 0x7d, 0x77, 0x82, 0xff, 0x73, 0x72, 0x79, 0xff, 0xd2, 0xdf, 0xe4, 0xff, 0xc4, 0xdc, 0xf3, 0xff, 0x7c, 0x99, 0xb9, 0xff, 0x78, 0x91, 0xbe, 0xff, 0x7b, 0x91, 0xb6, 0xff, 0xb9, 0xce, 0xeb, 0xff, 0x97, 0xa5, 0xe9, 0xff, 0x88, 0x9d, 0xee, 0xff, 0xe7, 0xef, 0xe8, 0xff, 0xf9, 0xfb, 0xfa, 0xff, 0xa8, 0xb8, 0xcc, 0xff, 0x76, 0x88, 0x8c, 0xff, 0x59, 0x62, 0x70, 0xff, 0x32, 0x33, 0x40, 0xff, 0x32, 0x33, 0x36, 0xff, 0x06, 0x03, 0x00, 0xff, 0x58, 0x61, 0x6d, 0xff, 0x59, 0x6c, 0x92, 0xff, 0x46, 0x5b, 0x7d, 0xff, 0x2f, 0x3e, 0x60, 0xff, 0x0a, 0x16, 0x34, 0xff, 0x1a, 0x23, 0x46, 0xff, 0x1f, 0x26, 0x54, 0xff, 0x24, 0x38, 0x55, 0xff, 0x3e, 0x56, 0x73, 0xff, 0x4f, 0x69, 0x92, 0xff, 0x2e, 0x3e, 0x68, 0xff, 0x1b, 0x29, 0x41, 0xff, 0x1a, 0x25, 0x42, 0xff, 0x27, 0x38, 0x55, 0xff, 0x2b, 0x3a, 0x5a, 0xff, 0x36, 0x45, 0x67, 0xff, 0x2e, 0x3b, 0x5f, 0xff, 0x2d, 0x39, 0x5e, 0xff, 0x29, 0x35, 0x5b, 0xff, 0x2c, 0x39, 0x60, 0xff, 0x2a, 0x34, 0x5b, 0xff, 0x1e, 0x2e, 0x57, 0xff, 0x2d, 0x40, 0x74, 0xff, 0x3b, 0x4b, 0x8a, 0xff, 0x4e, 0x62, 0xa9, 0xff, 0x5d, 0x6b, 0xa9, 0xff, 0x52, 0x66, 0xb0, 0xff, 0x56, 0x63, 0xb0, 0xff, 0x56, 0x63, 0xb7, 0xff, 0x44, 0x54, 0x82, 0xff, 0x1e, 0x1a, 0x34, 0xff, 0x0c, 0x13, 0x1c, 0xff, 0x8c, 0x81, 0x80, 0xff, 0xc2, 0xa8, 0x91, 0xff, 0xbf, 0xa8, 0x8c, 0xff, 0xc2, 0xa8, 0x8d, 0xff, 0xbf, 0xab, 0x8f, 0xff, 0xbc, 0xac, 0x95, 0xff, 0xba, 0xa8, 0x95, 0xff, 0xad, 0xa1, 0x8b, 0xff, 0xa8, 0xa2, 0x91, 0xff, 0x9e, 0x9f, 0x91, 0xff, 0x98, 0x9a, 0x8b, 0xff, 0x8a, 0x8a, 0x7c, 0xe1, 0x81, 0x82, 0x73, 0x0b,
|
||||
0x00, 0x00, 0x00, 0x00, 0x55, 0x53, 0x5b, 0xa8, 0x56, 0x53, 0x5b, 0xff, 0x59, 0x56, 0x5d, 0xff, 0x5c, 0x59, 0x60, 0xff, 0x5e, 0x5b, 0x62, 0xff, 0x5f, 0x5d, 0x63, 0xff, 0x5e, 0x5d, 0x61, 0xff, 0x5e, 0x5c, 0x61, 0xff, 0x5e, 0x5c, 0x62, 0xff, 0x5b, 0x59, 0x61, 0xff, 0x5b, 0x57, 0x60, 0xff, 0x61, 0x5c, 0x65, 0xff, 0x69, 0x63, 0x6e, 0xff, 0x6d, 0x6a, 0x73, 0xff, 0x72, 0x6e, 0x78, 0xff, 0x74, 0x6f, 0x7a, 0xff, 0x79, 0x73, 0x7f, 0xff, 0x6e, 0x6b, 0x76, 0xff, 0xbe, 0xc9, 0xd5, 0xff, 0xd1, 0xe6, 0xfc, 0xff, 0xa1, 0xba, 0xe2, 0xff, 0x37, 0x53, 0x83, 0xff, 0x56, 0x75, 0x9d, 0xff, 0x68, 0x7e, 0xb9, 0xff, 0x38, 0x4d, 0xb5, 0xff, 0xd2, 0xcd, 0xd4, 0xff, 0xcc, 0xe5, 0xf7, 0xff, 0x37, 0x6f, 0xce, 0xff, 0x00, 0x19, 0x6b, 0xff, 0x00, 0x00, 0x06, 0xff, 0x00, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, 0x09, 0x0a, 0x11, 0xff, 0x17, 0x14, 0x30, 0xff, 0x23, 0x23, 0x41, 0xff, 0x29, 0x2d, 0x5b, 0xff, 0x31, 0x35, 0x6f, 0xff, 0x31, 0x3d, 0x6a, 0xff, 0x2e, 0x3c, 0x6a, 0xff, 0x2e, 0x43, 0x61, 0xff, 0x40, 0x57, 0x77, 0xff, 0x47, 0x5e, 0x83, 0xff, 0x29, 0x37, 0x5f, 0xff, 0x17, 0x24, 0x3c, 0xff, 0x22, 0x2f, 0x4b, 0xff, 0x2b, 0x3c, 0x5a, 0xff, 0x32, 0x40, 0x60, 0xff, 0x2c, 0x3a, 0x5c, 0xff, 0x37, 0x44, 0x68, 0xff, 0x29, 0x35, 0x5a, 0xff, 0x33, 0x40, 0x65, 0xff, 0x2b, 0x37, 0x5f, 0xff, 0x28, 0x34, 0x57, 0xff, 0x28, 0x39, 0x62, 0xff, 0x42, 0x54, 0x8b, 0xff, 0x36, 0x47, 0x83, 0xff, 0x52, 0x61, 0xaa, 0xff, 0x5e, 0x6b, 0xb0, 0xff, 0x55, 0x67, 0xaf, 0xff, 0x5a, 0x61, 0xa0, 0xff, 0x26, 0x26, 0x47, 0xff, 0x02, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, 0x51, 0x55, 0x4f, 0xff, 0xbb, 0xa6, 0x94, 0xff, 0xbf, 0xa5, 0x89, 0xff, 0xbc, 0xa6, 0x8a, 0xff, 0xc3, 0xa9, 0x8d, 0xff, 0xbe, 0xa9, 0x8d, 0xff, 0xbb, 0xaa, 0x92, 0xff, 0xbb, 0xa9, 0x95, 0xff, 0xb3, 0xa3, 0x8c, 0xff, 0xa9, 0x9f, 0x8e, 0xff, 0x9f, 0x9b, 0x8d, 0xff, 0x9a, 0x98, 0x89, 0xff, 0x8a, 0x89, 0x7b, 0xa8, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x5b, 0x5b, 0x5c, 0x4a, 0x5c, 0x59, 0x59, 0xff, 0x5d, 0x57, 0x59, 0xff, 0x62, 0x5c, 0x5d, 0xff, 0x68, 0x62, 0x63, 0xff, 0x69, 0x68, 0x67, 0xff, 0x6a, 0x6b, 0x69, 0xff, 0x69, 0x6a, 0x68, 0xff, 0x67, 0x67, 0x66, 0xff, 0x64, 0x64, 0x63, 0xff, 0x5f, 0x5c, 0x5f, 0xff, 0x5f, 0x5b, 0x60, 0xff, 0x65, 0x5e, 0x65, 0xff, 0x69, 0x66, 0x6b, 0xff, 0x6f, 0x6a, 0x72, 0xff, 0x72, 0x6c, 0x75, 0xff, 0x76, 0x6f, 0x7a, 0xff, 0x6e, 0x6d, 0x76, 0xff, 0x9a, 0xa6, 0xad, 0xff, 0xd7, 0xeb, 0xfa, 0xff, 0xc8, 0xe1, 0xfb, 0xff, 0x7d, 0x97, 0xc3, 0xff, 0x6f, 0x8e, 0xb6, 0xff, 0x7c, 0x92, 0xc0, 0xff, 0x78, 0x75, 0xa6, 0xff, 0x77, 0x7d, 0xa3, 0xff, 0x87, 0xc5, 0xee, 0xff, 0x39, 0x6a, 0xc3, 0xff, 0x27, 0x32, 0x6d, 0xff, 0x38, 0x37, 0x3a, 0xff, 0x47, 0x4a, 0x4a, 0xff, 0x69, 0x69, 0x6a, 0xff, 0x8b, 0x83, 0x9a, 0xff, 0x9a, 0x9a, 0xcf, 0xff, 0x75, 0x79, 0xbd, 0xff, 0x50, 0x53, 0x9a, 0xff, 0x42, 0x48, 0x87, 0xff, 0x41, 0x4c, 0x87, 0xff, 0x35, 0x47, 0x76, 0xff, 0x30, 0x41, 0x6d, 0xff, 0x3b, 0x4a, 0x77, 0xff, 0x24, 0x39, 0x52, 0xff, 0x3d, 0x4e, 0x6f, 0xff, 0x33, 0x46, 0x67, 0xff, 0x28, 0x33, 0x58, 0xff, 0x1a, 0x26, 0x3c, 0xff, 0x29, 0x35, 0x51, 0xff, 0x25, 0x32, 0x51, 0xff, 0x2a, 0x36, 0x57, 0xff, 0x34, 0x3f, 0x62, 0xff, 0x2c, 0x38, 0x5c, 0xff, 0x35, 0x3f, 0x64, 0xff, 0x2f, 0x3b, 0x60, 0xff, 0x25, 0x31, 0x5a, 0xff, 0x27, 0x34, 0x54, 0xff, 0x2e, 0x3f, 0x68, 0xff, 0x43, 0x55, 0x8d, 0xff, 0x31, 0x43, 0x7c, 0xff, 0x20, 0x31, 0x6a, 0xff, 0x26, 0x38, 0x6e, 0xff, 0x2b, 0x41, 0x73, 0xff, 0x15, 0x1c, 0x35, 0xff, 0x04, 0x02, 0x02, 0xff, 0x0a, 0x03, 0x09, 0xff, 0x0e, 0x12, 0x19, 0xff, 0xa4, 0x99, 0x86, 0xff, 0xc5, 0xa7, 0x89, 0xff, 0xbd, 0xa2, 0x89, 0xff, 0xbc, 0xa5, 0x88, 0xff, 0xc5, 0xa8, 0x8a, 0xff, 0xc0, 0xaa, 0x8d, 0xff, 0xbd, 0xac, 0x92, 0xff, 0xbe, 0xab, 0x95, 0xff, 0xb2, 0xa1, 0x88, 0xff, 0xa7, 0x9d, 0x8b, 0xff, 0x9e, 0x99, 0x8a, 0xff, 0x96, 0x93, 0x84, 0xff, 0x88, 0x87, 0x78, 0x4a, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x63, 0x65, 0x5d, 0x0a, 0x64, 0x63, 0x5b, 0xe8, 0x64, 0x60, 0x58, 0xff, 0x66, 0x61, 0x59, 0xff, 0x6a, 0x66, 0x5f, 0xff, 0x6c, 0x6e, 0x65, 0xff, 0x70, 0x74, 0x6b, 0xff, 0x72, 0x77, 0x6c, 0xff, 0x70, 0x75, 0x6b, 0xff, 0x6e, 0x70, 0x68, 0xff, 0x69, 0x69, 0x63, 0xff, 0x65, 0x60, 0x60, 0xff, 0x63, 0x5d, 0x60, 0xff, 0x63, 0x5f, 0x64, 0xff, 0x67, 0x63, 0x69, 0xff, 0x6c, 0x68, 0x70, 0xff, 0x70, 0x6d, 0x74, 0xff, 0x6e, 0x6f, 0x72, 0xff, 0x7b, 0x85, 0x87, 0xff, 0xd8, 0xeb, 0xf6, 0xff, 0xcd, 0xe5, 0xfa, 0xff, 0xad, 0xc6, 0xea, 0xff, 0x8d, 0xa7, 0xcd, 0xff, 0xc9, 0xd9, 0xe9, 0xff, 0xf8, 0xfd, 0xff, 0xff, 0xd8, 0xdb, 0xf0, 0xff, 0xc5, 0xc4, 0xdc, 0xff, 0xc4, 0xc4, 0xce, 0xff, 0xd8, 0xd7, 0xe0, 0xff, 0xf8, 0xf6, 0xf3, 0xff, 0xfa, 0xfb, 0xff, 0xff, 0xdf, 0xdd, 0xff, 0xff, 0xb5, 0xba, 0xeb, 0xff, 0x76, 0x75, 0xd7, 0xff, 0x43, 0x46, 0xa0, 0xff, 0x4a, 0x52, 0x90, 0xff, 0x4f, 0x5b, 0x92, 0xff, 0x46, 0x4f, 0x85, 0xff, 0x31, 0x3b, 0x6c, 0xff, 0x3b, 0x4a, 0x78, 0xff, 0x20, 0x2f, 0x55, 0xff, 0x28, 0x39, 0x4e, 0xff, 0x3c, 0x48, 0x69, 0xff, 0x2e, 0x3f, 0x5e, 0xff, 0x28, 0x31, 0x51, 0xff, 0x1e, 0x29, 0x3f, 0xff, 0x1e, 0x2a, 0x47, 0xff, 0x2b, 0x38, 0x57, 0xff, 0x3a, 0x46, 0x67, 0xff, 0x33, 0x3e, 0x61, 0xff, 0x2d, 0x39, 0x5e, 0xff, 0x2a, 0x36, 0x5b, 0xff, 0x31, 0x3e, 0x64, 0xff, 0x2c, 0x39, 0x61, 0xff, 0x26, 0x33, 0x52, 0xff, 0x2d, 0x3c, 0x67, 0xff, 0x41, 0x52, 0x8b, 0xff, 0x28, 0x3c, 0x74, 0xff, 0x1f, 0x2d, 0x67, 0xff, 0x25, 0x3a, 0x72, 0xff, 0x2b, 0x40, 0x73, 0xff, 0x0c, 0x0e, 0x1f, 0xff, 0x05, 0x04, 0x03, 0xff, 0x02, 0x03, 0x07, 0xff, 0x47, 0x44, 0x42, 0xff, 0xbd, 0xa7, 0x8c, 0xff, 0xbf, 0xa3, 0x87, 0xff, 0xb8, 0xa0, 0x89, 0xff, 0xbc, 0xa4, 0x86, 0xff, 0xc6, 0xaa, 0x8a, 0xff, 0xc0, 0xab, 0x8d, 0xff, 0xbe, 0xac, 0x92, 0xff, 0xbc, 0xa9, 0x92, 0xff, 0xaf, 0xa1, 0x87, 0xff, 0xa6, 0x9e, 0x8a, 0xff, 0x96, 0x96, 0x85, 0xff, 0x8e, 0x8e, 0x7e, 0xe8, 0x8a, 0x89, 0x79, 0x0a, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x68, 0x6c, 0x5a, 0x03, 0x67, 0x6b, 0x59, 0xa1, 0x6c, 0x68, 0x57, 0xff, 0x6b, 0x65, 0x51, 0xff, 0x69, 0x6a, 0x57, 0xff, 0x6c, 0x71, 0x60, 0xff, 0x6e, 0x78, 0x68, 0xff, 0x70, 0x7f, 0x6b, 0xff, 0x72, 0x7f, 0x6c, 0xff, 0x72, 0x7a, 0x6d, 0xff, 0x70, 0x74, 0x66, 0xff, 0x6c, 0x69, 0x61, 0xff, 0x67, 0x5f, 0x5f, 0xff, 0x62, 0x5b, 0x5d, 0xff, 0x63, 0x5d, 0x63, 0xff, 0x65, 0x64, 0x68, 0xff, 0x69, 0x6e, 0x6d, 0xff, 0x6f, 0x72, 0x74, 0xff, 0x69, 0x6e, 0x6c, 0xff, 0xbf, 0xcf, 0xdd, 0xff, 0xca, 0xdd, 0xf9, 0xff, 0xbd, 0xd1, 0xec, 0xff, 0x98, 0xb5, 0xdd, 0xff, 0xd1, 0xe0, 0xee, 0xff, 0xf9, 0xfa, 0xfd, 0xff, 0xe4, 0xe6, 0xf2, 0xff, 0xef, 0xf0, 0xfa, 0xff, 0xfa, 0xf9, 0xfe, 0xff, 0xf4, 0xf6, 0xfb, 0xff, 0xd9, 0xdf, 0xf7, 0xff, 0x9e, 0xa4, 0xe7, 0xff, 0x66, 0x65, 0xda, 0xff, 0x51, 0x53, 0xb4, 0xff, 0x52, 0x59, 0xa0, 0xff, 0x5a, 0x65, 0x98, 0xff, 0x50, 0x5d, 0x8c, 0xff, 0x44, 0x4e, 0x7f, 0xff, 0x2e, 0x37, 0x66, 0xff, 0x2b, 0x3c, 0x6b, 0xff, 0x27, 0x38, 0x65, 0xff, 0x1f, 0x2f, 0x48, 0xff, 0x31, 0x3f, 0x56, 0xff, 0x2f, 0x38, 0x62, 0xff, 0x27, 0x31, 0x50, 0xff, 0x1f, 0x2a, 0x40, 0xff, 0x24, 0x2e, 0x46, 0xff, 0x29, 0x34, 0x55, 0xff, 0x2d, 0x3a, 0x5c, 0xff, 0x2a, 0x36, 0x57, 0xff, 0x23, 0x2d, 0x4e, 0xff, 0x3b, 0x48, 0x6c, 0xff, 0x34, 0x43, 0x6b, 0xff, 0x29, 0x37, 0x5b, 0xff, 0x2a, 0x37, 0x59, 0xff, 0x21, 0x2c, 0x4b, 0xff, 0x32, 0x3f, 0x6b, 0xff, 0x3a, 0x4c, 0x84, 0xff, 0x23, 0x36, 0x6e, 0xff, 0x21, 0x32, 0x6c, 0xff, 0x2d, 0x42, 0x75, 0xff, 0x2a, 0x3c, 0x73, 0xff, 0x04, 0x06, 0x15, 0xff, 0x05, 0x05, 0x03, 0xff, 0x01, 0x04, 0x09, 0xff, 0x74, 0x71, 0x73, 0xff, 0xc0, 0xa4, 0x83, 0xff, 0xbb, 0xa2, 0x87, 0xff, 0xb9, 0x9e, 0x85, 0xff, 0xbb, 0xa3, 0x86, 0xff, 0xc1, 0xa9, 0x89, 0xff, 0xbf, 0xa8, 0x8c, 0xff, 0xbc, 0xa9, 0x8f, 0xff, 0xb6, 0xa7, 0x8e, 0xff, 0xad, 0x9d, 0x89, 0xff, 0xa3, 0x9b, 0x87, 0xff, 0x94, 0x91, 0x82, 0xff, 0x8d, 0x8b, 0x7d, 0xa1, 0x87, 0x86, 0x78, 0x03, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x70, 0x58, 0x51, 0x70, 0x6e, 0x54, 0xfb, 0x6f, 0x6a, 0x4e, 0xff, 0x6c, 0x6d, 0x53, 0xff, 0x6e, 0x74, 0x5c, 0xff, 0x72, 0x7e, 0x64, 0xff, 0x73, 0x84, 0x6b, 0xff, 0x74, 0x85, 0x6d, 0xff, 0x77, 0x82, 0x6b, 0xff, 0x76, 0x7d, 0x64, 0xff, 0x73, 0x74, 0x61, 0xff, 0x6b, 0x66, 0x5b, 0xff, 0x64, 0x5b, 0x5a, 0xff, 0x61, 0x5c, 0x5e, 0xff, 0x62, 0x62, 0x65, 0xff, 0x68, 0x6e, 0x6d, 0xff, 0x6d, 0x76, 0x75, 0xff, 0x68, 0x75, 0x70, 0xff, 0x9c, 0xae, 0xb0, 0xff, 0xd0, 0xe2, 0xf4, 0xff, 0xc4, 0xd6, 0xec, 0xff, 0xa6, 0xbf, 0xe0, 0xff, 0xd8, 0xe8, 0xf6, 0xff, 0xfb, 0xfd, 0xfe, 0xff, 0xdb, 0xe3, 0xf5, 0xff, 0xc9, 0xd2, 0xf6, 0xff, 0xc1, 0xca, 0xf0, 0xff, 0xa7, 0xb0, 0xed, 0xff, 0x95, 0x9b, 0xe6, 0xff, 0x86, 0x92, 0xcf, 0xff, 0x71, 0x7e, 0xb9, 0xff, 0x63, 0x6e, 0x9e, 0xff, 0x51, 0x5a, 0x8a, 0xff, 0x43, 0x4b, 0x79, 0xff, 0x31, 0x3c, 0x6a, 0xff, 0x2b, 0x37, 0x67, 0xff, 0x2c, 0x3a, 0x65, 0xff, 0x26, 0x36, 0x5e, 0xff, 0x22, 0x33, 0x54, 0xff, 0x25, 0x33, 0x4a, 0xff, 0x24, 0x2f, 0x47, 0xff, 0x3a, 0x40, 0x69, 0xff, 0x19, 0x23, 0x41, 0xff, 0x18, 0x21, 0x37, 0xff, 0x1b, 0x25, 0x3c, 0xff, 0x21, 0x2c, 0x4c, 0xff, 0x29, 0x38, 0x5c, 0xff, 0x2d, 0x3a, 0x5e, 0xff, 0x3f, 0x4a, 0x6e, 0xff, 0x2c, 0x38, 0x5d, 0xff, 0x2b, 0x38, 0x5f, 0xff, 0x2b, 0x37, 0x5b, 0xff, 0x26, 0x32, 0x52, 0xff, 0x1e, 0x2e, 0x4d, 0xff, 0x27, 0x39, 0x63, 0xff, 0x35, 0x48, 0x7d, 0xff, 0x1f, 0x34, 0x68, 0xff, 0x1d, 0x2f, 0x68, 0xff, 0x2c, 0x42, 0x74, 0xff, 0x2e, 0x41, 0x77, 0xff, 0x06, 0x0a, 0x17, 0xff, 0x03, 0x04, 0x06, 0xff, 0x17, 0x1f, 0x26, 0xff, 0x95, 0x90, 0x8d, 0xff, 0xbb, 0xa0, 0x87, 0xff, 0xb6, 0x9e, 0x86, 0xff, 0xb5, 0x9b, 0x81, 0xff, 0xba, 0xa0, 0x83, 0xff, 0xbc, 0xa3, 0x88, 0xff, 0xba, 0xa2, 0x89, 0xff, 0xb9, 0xa3, 0x8b, 0xff, 0xb8, 0xa4, 0x8d, 0xff, 0xae, 0x9b, 0x87, 0xff, 0xa0, 0x96, 0x84, 0xff, 0x95, 0x90, 0x81, 0xfb, 0x8f, 0x8b, 0x7e, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x78, 0x57, 0x07, 0x79, 0x71, 0x4f, 0xe4, 0x78, 0x6e, 0x4a, 0xff, 0x74, 0x71, 0x4e, 0xff, 0x79, 0x7b, 0x58, 0xff, 0x7c, 0x84, 0x62, 0xff, 0x79, 0x89, 0x68, 0xff, 0x78, 0x88, 0x6a, 0xff, 0x7b, 0x86, 0x67, 0xff, 0x79, 0x80, 0x62, 0xff, 0x77, 0x79, 0x60, 0xff, 0x72, 0x6d, 0x5c, 0xff, 0x69, 0x5e, 0x57, 0xff, 0x64, 0x5c, 0x5c, 0xff, 0x63, 0x62, 0x64, 0xff, 0x6a, 0x71, 0x6d, 0xff, 0x70, 0x7a, 0x77, 0xff, 0x72, 0x7f, 0x77, 0xff, 0x73, 0x82, 0x76, 0xff, 0xcc, 0xdb, 0xe8, 0xff, 0xc9, 0xd9, 0xec, 0xff, 0xb4, 0xca, 0xe5, 0xff, 0xd6, 0xe9, 0xf8, 0xff, 0xf7, 0xfe, 0xfb, 0xff, 0xe7, 0xf1, 0xfd, 0xff, 0xc4, 0xd4, 0xf1, 0xff, 0x9c, 0xac, 0xd1, 0xff, 0x92, 0xa4, 0xbf, 0xff, 0x77, 0x81, 0xab, 0xff, 0x66, 0x6f, 0x95, 0xff, 0x56, 0x5c, 0x87, 0xff, 0x43, 0x4d, 0x77, 0xff, 0x3c, 0x45, 0x72, 0xff, 0x2d, 0x34, 0x65, 0xff, 0x2c, 0x36, 0x67, 0xff, 0x2d, 0x3d, 0x6a, 0xff, 0x28, 0x3a, 0x61, 0xff, 0x2e, 0x3d, 0x5f, 0xff, 0x2f, 0x3b, 0x59, 0xff, 0x23, 0x2d, 0x44, 0xff, 0x19, 0x20, 0x36, 0xff, 0x18, 0x1e, 0x3d, 0xff, 0x1d, 0x22, 0x40, 0xff, 0x17, 0x1d, 0x32, 0xff, 0x19, 0x24, 0x39, 0xff, 0x20, 0x2f, 0x4d, 0xff, 0x2e, 0x3e, 0x63, 0xff, 0x28, 0x36, 0x5a, 0xff, 0x2b, 0x38, 0x5b, 0xff, 0x33, 0x40, 0x65, 0xff, 0x28, 0x34, 0x59, 0xff, 0x27, 0x33, 0x55, 0xff, 0x19, 0x23, 0x42, 0xff, 0x23, 0x33, 0x56, 0xff, 0x37, 0x4a, 0x79, 0xff, 0x2c, 0x40, 0x77, 0xff, 0x1e, 0x30, 0x66, 0xff, 0x1c, 0x31, 0x66, 0xff, 0x2d, 0x45, 0x76, 0xff, 0x2d, 0x43, 0x76, 0xff, 0x05, 0x0b, 0x16, 0xff, 0x02, 0x03, 0x09, 0xff, 0x47, 0x4e, 0x58, 0xff, 0xaa, 0xa5, 0xa3, 0xff, 0xb6, 0xa6, 0xa0, 0xff, 0xb2, 0xa0, 0x96, 0xff, 0xab, 0x9a, 0x88, 0xff, 0xaf, 0x9b, 0x88, 0xff, 0xb7, 0xa2, 0x91, 0xff, 0xb5, 0xa0, 0x90, 0xff, 0xb5, 0xa1, 0x91, 0xff, 0xaf, 0x9e, 0x8c, 0xff, 0xa6, 0x96, 0x84, 0xff, 0x9b, 0x93, 0x82, 0xff, 0x90, 0x8f, 0x80, 0xe4, 0x8a, 0x85, 0x7c, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0x71, 0x49, 0x64, 0x7b, 0x6e, 0x46, 0xff, 0x7a, 0x71, 0x4c, 0xff, 0x7d, 0x7a, 0x53, 0xff, 0x7f, 0x84, 0x5f, 0xff, 0x7b, 0x87, 0x65, 0xff, 0x7b, 0x86, 0x66, 0xff, 0x7d, 0x84, 0x65, 0xff, 0x7a, 0x7f, 0x61, 0xff, 0x78, 0x78, 0x5f, 0xff, 0x72, 0x6e, 0x5b, 0xff, 0x6c, 0x61, 0x58, 0xff, 0x67, 0x5f, 0x5d, 0xff, 0x66, 0x65, 0x65, 0xff, 0x6d, 0x73, 0x6f, 0xff, 0x73, 0x7b, 0x76, 0xff, 0x76, 0x82, 0x77, 0xff, 0x77, 0x82, 0x71, 0xff, 0x96, 0xa4, 0xa3, 0xff, 0xc6, 0xd6, 0xe3, 0xff, 0xb1, 0xc6, 0xe2, 0xff, 0xd6, 0xe3, 0xf1, 0xff, 0xf1, 0xfc, 0xfa, 0xff, 0xdf, 0xec, 0xf7, 0xff, 0xc0, 0xcf, 0xe8, 0xff, 0x90, 0xa5, 0xc6, 0xff, 0x71, 0x84, 0xaf, 0xff, 0x5e, 0x6e, 0x94, 0xff, 0x4d, 0x5b, 0x7d, 0xff, 0x3b, 0x47, 0x71, 0xff, 0x35, 0x43, 0x6f, 0xff, 0x3e, 0x4c, 0x79, 0xff, 0x2f, 0x3c, 0x6d, 0xff, 0x2d, 0x39, 0x6a, 0xff, 0x22, 0x30, 0x5a, 0xff, 0x35, 0x45, 0x66, 0xff, 0x49, 0x59, 0x76, 0xff, 0x38, 0x43, 0x5d, 0xff, 0x1f, 0x28, 0x3f, 0xff, 0x1d, 0x22, 0x39, 0xff, 0x15, 0x18, 0x32, 0xff, 0x17, 0x1b, 0x34, 0xff, 0x1b, 0x23, 0x37, 0xff, 0x1e, 0x29, 0x40, 0xff, 0x21, 0x2f, 0x4f, 0xff, 0x2a, 0x3a, 0x60, 0xff, 0x31, 0x41, 0x65, 0xff, 0x2a, 0x39, 0x5d, 0xff, 0x22, 0x30, 0x55, 0xff, 0x31, 0x3c, 0x60, 0xff, 0x25, 0x2f, 0x51, 0xff, 0x21, 0x2c, 0x4b, 0xff, 0x28, 0x39, 0x60, 0xff, 0x35, 0x49, 0x79, 0xff, 0x26, 0x39, 0x71, 0xff, 0x1c, 0x2d, 0x66, 0xff, 0x1c, 0x33, 0x68, 0xff, 0x2f, 0x46, 0x78, 0xff, 0x36, 0x4c, 0x7d, 0xff, 0x0a, 0x10, 0x20, 0xff, 0x07, 0x0e, 0x14, 0xff, 0x76, 0x7e, 0x87, 0xff, 0xa5, 0x9e, 0xa1, 0xff, 0x9f, 0x9b, 0x98, 0xff, 0x9b, 0x94, 0x90, 0xff, 0x9f, 0x9a, 0x94, 0xff, 0xa2, 0x98, 0x8e, 0xff, 0xa7, 0x98, 0x8b, 0xff, 0xa4, 0x96, 0x89, 0xff, 0xa4, 0x97, 0x8b, 0xff, 0xa4, 0x96, 0x8c, 0xff, 0x99, 0x91, 0x7f, 0xff, 0x92, 0x8f, 0x80, 0xff, 0x8d, 0x8e, 0x81, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0x6d, 0x42, 0x13, 0x7d, 0x6b, 0x42, 0xe0, 0x7f, 0x70, 0x4c, 0xff, 0x7f, 0x79, 0x56, 0xff, 0x7f, 0x82, 0x64, 0xff, 0x7b, 0x85, 0x69, 0xff, 0x7d, 0x85, 0x68, 0xff, 0x7e, 0x84, 0x65, 0xff, 0x7d, 0x7f, 0x60, 0xff, 0x7a, 0x76, 0x5d, 0xff, 0x76, 0x6c, 0x5b, 0xff, 0x6e, 0x62, 0x5a, 0xff, 0x68, 0x5f, 0x5d, 0xff, 0x67, 0x66, 0x65, 0xff, 0x6f, 0x71, 0x6f, 0xff, 0x76, 0x7e, 0x77, 0xff, 0x7a, 0x86, 0x7a, 0xff, 0x80, 0x89, 0x77, 0xff, 0x7c, 0x85, 0x76, 0xff, 0xc3, 0xcd, 0xcc, 0xff, 0xba, 0xca, 0xe4, 0xff, 0xd2, 0xde, 0xee, 0xff, 0xe9, 0xf8, 0xfc, 0xff, 0xe0, 0xeb, 0xfb, 0xff, 0xc0, 0xce, 0xea, 0xff, 0x9d, 0xaf, 0xd6, 0xff, 0x6c, 0x7c, 0xae, 0xff, 0x61, 0x6c, 0x9c, 0xff, 0x6b, 0x76, 0xa3, 0xff, 0x64, 0x6f, 0xa0, 0xff, 0x64, 0x70, 0xa4, 0xff, 0x49, 0x56, 0x8a, 0xff, 0x3b, 0x49, 0x7e, 0xff, 0x5e, 0x6c, 0x90, 0xff, 0x9b, 0xa8, 0xc5, 0xff, 0xa2, 0xae, 0xcf, 0xff, 0x7a, 0x87, 0xa7, 0xff, 0x51, 0x5b, 0x75, 0xff, 0x1c, 0x22, 0x3b, 0xff, 0x19, 0x1d, 0x36, 0xff, 0x13, 0x15, 0x2c, 0xff, 0x16, 0x1a, 0x2e, 0xff, 0x15, 0x1e, 0x31, 0xff, 0x1a, 0x26, 0x41, 0xff, 0x1f, 0x2c, 0x4e, 0xff, 0x2c, 0x39, 0x5e, 0xff, 0x29, 0x35, 0x5a, 0xff, 0x2c, 0x39, 0x5e, 0xff, 0x30, 0x3d, 0x63, 0xff, 0x2f, 0x3b, 0x5e, 0xff, 0x21, 0x2b, 0x4b, 0xff, 0x22, 0x2e, 0x51, 0xff, 0x2f, 0x41, 0x6b, 0xff, 0x2b, 0x3e, 0x70, 0xff, 0x1d, 0x31, 0x67, 0xff, 0x1b, 0x32, 0x69, 0xff, 0x1d, 0x36, 0x6b, 0xff, 0x32, 0x47, 0x7c, 0xff, 0x40, 0x55, 0x86, 0xff, 0x0f, 0x16, 0x2a, 0xff, 0x2a, 0x32, 0x35, 0xff, 0x92, 0x95, 0x99, 0xff, 0xaf, 0xa2, 0xa2, 0xff, 0xad, 0xa5, 0x9c, 0xff, 0xa7, 0xa0, 0x9c, 0xff, 0xa9, 0xa4, 0xa3, 0xff, 0xad, 0xa2, 0x99, 0xff, 0xb1, 0xa1, 0x92, 0xff, 0xae, 0x9f, 0x92, 0xff, 0xaa, 0x9c, 0x90, 0xff, 0xa8, 0x9c, 0x91, 0xff, 0x9e, 0x94, 0x83, 0xff, 0x98, 0x92, 0x81, 0xe0, 0x94, 0x90, 0x80, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x83, 0x6a, 0x42, 0x84, 0x82, 0x6c, 0x4a, 0xff, 0x7d, 0x70, 0x53, 0xff, 0x77, 0x76, 0x5d, 0xff, 0x74, 0x79, 0x63, 0xff, 0x77, 0x7b, 0x64, 0xff, 0x7c, 0x7c, 0x60, 0xff, 0x7d, 0x7a, 0x5d, 0xff, 0x7f, 0x73, 0x5d, 0xff, 0x7b, 0x69, 0x5a, 0xff, 0x70, 0x61, 0x5b, 0xff, 0x6b, 0x61, 0x60, 0xff, 0x6c, 0x67, 0x68, 0xff, 0x71, 0x71, 0x70, 0xff, 0x77, 0x7c, 0x78, 0xff, 0x7f, 0x87, 0x7c, 0xff, 0x87, 0x8d, 0x7f, 0xff, 0x8b, 0x8d, 0x7a, 0xff, 0x95, 0x94, 0x82, 0xff, 0xc3, 0xcd, 0xd4, 0xff, 0xbc, 0xcf, 0xe2, 0xff, 0xdd, 0xea, 0xf8, 0xff, 0xd4, 0xe0, 0xf8, 0xff, 0xd2, 0xdd, 0xf9, 0xff, 0xbd, 0xc9, 0xe7, 0xff, 0xba, 0xc4, 0xde, 0xff, 0xcf, 0xd8, 0xef, 0xff, 0xd3, 0xdf, 0xfa, 0xff, 0xc0, 0xd0, 0xf0, 0xff, 0xb2, 0xc2, 0xeb, 0xff, 0xb6, 0xc4, 0xe9, 0xff, 0xb9, 0xc6, 0xe9, 0xff, 0xd4, 0xe4, 0xf8, 0xff, 0xbc, 0xcb, 0xea, 0xff, 0x81, 0x8a, 0xae, 0xff, 0x44, 0x4c, 0x6f, 0xff, 0x3c, 0x42, 0x5f, 0xff, 0x1d, 0x21, 0x3b, 0xff, 0x12, 0x17, 0x2c, 0xff, 0x11, 0x17, 0x27, 0xff, 0x15, 0x1a, 0x2d, 0xff, 0x1e, 0x25, 0x3a, 0xff, 0x1a, 0x25, 0x42, 0xff, 0x25, 0x30, 0x56, 0xff, 0x2f, 0x3a, 0x62, 0xff, 0x29, 0x35, 0x5c, 0xff, 0x31, 0x3c, 0x64, 0xff, 0x2a, 0x36, 0x5d, 0xff, 0x2d, 0x39, 0x5b, 0xff, 0x1e, 0x29, 0x4c, 0xff, 0x25, 0x33, 0x59, 0xff, 0x2d, 0x40, 0x6d, 0xff, 0x25, 0x3a, 0x6d, 0xff, 0x1e, 0x34, 0x6b, 0xff, 0x20, 0x38, 0x6c, 0xff, 0x22, 0x3a, 0x6f, 0xff, 0x32, 0x47, 0x7b, 0xff, 0x46, 0x5b, 0x8c, 0xff, 0x14, 0x1a, 0x2d, 0xff, 0x52, 0x57, 0x5b, 0xff, 0xaf, 0xa9, 0xa9, 0xff, 0xb6, 0xaa, 0xa8, 0xff, 0xb8, 0xa9, 0xa5, 0xff, 0xb8, 0xab, 0xa6, 0xff, 0xb9, 0xaf, 0xad, 0xff, 0xbd, 0xad, 0xa2, 0xff, 0xbf, 0xac, 0x9e, 0xff, 0xbe, 0xac, 0x9f, 0xff, 0xba, 0xa8, 0x9b, 0xff, 0xb8, 0xa8, 0x9a, 0xff, 0xb3, 0xa4, 0x90, 0xff, 0xae, 0xa0, 0x8d, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x6d, 0x45, 0x0c, 0x83, 0x6e, 0x4c, 0xdd, 0x82, 0x70, 0x53, 0xff, 0x7c, 0x71, 0x58, 0xff, 0x74, 0x70, 0x5a, 0xff, 0x75, 0x71, 0x59, 0xff, 0x81, 0x74, 0x5c, 0xff, 0x7f, 0x73, 0x59, 0xff, 0x7d, 0x70, 0x5b, 0xff, 0x79, 0x69, 0x5b, 0xff, 0x73, 0x62, 0x5e, 0xff, 0x6f, 0x62, 0x64, 0xff, 0x6e, 0x67, 0x6a, 0xff, 0x73, 0x72, 0x72, 0xff, 0x7c, 0x7f, 0x7c, 0xff, 0x84, 0x89, 0x82, 0xff, 0x8d, 0x8f, 0x83, 0xff, 0x94, 0x94, 0x80, 0xff, 0x95, 0x8e, 0x6f, 0xff, 0xaf, 0xb2, 0xac, 0xff, 0xc9, 0xd7, 0xe8, 0xff, 0xd5, 0xe5, 0xf4, 0xff, 0xcf, 0xdf, 0xf5, 0xff, 0xca, 0xd9, 0xf1, 0xff, 0xde, 0xea, 0xf6, 0xff, 0xf2, 0xf7, 0xfa, 0xff, 0xe4, 0xeb, 0xf6, 0xff, 0xdb, 0xe5, 0xf9, 0xff, 0xcc, 0xdc, 0xf8, 0xff, 0xb7, 0xc8, 0xe9, 0xff, 0xc0, 0xcc, 0xee, 0xff, 0xc1, 0xc9, 0xed, 0xff, 0xb5, 0xbf, 0xe8, 0xff, 0x70, 0x78, 0xa5, 0xff, 0x4b, 0x4f, 0x7c, 0xff, 0x31, 0x36, 0x53, 0xff, 0x19, 0x1d, 0x31, 0xff, 0x15, 0x17, 0x2d, 0xff, 0x14, 0x18, 0x2e, 0xff, 0x22, 0x27, 0x3b, 0xff, 0x17, 0x1c, 0x2e, 0xff, 0x1b, 0x23, 0x37, 0xff, 0x23, 0x2d, 0x4c, 0xff, 0x2c, 0x38, 0x62, 0xff, 0x33, 0x45, 0x6f, 0xff, 0x32, 0x42, 0x6d, 0xff, 0x2e, 0x3f, 0x6a, 0xff, 0x22, 0x31, 0x58, 0xff, 0x30, 0x3b, 0x5e, 0xff, 0x1e, 0x2b, 0x4e, 0xff, 0x25, 0x35, 0x5d, 0xff, 0x27, 0x3a, 0x6c, 0xff, 0x27, 0x3c, 0x72, 0xff, 0x23, 0x3a, 0x71, 0xff, 0x21, 0x3c, 0x6f, 0xff, 0x25, 0x3d, 0x72, 0xff, 0x31, 0x46, 0x7a, 0xff, 0x4e, 0x63, 0x93, 0xff, 0x1a, 0x23, 0x36, 0xff, 0x84, 0x85, 0x8a, 0xff, 0xc1, 0xac, 0xab, 0xff, 0xb3, 0xad, 0xa6, 0xff, 0xbb, 0xad, 0xa7, 0xff, 0xba, 0xaf, 0xa8, 0xff, 0xbc, 0xb2, 0xb0, 0xff, 0xbe, 0xae, 0xa2, 0xff, 0xc0, 0xad, 0x9f, 0xff, 0xbb, 0xaa, 0x9c, 0xff, 0xb5, 0xa7, 0x96, 0xff, 0xb3, 0xa6, 0x95, 0xff, 0xb2, 0xa3, 0x8c, 0xdd, 0xad, 0xa0, 0x8c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x71, 0x54, 0x54, 0x88, 0x73, 0x57, 0xfa, 0x82, 0x72, 0x5d, 0xff, 0x75, 0x6f, 0x5f, 0xff, 0x75, 0x6e, 0x5a, 0xff, 0x7d, 0x71, 0x56, 0xff, 0x7e, 0x70, 0x59, 0xff, 0x7c, 0x6d, 0x5b, 0xff, 0x73, 0x6a, 0x59, 0xff, 0x74, 0x64, 0x5d, 0xff, 0x6f, 0x63, 0x63, 0xff, 0x6d, 0x69, 0x6a, 0xff, 0x75, 0x74, 0x73, 0xff, 0x82, 0x82, 0x7d, 0xff, 0x8f, 0x8e, 0x87, 0xff, 0x95, 0x96, 0x88, 0xff, 0x96, 0x98, 0x86, 0xff, 0xa7, 0x95, 0x74, 0xff, 0x9a, 0x93, 0x7f, 0xff, 0xc7, 0xcf, 0xdf, 0xff, 0xdb, 0xe3, 0xf5, 0xff, 0xd5, 0xdf, 0xf0, 0xff, 0xe1, 0xe9, 0xf6, 0xff, 0xf3, 0xf4, 0xfc, 0xff, 0xe0, 0xe6, 0xf4, 0xff, 0xd9, 0xe0, 0xf2, 0xff, 0xce, 0xd8, 0xf1, 0xff, 0xc1, 0xcd, 0xed, 0xff, 0xac, 0xba, 0xe4, 0xff, 0xad, 0xb8, 0xe5, 0xff, 0x93, 0x9c, 0xce, 0xff, 0x5b, 0x62, 0x90, 0xff, 0x27, 0x2d, 0x56, 0xff, 0x2a, 0x2e, 0x4e, 0xff, 0x1f, 0x22, 0x3d, 0xff, 0x1d, 0x21, 0x3a, 0xff, 0x25, 0x28, 0x3f, 0xff, 0x1b, 0x1e, 0x36, 0xff, 0x1c, 0x21, 0x3d, 0xff, 0x22, 0x2a, 0x41, 0xff, 0x26, 0x31, 0x4e, 0xff, 0x21, 0x2c, 0x4d, 0xff, 0x28, 0x32, 0x53, 0xff, 0x2c, 0x3e, 0x65, 0xff, 0x2f, 0x3f, 0x65, 0xff, 0x2d, 0x3b, 0x62, 0xff, 0x2c, 0x37, 0x5b, 0xff, 0x28, 0x33, 0x54, 0xff, 0x28, 0x36, 0x5d, 0xff, 0x2a, 0x3b, 0x66, 0xff, 0x2b, 0x40, 0x71, 0xff, 0x27, 0x3c, 0x71, 0xff, 0x25, 0x3b, 0x72, 0xff, 0x27, 0x3f, 0x73, 0xff, 0x29, 0x3f, 0x74, 0xff, 0x2c, 0x45, 0x7b, 0xff, 0x48, 0x60, 0x93, 0xff, 0x4e, 0x50, 0x5e, 0xff, 0xb9, 0xac, 0xac, 0xff, 0xba, 0xac, 0xab, 0xff, 0xb7, 0xab, 0xa7, 0xff, 0xba, 0xad, 0xa7, 0xff, 0xba, 0xad, 0xa7, 0xff, 0xc0, 0xb4, 0xac, 0xff, 0xbb, 0xaf, 0xa4, 0xff, 0xbc, 0xad, 0xa2, 0xff, 0xbb, 0xac, 0xa0, 0xff, 0xb7, 0xa8, 0x98, 0xff, 0xb0, 0xa2, 0x8f, 0xfa, 0xab, 0x9e, 0x8a, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x70, 0x56, 0x05, 0x84, 0x72, 0x58, 0xc0, 0x7e, 0x74, 0x62, 0xff, 0x74, 0x74, 0x68, 0xff, 0x75, 0x73, 0x64, 0xff, 0x7c, 0x71, 0x58, 0xff, 0x7a, 0x6c, 0x56, 0xff, 0x7d, 0x6e, 0x5c, 0xff, 0x78, 0x6c, 0x5d, 0xff, 0x76, 0x66, 0x5d, 0xff, 0x71, 0x65, 0x64, 0xff, 0x6d, 0x68, 0x6a, 0xff, 0x75, 0x76, 0x76, 0xff, 0x85, 0x85, 0x84, 0xff, 0x90, 0x8f, 0x8b, 0xff, 0x96, 0x96, 0x8b, 0xff, 0x97, 0x9b, 0x8a, 0xff, 0xa7, 0x9a, 0x7d, 0xff, 0x9b, 0x94, 0x7a, 0xff, 0xd1, 0xda, 0xe6, 0xff, 0xe7, 0xec, 0xfd, 0xff, 0xe0, 0xe9, 0xf8, 0xff, 0xe2, 0xec, 0xfe, 0xff, 0xd9, 0xdf, 0xf5, 0xff, 0xc5, 0xd0, 0xef, 0xff, 0xbd, 0xca, 0xe9, 0xff, 0xb1, 0xbe, 0xe4, 0xff, 0x8f, 0x9e, 0xc5, 0xff, 0x6b, 0x79, 0xa8, 0xff, 0x49, 0x53, 0x80, 0xff, 0x3d, 0x43, 0x6e, 0xff, 0x30, 0x34, 0x5e, 0xff, 0x29, 0x2e, 0x51, 0xff, 0x21, 0x25, 0x41, 0xff, 0x1b, 0x1e, 0x38, 0xff, 0x1d, 0x20, 0x3f, 0xff, 0x22, 0x26, 0x40, 0xff, 0x24, 0x29, 0x41, 0xff, 0x24, 0x2d, 0x48, 0xff, 0x1f, 0x28, 0x43, 0xff, 0x2d, 0x38, 0x5c, 0xff, 0x24, 0x33, 0x5a, 0xff, 0x2b, 0x38, 0x61, 0xff, 0x31, 0x3e, 0x68, 0xff, 0x2d, 0x39, 0x63, 0xff, 0x2c, 0x35, 0x60, 0xff, 0x30, 0x3a, 0x60, 0xff, 0x1c, 0x26, 0x48, 0xff, 0x25, 0x34, 0x5c, 0xff, 0x24, 0x36, 0x62, 0xff, 0x29, 0x3e, 0x6e, 0xff, 0x24, 0x39, 0x6e, 0xff, 0x28, 0x3e, 0x75, 0xff, 0x2a, 0x42, 0x76, 0xff, 0x2a, 0x41, 0x77, 0xff, 0x2a, 0x45, 0x7a, 0xff, 0x43, 0x57, 0x87, 0xff, 0x8c, 0x87, 0x8c, 0xff, 0xbb, 0xa6, 0x92, 0xff, 0xba, 0xab, 0x9d, 0xff, 0xb3, 0xa9, 0x9d, 0xff, 0xb5, 0xaa, 0x9e, 0xff, 0xb7, 0xaa, 0x9d, 0xff, 0xb6, 0xa9, 0x9c, 0xff, 0xbd, 0xb0, 0xa2, 0xff, 0xba, 0xaf, 0xa1, 0xff, 0xb8, 0xad, 0x9d, 0xff, 0xb1, 0xa7, 0x92, 0xff, 0xac, 0xa2, 0x89, 0xc0, 0xaa, 0x9c, 0x87, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0x71, 0x5d, 0x20, 0x77, 0x71, 0x65, 0xe8, 0x71, 0x73, 0x6b, 0xff, 0x75, 0x77, 0x6d, 0xff, 0x80, 0x75, 0x64, 0xff, 0x7e, 0x70, 0x59, 0xff, 0x7f, 0x70, 0x5d, 0xff, 0x7d, 0x6d, 0x60, 0xff, 0x7b, 0x69, 0x5e, 0xff, 0x74, 0x67, 0x65, 0xff, 0x6b, 0x68, 0x6c, 0xff, 0x72, 0x75, 0x78, 0xff, 0x81, 0x84, 0x84, 0xff, 0x8b, 0x8d, 0x8c, 0xff, 0x93, 0x96, 0x8d, 0xff, 0x9a, 0x9e, 0x8d, 0xff, 0xa5, 0x9e, 0x89, 0xff, 0x9f, 0x93, 0x73, 0xff, 0xcc, 0xd3, 0xd8, 0xff, 0xd6, 0xdc, 0xed, 0xff, 0xd7, 0xe2, 0xf5, 0xff, 0xc3, 0xd1, 0xf0, 0xff, 0xaa, 0xb7, 0xdd, 0xff, 0x98, 0xa7, 0xd2, 0xff, 0x8a, 0x98, 0xc4, 0xff, 0x7f, 0x8e, 0xbb, 0xff, 0x5f, 0x6e, 0x9c, 0xff, 0x4f, 0x5d, 0x88, 0xff, 0x46, 0x4e, 0x77, 0xff, 0x34, 0x39, 0x5e, 0xff, 0x39, 0x3b, 0x5e, 0xff, 0x26, 0x29, 0x48, 0xff, 0x23, 0x27, 0x41, 0xff, 0x25, 0x29, 0x41, 0xff, 0x30, 0x34, 0x50, 0xff, 0x23, 0x26, 0x40, 0xff, 0x20, 0x25, 0x40, 0xff, 0x2f, 0x3a, 0x5a, 0xff, 0x2b, 0x37, 0x5a, 0xff, 0x2c, 0x39, 0x5c, 0xff, 0x35, 0x43, 0x6c, 0xff, 0x33, 0x42, 0x6f, 0xff, 0x37, 0x43, 0x6b, 0xff, 0x2f, 0x38, 0x62, 0xff, 0x35, 0x3d, 0x68, 0xff, 0x34, 0x3d, 0x64, 0xff, 0x26, 0x32, 0x57, 0xff, 0x29, 0x38, 0x64, 0xff, 0x2a, 0x3c, 0x6b, 0xff, 0x26, 0x3c, 0x6d, 0xff, 0x28, 0x40, 0x74, 0xff, 0x2a, 0x42, 0x78, 0xff, 0x28, 0x43, 0x76, 0xff, 0x29, 0x43, 0x78, 0xff, 0x29, 0x46, 0x7b, 0xff, 0x3b, 0x50, 0x80, 0xff, 0x98, 0x8e, 0x93, 0xff, 0xca, 0xa4, 0x88, 0xff, 0xb6, 0x9a, 0x86, 0xff, 0xaf, 0x98, 0x8a, 0xff, 0xaf, 0x9b, 0x8f, 0xff, 0xb3, 0x9d, 0x93, 0xff, 0xb7, 0xa2, 0x97, 0xff, 0xbb, 0xa5, 0x9b, 0xff, 0xb8, 0xa5, 0x9b, 0xff, 0xb3, 0xa0, 0x94, 0xff, 0xb1, 0x9e, 0x8f, 0xe8, 0xb0, 0x9d, 0x87, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x6c, 0x67, 0x62, 0x6e, 0x6d, 0x6b, 0xfb, 0x72, 0x73, 0x6e, 0xff, 0x81, 0x77, 0x69, 0xff, 0x81, 0x73, 0x5e, 0xff, 0x80, 0x71, 0x5c, 0xff, 0x7f, 0x6e, 0x63, 0xff, 0x7d, 0x6a, 0x5e, 0xff, 0x72, 0x67, 0x64, 0xff, 0x6a, 0x67, 0x6c, 0xff, 0x6e, 0x72, 0x76, 0xff, 0x7f, 0x83, 0x84, 0xff, 0x8a, 0x8d, 0x8e, 0xff, 0x93, 0x98, 0x90, 0xff, 0x9e, 0x9e, 0x8d, 0xff, 0xa3, 0x9b, 0x8f, 0xff, 0xac, 0x9b, 0x75, 0xff, 0xc2, 0xc3, 0xc2, 0xff, 0xc1, 0xcb, 0xe5, 0xff, 0xb6, 0xc3, 0xde, 0xff, 0xa0, 0xb1, 0xd5, 0xff, 0x7e, 0x8c, 0xba, 0xff, 0x77, 0x83, 0xa9, 0xff, 0x73, 0x7d, 0xa5, 0xff, 0x66, 0x6f, 0x96, 0xff, 0x5f, 0x67, 0x90, 0xff, 0x5a, 0x61, 0x88, 0xff, 0x40, 0x48, 0x6e, 0xff, 0x40, 0x48, 0x6e, 0xff, 0x3e, 0x42, 0x63, 0xff, 0x32, 0x34, 0x4f, 0xff, 0x28, 0x2c, 0x43, 0xff, 0x32, 0x36, 0x4f, 0xff, 0x25, 0x2a, 0x3e, 0xff, 0x2e, 0x32, 0x48, 0xff, 0x30, 0x36, 0x54, 0xff, 0x29, 0x32, 0x5c, 0xff, 0x2e, 0x3e, 0x68, 0xff, 0x35, 0x3e, 0x61, 0xff, 0x3b, 0x42, 0x65, 0xff, 0x31, 0x3c, 0x62, 0xff, 0x2f, 0x3d, 0x60, 0xff, 0x32, 0x3d, 0x62, 0xff, 0x34, 0x3d, 0x62, 0xff, 0x2f, 0x39, 0x5e, 0xff, 0x27, 0x32, 0x5b, 0xff, 0x2b, 0x3a, 0x68, 0xff, 0x2b, 0x3e, 0x70, 0xff, 0x2b, 0x43, 0x74, 0xff, 0x2a, 0x42, 0x77, 0xff, 0x28, 0x41, 0x78, 0xff, 0x27, 0x43, 0x76, 0xff, 0x27, 0x41, 0x75, 0xff, 0x25, 0x44, 0x7b, 0xff, 0x31, 0x4a, 0x83, 0xff, 0x86, 0x85, 0x94, 0xff, 0xad, 0x94, 0x81, 0xff, 0x9a, 0x88, 0x7b, 0xff, 0x94, 0x85, 0x7a, 0xff, 0x96, 0x8c, 0x84, 0xff, 0x98, 0x91, 0x8b, 0xff, 0x9d, 0x95, 0x92, 0xff, 0xa0, 0x98, 0x96, 0xff, 0xa1, 0x98, 0x97, 0xff, 0xa0, 0x98, 0x94, 0xfb, 0xa0, 0x98, 0x8f, 0x63, 0xa6, 0x99, 0x8d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x71, 0x6b, 0x5e, 0x03, 0x66, 0x6a, 0x63, 0x92, 0x6a, 0x6e, 0x65, 0xff, 0x7b, 0x75, 0x64, 0xff, 0x7e, 0x73, 0x5f, 0xff, 0x7e, 0x70, 0x5d, 0xff, 0x7c, 0x6f, 0x5f, 0xff, 0x7b, 0x6a, 0x5e, 0xff, 0x72, 0x63, 0x5f, 0xff, 0x66, 0x61, 0x65, 0xff, 0x69, 0x6a, 0x72, 0xff, 0x75, 0x77, 0x7c, 0xff, 0x7d, 0x82, 0x82, 0xff, 0x89, 0x8b, 0x88, 0xff, 0x94, 0x92, 0x89, 0xff, 0xa2, 0x97, 0x81, 0xff, 0xa7, 0x95, 0x77, 0xff, 0xa4, 0x98, 0x7c, 0xff, 0xce, 0xd4, 0xda, 0xff, 0x9e, 0xac, 0xc1, 0xff, 0x8d, 0x9d, 0xbb, 0xff, 0x6b, 0x75, 0x99, 0xff, 0x64, 0x73, 0x97, 0xff, 0x57, 0x5e, 0x7d, 0xff, 0x5a, 0x60, 0x80, 0xff, 0x62, 0x6a, 0x8c, 0xff, 0x4e, 0x57, 0x75, 0xff, 0x52, 0x5a, 0x79, 0xff, 0x4c, 0x55, 0x74, 0xff, 0x44, 0x4a, 0x69, 0xff, 0x3b, 0x3e, 0x58, 0xff, 0x34, 0x3b, 0x50, 0xff, 0x2b, 0x31, 0x48, 0xff, 0x45, 0x4b, 0x69, 0xff, 0x35, 0x3d, 0x5e, 0xff, 0x35, 0x40, 0x63, 0xff, 0x2e, 0x3b, 0x5f, 0xff, 0x33, 0x3f, 0x61, 0xff, 0x3c, 0x47, 0x6b, 0xff, 0x38, 0x43, 0x68, 0xff, 0x3d, 0x48, 0x6f, 0xff, 0x41, 0x49, 0x6f, 0xff, 0x38, 0x40, 0x61, 0xff, 0x2f, 0x39, 0x5d, 0xff, 0x2d, 0x3b, 0x63, 0xff, 0x22, 0x34, 0x5e, 0xff, 0x2b, 0x3f, 0x6a, 0xff, 0x2b, 0x40, 0x6d, 0xff, 0x2f, 0x48, 0x79, 0xff, 0x2c, 0x44, 0x78, 0xff, 0x2b, 0x43, 0x78, 0xff, 0x27, 0x40, 0x76, 0xff, 0x22, 0x40, 0x72, 0xff, 0x28, 0x43, 0x7c, 0xff, 0x31, 0x49, 0x7c, 0xff, 0x68, 0x76, 0x96, 0xff, 0x98, 0x84, 0x75, 0xff, 0x7e, 0x71, 0x5a, 0xff, 0x6d, 0x68, 0x64, 0xff, 0x69, 0x68, 0x6a, 0xff, 0x60, 0x6b, 0x6e, 0xff, 0x65, 0x6f, 0x74, 0xff, 0x6f, 0x73, 0x75, 0xff, 0x75, 0x79, 0x7a, 0xff, 0x79, 0x7d, 0x7e, 0x93, 0x72, 0x78, 0x78, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x66, 0x60, 0x0d, 0x64, 0x69, 0x65, 0xc1, 0x76, 0x6f, 0x62, 0xff, 0x7d, 0x71, 0x60, 0xff, 0x7f, 0x6f, 0x5e, 0xff, 0x7d, 0x6d, 0x60, 0xff, 0x79, 0x67, 0x5b, 0xff, 0x71, 0x60, 0x5d, 0xff, 0x60, 0x5a, 0x5e, 0xff, 0x61, 0x60, 0x69, 0xff, 0x6a, 0x6b, 0x71, 0xff, 0x71, 0x74, 0x76, 0xff, 0x7b, 0x7d, 0x7c, 0xff, 0x86, 0x84, 0x7d, 0xff, 0x96, 0x8a, 0x79, 0xff, 0xa4, 0x8c, 0x6d, 0xff, 0x93, 0x7e, 0x59, 0xff, 0xa4, 0x96, 0x83, 0xff, 0x91, 0x95, 0x99, 0xff, 0x71, 0x82, 0x9d, 0xff, 0x5b, 0x63, 0x7f, 0xff, 0x56, 0x62, 0x73, 0xff, 0x49, 0x52, 0x63, 0xff, 0x39, 0x41, 0x55, 0xff, 0x3a, 0x43, 0x57, 0xff, 0x33, 0x3a, 0x4b, 0xff, 0x40, 0x46, 0x58, 0xff, 0x3c, 0x43, 0x54, 0xff, 0x30, 0x37, 0x4f, 0xff, 0x3a, 0x42, 0x5d, 0xff, 0x3a, 0x41, 0x5d, 0xff, 0x43, 0x48, 0x6a, 0xff, 0x38, 0x42, 0x67, 0xff, 0x3c, 0x47, 0x6c, 0xff, 0x39, 0x43, 0x64, 0xff, 0x40, 0x48, 0x69, 0xff, 0x39, 0x46, 0x6a, 0xff, 0x37, 0x42, 0x67, 0xff, 0x38, 0x44, 0x69, 0xff, 0x3c, 0x47, 0x6e, 0xff, 0x3d, 0x47, 0x6d, 0xff, 0x40, 0x48, 0x6e, 0xff, 0x33, 0x3e, 0x64, 0xff, 0x22, 0x32, 0x59, 0xff, 0x26, 0x37, 0x61, 0xff, 0x2e, 0x42, 0x6d, 0xff, 0x2d, 0x42, 0x70, 0xff, 0x33, 0x4b, 0x7c, 0xff, 0x2f, 0x48, 0x7a, 0xff, 0x29, 0x41, 0x75, 0xff, 0x26, 0x3e, 0x73, 0xff, 0x26, 0x43, 0x75, 0xff, 0x27, 0x42, 0x79, 0xff, 0x2f, 0x48, 0x7a, 0xff, 0x55, 0x65, 0x8b, 0xff, 0x97, 0x89, 0x84, 0xff, 0x7f, 0x70, 0x59, 0xff, 0x6a, 0x67, 0x5d, 0xff, 0x63, 0x66, 0x64, 0xff, 0x61, 0x66, 0x68, 0xff, 0x6b, 0x6f, 0x72, 0xff, 0x7a, 0x77, 0x77, 0xff, 0x81, 0x7f, 0x7b, 0xc1, 0x7b, 0x80, 0x79, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x65, 0x63, 0x16, 0x71, 0x6b, 0x5b, 0xda, 0x7c, 0x71, 0x5e, 0xff, 0x7f, 0x6d, 0x5b, 0xff, 0x7b, 0x69, 0x5a, 0xff, 0x77, 0x64, 0x5a, 0xff, 0x70, 0x5e, 0x5b, 0xff, 0x5d, 0x54, 0x59, 0xff, 0x5b, 0x58, 0x62, 0xff, 0x63, 0x61, 0x69, 0xff, 0x67, 0x68, 0x6b, 0xff, 0x6f, 0x6f, 0x6f, 0xff, 0x77, 0x72, 0x6c, 0xff, 0x84, 0x76, 0x69, 0xff, 0x8f, 0x77, 0x5e, 0xff, 0x90, 0x76, 0x53, 0xff, 0x8b, 0x6e, 0x48, 0xff, 0x79, 0x69, 0x51, 0xff, 0x60, 0x5c, 0x57, 0xff, 0x5a, 0x59, 0x63, 0xff, 0x61, 0x64, 0x78, 0xff, 0x58, 0x5f, 0x7a, 0xff, 0x55, 0x5d, 0x7c, 0xff, 0x4e, 0x55, 0x75, 0xff, 0x4e, 0x55, 0x74, 0xff, 0x40, 0x47, 0x67, 0xff, 0x3d, 0x44, 0x62, 0xff, 0x4f, 0x59, 0x7a, 0xff, 0x3e, 0x4c, 0x6b, 0xff, 0x49, 0x55, 0x74, 0xff, 0x42, 0x4d, 0x72, 0xff, 0x40, 0x4c, 0x73, 0xff, 0x42, 0x4f, 0x74, 0xff, 0x3e, 0x47, 0x6b, 0xff, 0x44, 0x4d, 0x6f, 0xff, 0x37, 0x43, 0x67, 0xff, 0x40, 0x4a, 0x71, 0xff, 0x3f, 0x49, 0x71, 0xff, 0x3a, 0x44, 0x6d, 0xff, 0x39, 0x46, 0x6e, 0xff, 0x3e, 0x47, 0x73, 0xff, 0x2f, 0x3c, 0x65, 0xff, 0x26, 0x38, 0x5e, 0xff, 0x30, 0x41, 0x6a, 0xff, 0x2b, 0x3e, 0x69, 0xff, 0x35, 0x4a, 0x78, 0xff, 0x31, 0x49, 0x78, 0xff, 0x31, 0x48, 0x79, 0xff, 0x2d, 0x44, 0x76, 0xff, 0x2b, 0x40, 0x74, 0xff, 0x23, 0x3d, 0x70, 0xff, 0x24, 0x41, 0x73, 0xff, 0x2a, 0x44, 0x74, 0xff, 0x3a, 0x52, 0x81, 0xff, 0x8e, 0x92, 0xa1, 0xff, 0x88, 0x78, 0x69, 0xff, 0x71, 0x6b, 0x60, 0xff, 0x69, 0x67, 0x65, 0xff, 0x6c, 0x6a, 0x6a, 0xff, 0x7b, 0x77, 0x77, 0xff, 0x8e, 0x85, 0x7e, 0xda, 0x95, 0x89, 0x82, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6f, 0x6d, 0x54, 0x28, 0x79, 0x6e, 0x56, 0xe1, 0x7d, 0x6b, 0x54, 0xff, 0x79, 0x66, 0x52, 0xff, 0x75, 0x61, 0x56, 0xff, 0x6f, 0x5c, 0x59, 0xff, 0x5d, 0x54, 0x59, 0xff, 0x58, 0x53, 0x5c, 0xff, 0x59, 0x56, 0x5f, 0xff, 0x59, 0x59, 0x5e, 0xff, 0x63, 0x61, 0x62, 0xff, 0x68, 0x61, 0x5d, 0xff, 0x75, 0x65, 0x5a, 0xff, 0x7e, 0x68, 0x55, 0xff, 0x85, 0x6d, 0x50, 0xff, 0x85, 0x6b, 0x48, 0xff, 0x82, 0x62, 0x34, 0xff, 0x78, 0x5e, 0x3c, 0xff, 0x7a, 0x72, 0x6c, 0xff, 0x89, 0x8c, 0x9a, 0xff, 0x7b, 0x86, 0x9e, 0xff, 0x66, 0x73, 0x90, 0xff, 0x69, 0x75, 0x93, 0xff, 0x5c, 0x6b, 0x8d, 0xff, 0x5d, 0x6c, 0x8f, 0xff, 0x44, 0x54, 0x76, 0xff, 0x55, 0x61, 0x89, 0xff, 0x4a, 0x57, 0x7e, 0xff, 0x4c, 0x5a, 0x7d, 0xff, 0x4b, 0x59, 0x7d, 0xff, 0x4d, 0x59, 0x7b, 0xff, 0x46, 0x51, 0x75, 0xff, 0x45, 0x50, 0x77, 0xff, 0x3c, 0x47, 0x6e, 0xff, 0x40, 0x4c, 0x72, 0xff, 0x3a, 0x44, 0x6c, 0xff, 0x37, 0x42, 0x6a, 0xff, 0x3b, 0x46, 0x6f, 0xff, 0x3c, 0x4b, 0x74, 0xff, 0x31, 0x3b, 0x6a, 0xff, 0x24, 0x32, 0x5d, 0xff, 0x2e, 0x40, 0x67, 0xff, 0x30, 0x42, 0x6b, 0xff, 0x32, 0x45, 0x71, 0xff, 0x31, 0x47, 0x74, 0xff, 0x32, 0x49, 0x78, 0xff, 0x32, 0x49, 0x79, 0xff, 0x30, 0x47, 0x79, 0xff, 0x29, 0x40, 0x72, 0xff, 0x28, 0x40, 0x73, 0xff, 0x27, 0x41, 0x72, 0xff, 0x27, 0x42, 0x72, 0xff, 0x29, 0x43, 0x77, 0xff, 0x74, 0x83, 0x9f, 0xff, 0xa6, 0x9b, 0x98, 0xff, 0x73, 0x66, 0x60, 0xff, 0x6c, 0x65, 0x64, 0xff, 0x6d, 0x6a, 0x68, 0xff, 0x7b, 0x73, 0x70, 0xe2, 0x8a, 0x7d, 0x75, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0x6d, 0x51, 0x25, 0x80, 0x6c, 0x4f, 0xe2, 0x78, 0x64, 0x4e, 0xff, 0x73, 0x5f, 0x52, 0xff, 0x6b, 0x5a, 0x57, 0xff, 0x5e, 0x52, 0x54, 0xff, 0x58, 0x50, 0x52, 0xff, 0x52, 0x4f, 0x53, 0xff, 0x4f, 0x4c, 0x51, 0xff, 0x55, 0x4f, 0x50, 0xff, 0x60, 0x57, 0x54, 0xff, 0x80, 0x67, 0x5c, 0xff, 0x8e, 0x75, 0x5a, 0xff, 0x95, 0x74, 0x53, 0xff, 0x94, 0x73, 0x4e, 0xff, 0x88, 0x69, 0x45, 0xff, 0x7a, 0x5d, 0x3b, 0xff, 0x70, 0x55, 0x37, 0xff, 0x74, 0x66, 0x59, 0xff, 0xa1, 0xa3, 0xad, 0xff, 0x7e, 0x87, 0x9a, 0xff, 0x80, 0x8d, 0xaa, 0xff, 0x6c, 0x7a, 0x98, 0xff, 0x61, 0x71, 0x93, 0xff, 0x66, 0x78, 0x9e, 0xff, 0x63, 0x73, 0x99, 0xff, 0x58, 0x67, 0x8b, 0xff, 0x5b, 0x6a, 0x8e, 0xff, 0x51, 0x62, 0x84, 0xff, 0x46, 0x56, 0x75, 0xff, 0x48, 0x55, 0x7b, 0xff, 0x42, 0x4e, 0x75, 0xff, 0x38, 0x46, 0x69, 0xff, 0x41, 0x4d, 0x75, 0xff, 0x3a, 0x45, 0x6e, 0xff, 0x38, 0x44, 0x6c, 0xff, 0x37, 0x43, 0x6b, 0xff, 0x26, 0x36, 0x61, 0xff, 0x2b, 0x39, 0x62, 0xff, 0x28, 0x37, 0x60, 0xff, 0x2d, 0x3b, 0x67, 0xff, 0x34, 0x46, 0x71, 0xff, 0x34, 0x48, 0x75, 0xff, 0x32, 0x49, 0x75, 0xff, 0x38, 0x4e, 0x7d, 0xff, 0x32, 0x48, 0x78, 0xff, 0x2b, 0x42, 0x74, 0xff, 0x28, 0x41, 0x73, 0xff, 0x25, 0x3f, 0x70, 0xff, 0x24, 0x3d, 0x6f, 0xff, 0x25, 0x3d, 0x70, 0xff, 0x2a, 0x44, 0x75, 0xff, 0x4d, 0x5f, 0x86, 0xff, 0xa5, 0xa9, 0xbb, 0xff, 0xa3, 0x9c, 0x9f, 0xff, 0x67, 0x62, 0x63, 0xff, 0x6b, 0x64, 0x67, 0xe2, 0x7c, 0x6e, 0x6d, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, 0x6b, 0x4e, 0x28, 0x7b, 0x65, 0x4f, 0xdb, 0x71, 0x5e, 0x50, 0xff, 0x67, 0x57, 0x52, 0xff, 0x5c, 0x50, 0x52, 0xff, 0x58, 0x51, 0x52, 0xff, 0x59, 0x52, 0x55, 0xff, 0x58, 0x51, 0x52, 0xff, 0x5c, 0x50, 0x4d, 0xff, 0x70, 0x5f, 0x53, 0xff, 0x91, 0x74, 0x5f, 0xff, 0xa1, 0x84, 0x65, 0xff, 0xa8, 0x88, 0x67, 0xff, 0x9f, 0x82, 0x5b, 0xff, 0x98, 0x7a, 0x4f, 0xff, 0x8a, 0x6b, 0x42, 0xff, 0x7a, 0x5c, 0x39, 0xff, 0x7e, 0x5d, 0x3d, 0xff, 0x86, 0x72, 0x61, 0xff, 0xb3, 0xb9, 0xc2, 0xff, 0x75, 0x86, 0x9e, 0xff, 0x75, 0x85, 0xa0, 0xff, 0x78, 0x88, 0xa7, 0xff, 0x69, 0x7c, 0xa0, 0xff, 0x65, 0x77, 0x9b, 0xff, 0x5e, 0x70, 0x93, 0xff, 0x52, 0x64, 0x85, 0xff, 0x46, 0x5a, 0x79, 0xff, 0x44, 0x58, 0x79, 0xff, 0x48, 0x5b, 0x7f, 0xff, 0x40, 0x52, 0x77, 0xff, 0x3b, 0x4d, 0x72, 0xff, 0x3c, 0x4b, 0x72, 0xff, 0x38, 0x47, 0x6d, 0xff, 0x37, 0x45, 0x6c, 0xff, 0x33, 0x42, 0x69, 0xff, 0x22, 0x30, 0x58, 0xff, 0x26, 0x35, 0x5f, 0xff, 0x31, 0x41, 0x6b, 0xff, 0x31, 0x42, 0x6d, 0xff, 0x37, 0x4a, 0x77, 0xff, 0x38, 0x4e, 0x7b, 0xff, 0x36, 0x4e, 0x7b, 0xff, 0x34, 0x4b, 0x79, 0xff, 0x33, 0x4a, 0x79, 0xff, 0x2e, 0x45, 0x75, 0xff, 0x25, 0x3e, 0x6f, 0xff, 0x25, 0x3f, 0x6e, 0xff, 0x24, 0x3e, 0x6e, 0xff, 0x24, 0x3d, 0x6d, 0xff, 0x25, 0x3f, 0x6f, 0xff, 0x35, 0x4d, 0x7c, 0xff, 0x71, 0x79, 0x98, 0xff, 0xa5, 0xa2, 0xb5, 0xff, 0xa3, 0x9c, 0xaa, 0xdb, 0x59, 0x4a, 0x51, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x75, 0x63, 0x4d, 0x16, 0x70, 0x5e, 0x4f, 0xc0, 0x68, 0x57, 0x52, 0xff, 0x5e, 0x54, 0x54, 0xff, 0x5d, 0x55, 0x56, 0xff, 0x62, 0x58, 0x59, 0xff, 0x5f, 0x53, 0x52, 0xff, 0x6a, 0x59, 0x51, 0xff, 0x85, 0x70, 0x5d, 0xff, 0xac, 0x89, 0x71, 0xff, 0xb5, 0x99, 0x7b, 0xff, 0xb8, 0x9b, 0x82, 0xff, 0xb2, 0x9a, 0x72, 0xff, 0xa6, 0x8e, 0x62, 0xff, 0x92, 0x7a, 0x54, 0xff, 0x7a, 0x65, 0x4a, 0xff, 0x7c, 0x67, 0x4a, 0xff, 0x8d, 0x70, 0x4b, 0xff, 0xd4, 0xe5, 0xea, 0xff, 0xcc, 0xe3, 0xed, 0xff, 0x7b, 0x8b, 0x9f, 0xff, 0x75, 0x86, 0xa2, 0xff, 0x69, 0x7c, 0xa0, 0xff, 0x5e, 0x71, 0x96, 0xff, 0x69, 0x7c, 0xa1, 0xff, 0x4e, 0x61, 0x86, 0xff, 0x56, 0x6a, 0x8d, 0xff, 0x46, 0x58, 0x7c, 0xff, 0x3a, 0x4c, 0x6d, 0xff, 0x39, 0x4b, 0x6d, 0xff, 0x39, 0x49, 0x71, 0xff, 0x38, 0x46, 0x6d, 0xff, 0x2f, 0x3d, 0x63, 0xff, 0x23, 0x32, 0x58, 0xff, 0x26, 0x36, 0x5c, 0xff, 0x28, 0x39, 0x5d, 0xff, 0x26, 0x36, 0x5f, 0xff, 0x2c, 0x3f, 0x6a, 0xff, 0x2f, 0x43, 0x70, 0xff, 0x37, 0x4a, 0x78, 0xff, 0x37, 0x4d, 0x7c, 0xff, 0x31, 0x49, 0x79, 0xff, 0x34, 0x4c, 0x7a, 0xff, 0x32, 0x4b, 0x78, 0xff, 0x2c, 0x44, 0x72, 0xff, 0x24, 0x3f, 0x6d, 0xff, 0x23, 0x3d, 0x6c, 0xff, 0x22, 0x3c, 0x6b, 0xff, 0x22, 0x3c, 0x6b, 0xff, 0x23, 0x3d, 0x6d, 0xff, 0x28, 0x41, 0x71, 0xff, 0x48, 0x5a, 0x84, 0xff, 0x6a, 0x75, 0x98, 0xc1, 0x73, 0x7a, 0x99, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x5e, 0x50, 0x0d, 0x68, 0x58, 0x53, 0x93, 0x5e, 0x53, 0x53, 0xfb, 0x5d, 0x54, 0x55, 0xff, 0x67, 0x58, 0x5a, 0xff, 0x65, 0x58, 0x55, 0xff, 0x76, 0x62, 0x56, 0xff, 0x9d, 0x82, 0x6c, 0xff, 0xb9, 0x9a, 0x7e, 0xff, 0xc0, 0xa5, 0x8d, 0xff, 0xc2, 0xaa, 0x90, 0xff, 0xbd, 0xa7, 0x89, 0xff, 0xaa, 0x97, 0x8a, 0xff, 0xb9, 0xa7, 0xb0, 0xff, 0xbe, 0xae, 0xbf, 0xff, 0xc2, 0xb5, 0xbb, 0xff, 0xcb, 0xbe, 0xa6, 0xff, 0xcd, 0xdd, 0xe1, 0xff, 0xd2, 0xf0, 0xfe, 0xff, 0xc7, 0xdd, 0xf1, 0xff, 0x83, 0x94, 0xaa, 0xff, 0x73, 0x84, 0xa5, 0xff, 0x6a, 0x7d, 0xa4, 0xff, 0x61, 0x75, 0x9d, 0xff, 0x56, 0x6a, 0x90, 0xff, 0x50, 0x64, 0x8a, 0xff, 0x48, 0x59, 0x7e, 0xff, 0x3c, 0x4c, 0x6f, 0xff, 0x3e, 0x4d, 0x70, 0xff, 0x3a, 0x48, 0x6e, 0xff, 0x2a, 0x3a, 0x64, 0xff, 0x29, 0x39, 0x62, 0xff, 0x1f, 0x30, 0x58, 0xff, 0x21, 0x31, 0x58, 0xff, 0x25, 0x36, 0x5b, 0xff, 0x2b, 0x3c, 0x63, 0xff, 0x37, 0x4a, 0x75, 0xff, 0x3b, 0x4e, 0x7a, 0xff, 0x37, 0x4b, 0x79, 0xff, 0x31, 0x47, 0x74, 0xff, 0x32, 0x4a, 0x7a, 0xff, 0x33, 0x4a, 0x78, 0xff, 0x31, 0x49, 0x76, 0xff, 0x2c, 0x43, 0x71, 0xff, 0x26, 0x3e, 0x6c, 0xff, 0x22, 0x3c, 0x69, 0xff, 0x20, 0x39, 0x67, 0xff, 0x21, 0x3a, 0x68, 0xff, 0x1f, 0x38, 0x66, 0xff, 0x22, 0x3a, 0x6b, 0xfb, 0x2f, 0x46, 0x73, 0x93, 0x5a, 0x6b, 0x92, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x69, 0x51, 0x56, 0x03, 0x5d, 0x52, 0x53, 0x63, 0x5c, 0x52, 0x53, 0xe8, 0x63, 0x52, 0x53, 0xff, 0x66, 0x56, 0x51, 0xff, 0x82, 0x65, 0x54, 0xff, 0xa8, 0x86, 0x6e, 0xff, 0xbd, 0xa0, 0x83, 0xff, 0xc1, 0xa6, 0x8d, 0xff, 0xc1, 0xaa, 0x8b, 0xff, 0xbc, 0xa8, 0x9f, 0xff, 0xca, 0xbc, 0xd1, 0xff, 0xc5, 0xba, 0xe4, 0xff, 0xc0, 0xb1, 0xdd, 0xff, 0xcf, 0xc0, 0xe3, 0xff, 0xe9, 0xe9, 0xe7, 0xff, 0xef, 0xf1, 0xf6, 0xff, 0xc5, 0xe5, 0xf5, 0xff, 0xc5, 0xe3, 0xf9, 0xff, 0xb7, 0xca, 0xdf, 0xff, 0x7c, 0x8e, 0xaa, 0xff, 0x70, 0x85, 0xa9, 0xff, 0x62, 0x78, 0x9c, 0xff, 0x57, 0x6d, 0x91, 0xff, 0x58, 0x6d, 0x91, 0xff, 0x55, 0x69, 0x8d, 0xff, 0x53, 0x66, 0x8a, 0xff, 0x3a, 0x4d, 0x71, 0xff, 0x3d, 0x4f, 0x72, 0xff, 0x34, 0x45, 0x6e, 0xff, 0x2c, 0x3d, 0x66, 0xff, 0x25, 0x36, 0x5e, 0xff, 0x27, 0x38, 0x5f, 0xff, 0x24, 0x37, 0x5c, 0xff, 0x36, 0x48, 0x70, 0xff, 0x38, 0x4b, 0x75, 0xff, 0x35, 0x48, 0x74, 0xff, 0x34, 0x48, 0x75, 0xff, 0x35, 0x4a, 0x77, 0xff, 0x32, 0x48, 0x76, 0xff, 0x31, 0x48, 0x75, 0xff, 0x30, 0x46, 0x73, 0xff, 0x2d, 0x44, 0x71, 0xff, 0x28, 0x3e, 0x6d, 0xff, 0x22, 0x3a, 0x68, 0xff, 0x1f, 0x36, 0x64, 0xff, 0x1d, 0x35, 0x63, 0xff, 0x1c, 0x34, 0x62, 0xe8, 0x1e, 0x3a, 0x67, 0x63, 0x21, 0x3b, 0x69, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x4d, 0x4c, 0x20, 0x5d, 0x4d, 0x49, 0xc0, 0x66, 0x51, 0x49, 0xfa, 0x83, 0x5f, 0x4c, 0xff, 0xa3, 0x7c, 0x64, 0xff, 0xbf, 0x9e, 0x88, 0xff, 0xc4, 0xad, 0x8e, 0xff, 0xc3, 0xad, 0x99, 0xff, 0xbc, 0xaa, 0xcc, 0xff, 0xc7, 0xb9, 0xea, 0xff, 0xbe, 0xb4, 0xe8, 0xff, 0xbf, 0xb6, 0xe9, 0xff, 0xc8, 0xc3, 0xeb, 0xff, 0xee, 0xf0, 0xf4, 0xff, 0xea, 0xec, 0xf3, 0xff, 0xca, 0xe6, 0xf2, 0xff, 0xbf, 0xe1, 0xf3, 0xff, 0xc5, 0xe2, 0xf8, 0xff, 0xa5, 0xbc, 0xd6, 0xff, 0x6b, 0x83, 0xa2, 0xff, 0x6b, 0x85, 0xa7, 0xff, 0x66, 0x7f, 0xa1, 0xff, 0x56, 0x6f, 0x94, 0xff, 0x4e, 0x65, 0x89, 0xff, 0x47, 0x5d, 0x80, 0xff, 0x48, 0x5c, 0x80, 0xff, 0x42, 0x55, 0x79, 0xff, 0x3d, 0x50, 0x73, 0xff, 0x2f, 0x41, 0x65, 0xff, 0x2e, 0x3f, 0x65, 0xff, 0x2a, 0x3b, 0x62, 0xff, 0x2a, 0x3d, 0x63, 0xff, 0x32, 0x43, 0x6c, 0xff, 0x30, 0x42, 0x6e, 0xff, 0x36, 0x48, 0x77, 0xff, 0x37, 0x4a, 0x79, 0xff, 0x35, 0x4b, 0x78, 0xff, 0x34, 0x4b, 0x77, 0xff, 0x33, 0x4b, 0x75, 0xff, 0x2e, 0x46, 0x70, 0xff, 0x2c, 0x43, 0x70, 0xff, 0x29, 0x40, 0x6d, 0xff, 0x22, 0x3a, 0x65, 0xff, 0x1d, 0x36, 0x61, 0xfa, 0x1b, 0x33, 0x5e, 0xc0, 0x1c, 0x34, 0x60, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x46, 0x41, 0x05, 0x5e, 0x49, 0x40, 0x53, 0x75, 0x55, 0x43, 0xdf, 0x97, 0x77, 0x59, 0xff, 0xbc, 0x9d, 0x8c, 0xff, 0xbb, 0xac, 0x8f, 0xff, 0xb9, 0xa6, 0xab, 0xff, 0xb4, 0xa5, 0xdb, 0xff, 0xc0, 0xb3, 0xec, 0xff, 0xba, 0xaf, 0xea, 0xff, 0xb7, 0xaf, 0xeb, 0xff, 0xce, 0xcb, 0xe7, 0xff, 0xf5, 0xf6, 0xf6, 0xff, 0xf4, 0xf7, 0xfb, 0xff, 0xcf, 0xec, 0xf2, 0xff, 0xb9, 0xde, 0xee, 0xff, 0xba, 0xe1, 0xf8, 0xff, 0xbc, 0xd8, 0xf0, 0xff, 0x89, 0xa1, 0xbe, 0xff, 0x67, 0x82, 0xa8, 0xff, 0x6c, 0x86, 0xad, 0xff, 0x63, 0x7c, 0xa8, 0xff, 0x5c, 0x74, 0x9d, 0xff, 0x5b, 0x71, 0x9a, 0xff, 0x54, 0x68, 0x92, 0xff, 0x47, 0x5a, 0x85, 0xff, 0x38, 0x4b, 0x6e, 0xff, 0x3b, 0x4c, 0x72, 0xff, 0x31, 0x41, 0x6c, 0xff, 0x31, 0x40, 0x6c, 0xff, 0x31, 0x43, 0x6b, 0xff, 0x2c, 0x3d, 0x68, 0xff, 0x32, 0x45, 0x73, 0xff, 0x33, 0x44, 0x74, 0xff, 0x34, 0x46, 0x77, 0xff, 0x31, 0x45, 0x73, 0xff, 0x2d, 0x46, 0x6f, 0xff, 0x2d, 0x46, 0x6e, 0xff, 0x2a, 0x42, 0x6c, 0xff, 0x27, 0x3f, 0x6a, 0xff, 0x24, 0x3b, 0x68, 0xff, 0x21, 0x3a, 0x62, 0xdf, 0x1d, 0x35, 0x5e, 0x53, 0x1b, 0x33, 0x5b, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x44, 0x2f, 0x0c, 0x90, 0x6f, 0x5b, 0x81, 0xb4, 0x97, 0x86, 0xdf, 0xb3, 0xa8, 0x8c, 0xff, 0xad, 0xa1, 0xab, 0xff, 0xac, 0xa4, 0xd4, 0xff, 0xc0, 0xb8, 0xe8, 0xff, 0xc9, 0xc1, 0xe8, 0xff, 0xe0, 0xda, 0xf2, 0xff, 0xf4, 0xf5, 0xf9, 0xff, 0xf9, 0xf7, 0xf6, 0xff, 0xf9, 0xf6, 0xf9, 0xff, 0xd7, 0xec, 0xf2, 0xff, 0xc4, 0xe4, 0xf2, 0xff, 0xb5, 0xdd, 0xef, 0xff, 0xb6, 0xd9, 0xf5, 0xff, 0xa2, 0xbe, 0xe0, 0xff, 0x74, 0x8e, 0xb2, 0xff, 0x6e, 0x89, 0xb0, 0xff, 0x67, 0x81, 0xad, 0xff, 0x51, 0x67, 0x95, 0xff, 0x5a, 0x72, 0x9e, 0xff, 0x5c, 0x73, 0x9e, 0xff, 0x47, 0x5a, 0x84, 0xff, 0x44, 0x54, 0x7e, 0xff, 0x3d, 0x4e, 0x79, 0xff, 0x3d, 0x4c, 0x78, 0xff, 0x2e, 0x3e, 0x6a, 0xff, 0x30, 0x40, 0x6a, 0xff, 0x34, 0x44, 0x6f, 0xff, 0x36, 0x47, 0x74, 0xff, 0x34, 0x48, 0x77, 0xff, 0x31, 0x45, 0x74, 0xff, 0x2f, 0x45, 0x70, 0xff, 0x2c, 0x43, 0x6c, 0xff, 0x2d, 0x44, 0x6d, 0xff, 0x2a, 0x41, 0x6b, 0xff, 0x27, 0x3e, 0x68, 0xdf, 0x23, 0x3a, 0x65, 0x82, 0x1f, 0x36, 0x60, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x99, 0x82, 0x13, 0xaa, 0x9d, 0x90, 0x64, 0xaa, 0xa0, 0xab, 0xe4, 0xae, 0xa6, 0xc9, 0xfb, 0xbc, 0xb4, 0xd4, 0xff, 0xef, 0xeb, 0xf5, 0xff, 0xfb, 0xfb, 0xf2, 0xff, 0xf3, 0xf4, 0xf5, 0xff, 0xf6, 0xf4, 0xf5, 0xff, 0xf6, 0xf4, 0xf7, 0xff, 0xd8, 0xec, 0xf2, 0xff, 0xc6, 0xe3, 0xef, 0xff, 0xba, 0xe3, 0xf3, 0xff, 0xae, 0xd6, 0xf2, 0xff, 0xaa, 0xc8, 0xec, 0xff, 0x8d, 0xa7, 0xcc, 0xff, 0x66, 0x83, 0xaa, 0xff, 0x6a, 0x88, 0xb2, 0xff, 0x62, 0x7a, 0xa7, 0xff, 0x5b, 0x74, 0xa0, 0xff, 0x55, 0x6e, 0x98, 0xff, 0x4f, 0x64, 0x8d, 0xff, 0x4a, 0x5d, 0x88, 0xff, 0x40, 0x52, 0x7d, 0xff, 0x3b, 0x4b, 0x76, 0xff, 0x34, 0x45, 0x6f, 0xff, 0x36, 0x48, 0x71, 0xff, 0x34, 0x46, 0x71, 0xff, 0x35, 0x48, 0x75, 0xff, 0x34, 0x48, 0x74, 0xff, 0x32, 0x45, 0x71, 0xff, 0x2f, 0x42, 0x6d, 0xff, 0x2b, 0x3e, 0x68, 0xfb, 0x29, 0x3f, 0x68, 0xe4, 0x2a, 0x40, 0x6a, 0x64, 0x27, 0x3d, 0x67, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x91, 0x74, 0x07, 0xb6, 0xb6, 0xb6, 0x51, 0xed, 0xed, 0xed, 0xa1, 0xf9, 0xf6, 0xf8, 0xe8, 0xf5, 0xf2, 0xf6, 0xff, 0xf2, 0xf3, 0xf3, 0xff, 0xf3, 0xf3, 0xf3, 0xff, 0xf3, 0xf4, 0xf7, 0xff, 0xd1, 0xe9, 0xf0, 0xff, 0xc0, 0xe0, 0xef, 0xff, 0xb2, 0xdd, 0xef, 0xff, 0xab, 0xd4, 0xf2, 0xff, 0xa6, 0xc9, 0xef, 0xff, 0xa4, 0xc3, 0xeb, 0xff, 0x6d, 0x8b, 0xb4, 0xff, 0x68, 0x87, 0xaf, 0xff, 0x69, 0x84, 0xaf, 0xff, 0x59, 0x71, 0x9d, 0xff, 0x59, 0x71, 0x9b, 0xff, 0x57, 0x70, 0x98, 0xff, 0x51, 0x65, 0x8f, 0xff, 0x48, 0x5a, 0x85, 0xff, 0x40, 0x51, 0x7c, 0xff, 0x3c, 0x4d, 0x78, 0xff, 0x35, 0x47, 0x73, 0xff, 0x34, 0x48, 0x73, 0xff, 0x34, 0x49, 0x73, 0xff, 0x33, 0x48, 0x72, 0xff, 0x32, 0x43, 0x6f, 0xe8, 0x30, 0x43, 0x6e, 0xa1, 0x2d, 0x41, 0x6a, 0x51, 0x26, 0x3a, 0x63, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb, 0xfe, 0xf6, 0x03, 0xf2, 0xf2, 0xf3, 0x0a, 0xf0, 0xf2, 0xf3, 0x4a, 0xf2, 0xf2, 0xf4, 0xa8, 0xf3, 0xf3, 0xf2, 0xe1, 0xf0, 0xf2, 0xf4, 0xee, 0xcc, 0xe5, 0xeb, 0xfa, 0xbc, 0xdc, 0xf0, 0xff, 0xaa, 0xd5, 0xeb, 0xff, 0x9f, 0xc9, 0xec, 0xff, 0xa1, 0xc5, 0xf0, 0xff, 0xa1, 0xc4, 0xee, 0xff, 0x81, 0xa1, 0xca, 0xff, 0x67, 0x85, 0xae, 0xff, 0x63, 0x82, 0xad, 0xff, 0x56, 0x6f, 0x9a, 0xff, 0x5f, 0x75, 0x9f, 0xff, 0x56, 0x72, 0x99, 0xff, 0x53, 0x69, 0x93, 0xff, 0x44, 0x58, 0x83, 0xff, 0x3b, 0x4c, 0x77, 0xff, 0x39, 0x49, 0x75, 0xfa, 0x3b, 0x4d, 0x7c, 0xee, 0x39, 0x4e, 0x79, 0xe1, 0x37, 0x4e, 0x78, 0xa8, 0x36, 0x4a, 0x74, 0x4a, 0x34, 0x43, 0x6f, 0x0a, 0x31, 0x44, 0x6d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9, 0xf4, 0xf5, 0x0b, 0xd9, 0xe7, 0xec, 0x28, 0xc2, 0xe1, 0xec, 0x41, 0xb5, 0xd9, 0xec, 0x5d, 0xa4, 0xcf, 0xed, 0x88, 0x9c, 0xc1, 0xeb, 0xb2, 0x9d, 0xbd, 0xe9, 0xd1, 0xa3, 0xc7, 0xf1, 0xe7, 0x98, 0xbc, 0xe7, 0xf4, 0x72, 0x8f, 0xba, 0xfd, 0x6c, 0x88, 0xb1, 0xfd, 0x61, 0x7d, 0xa6, 0xf4, 0x58, 0x71, 0x9c, 0xe7, 0x5b, 0x74, 0xa1, 0xd1, 0x55, 0x6b, 0x95, 0xb2, 0x4f, 0x65, 0x8f, 0x88, 0x3e, 0x52, 0x7c, 0x5d, 0x3d, 0x4f, 0x7a, 0x41, 0x3b, 0x50, 0x7a, 0x28, 0x3c, 0x51, 0x78, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
|
||||
};
|
||||
|
||||
const lv_img_dsc_t img_benchmark_avatar = {
|
||||
.header.magic = LV_IMAGE_HEADER_MAGIC,
|
||||
.header.cf = LV_COLOR_FORMAT_ARGB8888,
|
||||
.header.flags = 0,
|
||||
.header.w = 80,
|
||||
.header.h = 80,
|
||||
.header.stride = 320,
|
||||
.data_size = 25600,
|
||||
.data = img_benchmark_avatar_map,
|
||||
};
|
||||
|
||||
#endif /*LV_USE_DEMO_BENCHMARK*/
|
||||
|
After Width: | Height: | Size: 34 KiB |
@@ -0,0 +1,143 @@
|
||||
#ifdef __has_include
|
||||
#if __has_include("lvgl.h")
|
||||
#ifndef LV_LVGL_H_INCLUDE_SIMPLE
|
||||
#define LV_LVGL_H_INCLUDE_SIMPLE
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
|
||||
#include "lvgl.h"
|
||||
#else
|
||||
#include "lvgl/lvgl.h"
|
||||
#endif
|
||||
|
||||
#if LV_USE_DEMO_BENCHMARK
|
||||
|
||||
#ifndef LV_ATTRIBUTE_MEM_ALIGN
|
||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||
#endif
|
||||
|
||||
#ifndef LV_ATTRIBUTE_IMAGE_IMG_BENCHMARK_COGWHEEL_ALPHA256
|
||||
#define LV_ATTRIBUTE_IMAGE_IMG_BENCHMARK_COGWHEEL_ALPHA256
|
||||
#endif
|
||||
|
||||
static const
|
||||
LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMAGE_IMG_BENCHMARK_COGWHEEL_ALPHA256
|
||||
uint8_t img_benchmark_cogwheel_alpha256_map[] = {
|
||||
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x6d,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x11,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x0f,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x39,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x53,0xff,0x28,0x06,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x0c,0x2b,0xff,0xff,0xa5,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x4b,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x51,0xff,0xff,0xff,0xff,0xff,0x28,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x8c,0xff,0xff,0xff,0xff,0xff,0x99,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xaa,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0x05,0x00,0x00,0x00,0x00,0x00,0x21,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0xb2,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x04,0x00,0x00,0x00,0x00,0x04,0xd6,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x25,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x6b,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0x04,0x00,0x00,0x00,0x00,0x10,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x67,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xc4,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x2a,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x40,0x00,0x00,0x00,0x01,0x7c,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xd4,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa2,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbf,0x0e,0x00,0x00,0x00,0x07,0x2d,0x82,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0x46,0x05,0x00,0x31,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xdc,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0xbb,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xa9,0x3b,0x34,0x4e,0xac,0xff,0xff,0xfb,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xff,0xff,0xa8,0x59,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc7,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x7e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xf7,0xff,0xff,0xff,0xff,0xff,0xf7,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xf3,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0xda,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xf3,0xf0,0xf3,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xf3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe5,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x16,0x95,0x2e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x4b,0x1d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x89,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,0xec,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x86,0xe6,0xff,0xff,0x93,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0xaf,0xff,0xff,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0xd2,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,0x87,0x01,0x00,0x00,0x00,0x00,0x0b,0xf4,0xff,0xff,0xdc,0xff,0xff,0xb1,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xcc,0xff,0xff,0xff,0xff,0x4a,0x03,0x00,0x00,0x00,0x00,0x00,0x06,0x89,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,0xf7,0xff,0xff,0x83,0x02,0x00,0x00,0x0d,0xff,0xff,0xfb,0xff,0xff,0xf7,0xff,0xff,0xbf,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xc8,0xff,0xff,0xf9,0xf9,0xff,0xff,0xbb,0x19,0x00,0x00,0x02,0x78,0xff,0xff,0xff,0xf8,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,0xf7,0xff,0xff,0xff,0x6b,0x2c,0xf7,0xff,0xff,0xfb,0xff,0xff,0xff,0xf7,0xff,0xff,0xa7,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x9f,0xff,0xff,0xf9,0xff,0xff,0xf9,0xff,0xff,0xe6,0x20,0x06,0x76,0xff,0xff,0xff,0xf8,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,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xf7,0xff,0xe3,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0xd7,0xff,0xf9,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,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,0xfb,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xb9,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0xc4,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xfb,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,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbb,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x6f,0xff,0xff,0xfc,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,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x8f,0xff,0xff,0xfc,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,0xfb,0xfb,0xff,0xff,0xff,0xff,0xff,0xfb,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,0xd2,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x8e,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,0x97,0x12,0x2a,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0x62,0x19,0x14,0x31,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0x1d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x13,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0x29,0x0f,0x04,0x00,0x01,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xb2,0x03,0x00,0x00,0x00,0x07,0x36,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0x55,0x0f,0x0b,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x0b,0x4f,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0x40,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x5e,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x9e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x61,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xb2,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x19,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf4,0xff,0xff,0x89,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0xc1,0xff,0xff,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0x0b,0x00,0x00,0x00,0x02,0x44,0x7c,0x70,0x86,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0xb0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf4,0xff,0xff,0x4f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x70,0xff,0xff,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xac,0x80,0x80,0x78,0x9b,0xff,0xff,0xff,0xff,0xff,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x22,0xf3,0xe8,0x64,0x0b,0x01,0x02,0x00,0x04,0x94,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf4,0xff,0xff,0x54,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x77,0xff,0xff,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xe6,0xe8,0xe6,0xff,0xff,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x11,0xff,0xff,0xff,0xff,0xe2,0xcd,0xcf,0xad,0xd5,0xff,0xff,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf4,0xff,0xff,0x4e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x77,0xff,0xff,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x51,0xff,0xff,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,0xff,0xff,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x75,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x88,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x10,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0x57,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0xf3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x1f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x87,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x04,0x7b,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x45,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x02,0x78,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0x37,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x4f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x08,0x92,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x4b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x37,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2c,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xad,0x29,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x05,0x41,0xd8,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x11,0x45,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0x46,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xa6,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0x83,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x7f,0xff,0xff,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2b,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0x1d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf4,0xff,0x85,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x17,0x79,0xff,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x19,0x8c,0xff,0xff,0xf3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xf7,0xff,0xff,0x5b,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x6d,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xff,0x8a,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x45,0xff,0xf3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xb9,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1d,0xff,0xff,0xf7,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xef,0xfb,0xff,0xff,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x19,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf0,0xff,0x37,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4d,0xff,0xf3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0xe9,0xff,0xe2,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xde,0xff,0xb6,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x13,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xff,0x91,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0xff,0xf3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc6,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x95,0xff,0xf4,0xff,0xd9,0xcc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xeb,0xce,0xfb,0xf7,0xff,0x4b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x78,0xff,0xf6,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0xff,0xff,0xff,0xd5,0x04,0x00,0x0f,0xff,0xff,0xe8,0xaf,0xb5,0xb4,0xae,0xe6,0xff,0xff,0xb3,0x03,0x01,0xcb,0xff,0xff,0xff,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xff,0x3d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x19,0xed,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x23,0xff,0xff,0xf8,0xff,0xdd,0x02,0x00,0x00,0x15,0x79,0x0d,0x00,0x01,0x01,0x00,0x0a,0x77,0x3b,0x01,0x00,0x02,0xdf,0xff,0xf3,0xff,0xcb,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x19,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x26,0x01,0x02,0x02,0x03,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x4f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0xff,0xf4,0xff,0xff,0xff,0x61,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x88,0xff,0xff,0xff,0xf7,0xff,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xff,0xff,0xd5,0xdc,0xdf,0xff,0xe6,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x09,0x11,0x0b,0x1a,0x50,0xb5,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x42,0x02,0x03,0x04,0x04,0x05,0x05,0x04,0x04,0x04,0x05,0x03,0x05,0x13,0x81,0xff,0xff,0xff,0xfb,0xff,0xff,0x17,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xff,0xff,0xfb,0xff,0xfb,0xff,0xb1,0x11,0x03,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x02,0x33,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xff,0xff,0xff,0xe2,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x20,0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x99,0x65,0x81,0x80,0x89,0x8b,0x89,0x88,0x87,0x89,0x78,0xaf,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0x6d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x15,0xff,0xff,0xff,0xff,0xff,0xfb,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,0xfb,0xff,0xff,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0xb6,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xec,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x51,0xff,0xff,0xfc,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,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0xb3,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,0xfb,0xaf,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x60,0xf3,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,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0xb7,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,0xfb,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x3b,0xed,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,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0xb8,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,0xfb,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x3d,0xed,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,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0xb2,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,0x8e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x2d,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0x39,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xdd,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x0b,0xf6,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x93,0x56,0x5b,0x5b,0x62,0x62,0x5a,0x5c,0x64,0x53,0x90,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0x73,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4d,0xff,0xff,0xfb,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0x9f,0x79,0x85,0x83,0x83,0x83,0x83,0x7e,0x8b,0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0x60,0x16,0x0d,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x16,0xa1,0xff,0xff,0xf9,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x94,0x1d,0x04,0x02,0x02,0x02,0x03,0x03,0x02,0x02,0x03,0x02,0x05,0x11,0x71,0xff,0xfc,0xff,0xfc,0xff,0xff,0x4b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0xf8,0xff,0xfb,0xff,0xff,0xf7,0xff,0xff,0x2b,0x03,0x06,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x37,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x32,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x05,0x0c,0x0b,0x07,0x19,0x90,0xff,0xff,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x43,0xff,0xf6,0xff,0xff,0xff,0xb2,0x05,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x3b,0xff,0xff,0xff,0xf8,0xff,0xff,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x50,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0xff,0xff,0xf9,0xff,0xff,0x29,0x00,0x02,0x78,0xed,0x40,0x01,0x02,0x02,0x01,0x20,0x9e,0x23,0x00,0x00,0x02,0xd9,0xff,0xfb,0xff,0xff,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x7c,0xff,0xf6,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x2a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0xff,0xff,0xff,0xff,0x58,0x06,0x2e,0xff,0xff,0xff,0xbc,0xbe,0xc1,0xbc,0xfc,0xff,0xff,0x37,0x02,0x07,0xd9,0xff,0xff,0xff,0x46,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0xff,0xf3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x25,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x68,0xff,0xff,0xff,0xff,0xe8,0xfc,0xff,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xda,0xd9,0xf8,0xff,0xff,0x80,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x15,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0x54,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x55,0xff,0xf3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x2e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x8d,0xff,0xe8,0xff,0xff,0xff,0xfc,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xfc,0xff,0xff,0xff,0xef,0xff,0x6d,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x13,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,0xff,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xa1,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x17,0xee,0xff,0xfc,0xf3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf5,0xf8,0xff,0xd9,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2a,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0x6a,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x3d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x6c,0xff,0xff,0xfc,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,0xff,0xff,0x76,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0x53,0x09,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x29,0x90,0xff,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xed,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x31,0xa4,0xff,0xff,0xfc,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,0xff,0xff,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0x84,0x18,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x13,0x90,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x13,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x35,0x65,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,0xff,0xff,0x4b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x03,0x57,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x64,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4d,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x5b,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x05,0x86,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x11,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc4,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x01,0x00,0x1b,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7b,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x12,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x27,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x59,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xd1,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x17,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0x7d,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x12,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0c,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4a,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x58,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x07,0x84,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,0xff,0xff,0x79,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x12,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x11,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x35,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0x15,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x27,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,0xff,0xff,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x12,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x11,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0xed,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x01,0x00,0x15,0xff,0xff,0xfc,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x92,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x12,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x11,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x8d,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe9,0x55,0x35,0xca,0xd6,0xca,0xdc,0xf8,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x24,0xff,0xff,0xff,0xff,0xff,0xff,0xe8,0xc6,0xff,0xff,0xfc,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,0xff,0xff,0xc8,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x12,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x11,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x17,0xce,0xff,0xff,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,0xff,0xaa,0x02,0x00,0x00,0x01,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x29,0xbd,0x9b,0x99,0xa3,0x93,0x25,0x0b,0x74,0xf6,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,0xff,0xff,0xd5,0x2b,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x12,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x12,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0xb1,0xff,0xff,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x2c,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0x7f,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x12,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x12,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x48,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x74,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x87,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0x7a,0x09,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x12,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x12,0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x12,0x92,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x09,0xc8,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,0xff,0xff,0xcd,0x38,0x0a,0x00,0x00,0x00,0x01,0x00,0x00,0x01,0x00,0x13,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x13,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x3e,0xf6,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x72,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x04,0xa8,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xac,0x31,0x22,0x02,0x00,0x00,0x00,0x01,0x00,0x13,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0x00,0x01,0x00,0x00,0x00,0x05,0x1f,0x23,0x86,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x4e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x57,0x1a,0x08,0x00,0x00,0x00,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x1f,0x00,0x00,0x00,0x0f,0x28,0x68,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x9f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x75,0x3b,0x33,0x12,0x26,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x97,0x3b,0x2d,0x39,0xa3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,0xff,0xff,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4d,0xff,0xff,0xfc,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,0xc6,0xac,0xfc,0xff,0xff,0xff,0xff,0xff,0xfc,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,0xff,0xb3,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0xff,0xff,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,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,0xba,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe8,0xff,0xf9,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,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xee,0xff,0xfc,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,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xff,0xf9,0xff,0xe2,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0xd2,0xff,0xff,0xf9,0xff,0xff,0xff,0xff,0xfc,0xfc,0xff,0xff,0xff,0xff,0xff,0xf9,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,0xf9,0xff,0xff,0xff,0x8b,0x73,0xff,0xff,0xff,0xfb,0xff,0xf9,0xff,0xff,0x8a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0xeb,0xff,0xff,0xfc,0xff,0xff,0xfc,0xff,0xff,0xff,0xdd,0xd2,0xe3,0xff,0xff,0xfc,0xfc,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,0xf6,0xff,0xff,0xfc,0x4e,0x03,0x00,0x39,0xff,0xff,0xff,0xff,0xff,0xff,0xbd,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x11,0xe6,0xff,0xff,0xf9,0xff,0xff,0xff,0xe8,0x42,0x09,0x03,0x0c,0x93,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,0xf9,0xff,0xff,0x72,0x07,0x00,0x00,0x00,0x00,0x10,0x66,0xf6,0xd8,0xe6,0x8b,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0xd0,0xff,0xff,0xff,0xf6,0x4e,0x0b,0x00,0x00,0x00,0x00,0x01,0x37,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,0x7b,0x02,0x00,0x00,0x00,0x01,0x00,0x00,0x01,0x0c,0x0f,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x9b,0xa0,0x91,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0xdd,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,0xc7,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0xe6,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xa7,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xee,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,0xf9,0xf7,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xa7,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0xf1,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xff,0xff,0xfc,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xcf,0x17,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x53,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0x66,0x3a,0x50,0xaf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,0xff,0xff,0x58,0x40,0x4e,0x3f,0x2e,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7b,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xff,0xff,0xf9,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0x59,0x00,0x00,0x00,0x24,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x46,0x00,0x00,0x00,0x00,0x00,0x29,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfa,0xff,0xc2,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0xc1,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xa0,0x05,0x00,0x01,0x00,0x0c,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xce,0x05,0x00,0x00,0x00,0x00,0x00,0x09,0x82,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x54,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0x29,0x00,0x00,0x00,0x00,0x10,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x52,0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x2f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x68,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x23,0x95,0xff,0xff,0xff,0xff,0xff,0xff,0x50,0x00,0x00,0x01,0x00,0x00,0x12,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x68,0xff,0xff,0xff,0xff,0x6a,0x25,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0a,0x16,0x39,0xeb,0xff,0x63,0x17,0x02,0x00,0x01,0x00,0x00,0x00,0x0f,0xee,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xff,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x04,0x1e,0x1e,0x1f,0x1c,0x06,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x1a,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x2f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x0a,0xb8,0xff,0xe7,0xe2,0xe4,0xe7,0xff,0xf7,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x09,0x0c,0x0c,0x0b,0x10,0x18,0x12,0x0b,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
|
||||
};
|
||||
|
||||
const lv_img_dsc_t img_benchmark_cogwheel_alpha256 = {
|
||||
.header.magic = LV_IMAGE_HEADER_MAGIC,
|
||||
.header.cf = LV_COLOR_FORMAT_A8,
|
||||
.header.flags = 0,
|
||||
.header.w = 100,
|
||||
.header.h = 100,
|
||||
.header.stride = 128,
|
||||
.data_size = 12800,
|
||||
.data = img_benchmark_cogwheel_alpha256_map,
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,142 @@
|
||||
#ifdef __has_include
|
||||
#if __has_include("lvgl.h")
|
||||
#ifndef LV_LVGL_H_INCLUDE_SIMPLE
|
||||
#define LV_LVGL_H_INCLUDE_SIMPLE
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
|
||||
#include "lvgl.h"
|
||||
#else
|
||||
#include "lvgl/lvgl.h"
|
||||
#endif
|
||||
|
||||
#if LV_USE_DEMO_BENCHMARK
|
||||
#ifndef LV_ATTRIBUTE_MEM_ALIGN
|
||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||
#endif
|
||||
|
||||
#ifndef LV_ATTRIBUTE_IMAGE_IMG_BENCHMARK_COGWHEEL_ARGB
|
||||
#define LV_ATTRIBUTE_IMAGE_IMG_BENCHMARK_COGWHEEL_ARGB
|
||||
#endif
|
||||
|
||||
static const
|
||||
LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMAGE_IMG_BENCHMARK_COGWHEEL_ARGB
|
||||
uint8_t img_benchmark_cogwheel_argb_map[] = {
|
||||
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfb,0xfa,0xf9,0x08,0xad,0x9b,0x8f,0xff,0x95,0x7e,0x6d,0xff,0x90,0x7a,0x67,0xff,0x92,0x7c,0x69,0xff,0x91,0x7b,0x69,0xff,0x8c,0x75,0x63,0xff,0x97,0x83,0x72,0xff,0xd1,0xc8,0xc0,0x6d,0xfe,0xfe,0xfe,0x03,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf4,0xf2,0xf1,0x11,0x9e,0x8a,0x79,0xff,0x8f,0x78,0x65,0xff,0x90,0x79,0x66,0xff,0x91,0x7a,0x67,0xff,0x8f,0x79,0x66,0xff,0x8c,0x75,0x63,0xff,0x8c,0x76,0x64,0xff,0x9f,0x8c,0x7d,0xff,0xf8,0xf7,0xf6,0x09,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xfc,0xfc,0xfb,0x08,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf9,0xf7,0xf6,0x0c,0xf5,0xf2,0xf1,0x0f,0xfd,0xfc,0xfc,0x05,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xe5,0xdf,0xdb,0x39,0x9a,0x85,0x74,0xff,0x90,0x79,0x66,0xff,0x94,0x7e,0x6c,0xff,0x95,0x7f,0x6d,0xff,0x94,0x7e,0x6c,0xff,0x92,0x7c,0x6b,0xff,0x8c,0x76,0x63,0xff,0x95,0x7f,0x6e,0xff,0xf9,0xf8,0xf7,0x07,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x01,0xcb,0xc2,0xba,0x53,0xae,0xa2,0x96,0xff,0xdf,0xda,0xd6,0x28,0xf9,0xf8,0xf8,0x06,0xf9,0xf8,0xf7,0x0b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x06,0xfa,0xf9,0xf8,0x0c,0xe7,0xe1,0xdc,0x2b,0xaf,0x9a,0x8b,0xff,0x9d,0x85,0x73,0xff,0xb9,0xa8,0x9b,0xa5,0xfd,0xfd,0xfc,0x0a,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xdf,0xd9,0xd4,0x4b,0x9d,0x88,0x77,0xff,0x91,0x7a,0x68,0xff,0x95,0x7f,0x6d,0xff,0x96,0x80,0x6e,0xff,0x95,0x7f,0x6d,0xff,0x93,0x7e,0x6c,0xff,0x8d,0x78,0x65,0xff,0x95,0x80,0x6f,0xff,0xde,0xd9,0xd5,0x2c,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xc7,0xbe,0xb5,0x51,0x87,0x74,0x61,0xff,0x85,0x73,0x60,0xff,0x82,0x70,0x5e,0xff,0x90,0x80,0x6f,0xff,0xa7,0x9a,0x8c,0xff,0xe1,0xdc,0xd8,0x28,0xfa,0xfa,0xf9,0x08,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfc,0xfb,0xfa,0x0d,0xce,0xc0,0xb7,0x8c,0xad,0x97,0x87,0xff,0xa7,0x90,0x7f,0xff,0xa2,0x8a,0x78,0xff,0x9c,0x83,0x71,0xff,0xa0,0x89,0x77,0xff,0xc1,0xb2,0xa6,0x99,0xfd,0xfc,0xfc,0x07,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfd,0xfd,0x04,0xc4,0xb7,0xad,0xaa,0x9c,0x88,0x77,0xff,0x92,0x7c,0x69,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7e,0x6c,0xff,0x93,0x7e,0x6c,0xff,0x90,0x79,0x67,0xfb,0x92,0x7e,0x6e,0xff,0x9f,0x92,0x89,0xff,0xfa,0xf9,0xf9,0x05,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xea,0xe7,0xe4,0x21,0x9c,0x8b,0x7c,0xff,0x82,0x6e,0x5b,0xff,0x81,0x6e,0x5a,0xfb,0x82,0x70,0x5d,0xff,0x85,0x73,0x61,0xff,0x89,0x77,0x65,0xff,0x8f,0x7f,0x6e,0xff,0x9c,0x8e,0x7f,0xff,0xf9,0xf8,0xf7,0x0a,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x07,0xc5,0xb4,0xa9,0xb2,0xa6,0x8d,0x7b,0xff,0x9d,0x82,0x6f,0xff,0x9f,0x85,0x72,0xff,0x9f,0x87,0x75,0xff,0xa0,0x89,0x77,0xfc,0x9b,0x82,0x6f,0xff,0xa5,0x8e,0x7d,0xff,0xed,0xe8,0xe5,0x1a,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfb,0xfa,0xfa,0x05,0xad,0x9b,0x8d,0xff,0x9a,0x84,0x73,0xff,0x94,0x7d,0x6a,0xff,0x95,0x80,0x6d,0xff,0x95,0x7e,0x6c,0xff,0x95,0x7e,0x6c,0xff,0x93,0x7e,0x6c,0xff,0x92,0x7c,0x69,0xff,0x91,0x7c,0x6c,0xff,0x92,0x82,0x79,0xff,0xf9,0xf9,0xf9,0x04,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfc,0xfc,0x04,0xaf,0xa2,0x96,0xd6,0x8a,0x77,0x65,0xff,0x88,0x73,0x61,0xff,0x88,0x75,0x63,0xff,0x87,0x75,0x63,0xff,0x84,0x72,0x60,0xfb,0x81,0x6e,0x5b,0xff,0x7c,0x69,0x56,0xff,0x82,0x6f,0x5d,0xff,0xeb,0xe8,0xe5,0x23,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf6,0xf4,0xf2,0x25,0xaf,0x99,0x89,0xff,0xa0,0x84,0x72,0xff,0xa4,0x89,0x78,0xff,0xa3,0x8a,0x79,0xff,0xa2,0x8a,0x78,0xff,0xa2,0x8a,0x78,0xff,0x9e,0x85,0x73,0xff,0xa0,0x87,0x76,0xff,0xc1,0xb2,0xa7,0x6b,0xfe,0xfe,0xfe,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfc,0xfb,0xfb,0x03,0xa5,0x91,0x82,0xff,0x99,0x83,0x71,0xff,0x94,0x7e,0x6c,0xff,0x95,0x80,0x6e,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7e,0x6d,0xff,0x94,0x7e,0x6c,0xff,0x93,0x7d,0x6a,0xff,0x90,0x7b,0x6a,0xff,0x8e,0x7e,0x74,0xfb,0xfa,0xfa,0xfa,0x04,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf3,0xf1,0xf0,0x10,0x94,0x83,0x72,0xff,0x84,0x6e,0x5b,0xff,0x8a,0x76,0x64,0xff,0x89,0x76,0x63,0xff,0x87,0x75,0x62,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x7f,0x6c,0x59,0xff,0x83,0x70,0x5e,0xff,0xcb,0xc3,0xbc,0x67,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfc,0xfb,0xfb,0x0b,0xb4,0x9f,0x92,0xc4,0xa2,0x88,0x77,0xff,0xa4,0x8a,0x79,0xff,0xa5,0x8b,0x79,0xff,0xa3,0x8a,0x78,0xff,0xa2,0x8a,0x78,0xff,0xa1,0x88,0x77,0xff,0x9e,0x86,0x73,0xff,0x9f,0x89,0x77,0xff,0xe2,0xdb,0xd6,0x2a,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf9,0xf8,0xf7,0x09,0xa1,0x8c,0x7c,0xff,0x96,0x80,0x6e,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x94,0x7f,0x6d,0xff,0x93,0x7d,0x6b,0xff,0x8e,0x79,0x68,0xff,0x8e,0x7d,0x72,0xff,0xce,0xc9,0xc6,0x40,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x01,0xbe,0xb4,0xaa,0x7c,0x90,0x7d,0x6b,0xff,0x88,0x73,0x60,0xff,0x8a,0x77,0x64,0xff,0x89,0x76,0x63,0xff,0x87,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x81,0x6f,0x5c,0xff,0x87,0x76,0x66,0xff,0xab,0xa1,0x99,0xd4,0xfe,0xfe,0xfe,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xba,0xa7,0x99,0xa2,0xa4,0x8a,0x79,0xff,0xa4,0x89,0x78,0xff,0xa5,0x8b,0x79,0xff,0xa3,0x8a,0x78,0xff,0xa1,0x8a,0x77,0xff,0xa1,0x89,0x77,0xff,0x9f,0x87,0x75,0xff,0x9a,0x81,0x6e,0xff,0xb4,0xa2,0x96,0xbf,0xfa,0xf9,0xf9,0x0e,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfd,0xfc,0x07,0xe1,0xda,0xd6,0x2d,0xbd,0xaf,0xa3,0x82,0x99,0x83,0x72,0xff,0x95,0x7f,0x6d,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6c,0xff,0x93,0x7d,0x6c,0xff,0x8f,0x7a,0x69,0xfb,0x8f,0x7a,0x6b,0xff,0x9a,0x89,0x7d,0xff,0xcd,0xc5,0xbe,0x46,0xfd,0xfd,0xfd,0x05,0xff,0xff,0xff,0x00,0xda,0xd4,0xce,0x31,0x92,0x80,0x6f,0xff,0x8a,0x75,0x63,0xff,0x8b,0x77,0x65,0xfb,0x8b,0x77,0x65,0xff,0x89,0x75,0x64,0xff,0x87,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x86,0x73,0x61,0xff,0x81,0x6f,0x5d,0xfb,0x86,0x77,0x6b,0xff,0xa5,0x9c,0x98,0xdc,0xfe,0xfe,0xfe,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x01,0xbb,0xa7,0x99,0xbb,0xa3,0x8a,0x78,0xff,0xa3,0x89,0x77,0xfc,0xa5,0x8c,0x7a,0xff,0xa4,0x8b,0x78,0xff,0xa2,0x8a,0x78,0xff,0xa1,0x88,0x77,0xff,0xa0,0x88,0x76,0xff,0x9f,0x86,0x74,0xff,0xa1,0x8a,0x79,0xff,0xb7,0xa6,0x9a,0xa9,0xd5,0xcb,0xc4,0x3b,0xd4,0xca,0xc2,0x34,0xcd,0xc2,0xb9,0x4e,0xbc,0xad,0xa1,0xac,0xa6,0x93,0x83,0xff,0x9a,0x84,0x72,0xff,0x96,0x7f,0x6e,0xfb,0x97,0x80,0x6f,0xfb,0x96,0x80,0x6f,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x94,0x7e,0x6d,0xff,0x93,0x7d,0x6c,0xff,0x92,0x7c,0x6b,0xff,0x90,0x7b,0x69,0xf7,0x90,0x7a,0x68,0xff,0x9c,0x89,0x7b,0xff,0xb2,0xa4,0x99,0xa8,0xc3,0xb9,0xaf,0x59,0x9f,0x8f,0x7f,0xff,0x89,0x75,0x62,0xff,0x88,0x74,0x61,0xfb,0x8c,0x78,0x66,0xff,0x8b,0x77,0x65,0xff,0x89,0x76,0x64,0xff,0x87,0x75,0x63,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x60,0xff,0x82,0x6f,0x5d,0xff,0x86,0x78,0x6f,0xff,0xac,0xa4,0xa3,0xc7,0xfe,0xfe,0xfe,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xd0,0xc2,0xb8,0x7e,0xa9,0x90,0x7f,0xff,0xa2,0x88,0x76,0xff,0xa5,0x8b,0x79,0xff,0xa4,0x8b,0x79,0xff,0xa3,0x8a,0x79,0xff,0xa2,0x88,0x78,0xff,0xa1,0x88,0x77,0xff,0xa0,0x88,0x76,0xfb,0x9e,0x85,0x74,0xf7,0x9c,0x84,0x71,0xff,0x9e,0x86,0x75,0xff,0x9e,0x87,0x75,0xff,0x9a,0x83,0x70,0xff,0x97,0x7f,0x6c,0xff,0x97,0x81,0x6e,0xf7,0x99,0x82,0x71,0xf7,0x98,0x81,0x70,0xff,0x97,0x80,0x6f,0xff,0x97,0x80,0x6f,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6d,0xff,0x94,0x7e,0x6d,0xff,0x93,0x7e,0x6d,0xff,0x92,0x7d,0x6c,0xff,0x91,0x7c,0x6b,0xff,0x90,0x7a,0x69,0xfb,0x8e,0x78,0x66,0xf3,0x8c,0x76,0x64,0xff,0x8c,0x78,0x66,0xff,0x8a,0x76,0x63,0xff,0x8c,0x7a,0x67,0xf7,0x8c,0x79,0x66,0xff,0x8b,0x78,0x65,0xff,0x8b,0x76,0x65,0xff,0x89,0x76,0x64,0xff,0x87,0x76,0x64,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x60,0xff,0x82,0x70,0x5e,0xff,0x84,0x77,0x71,0xff,0xd7,0xd4,0xd4,0x3c,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfb,0xfa,0xf9,0x09,0xb5,0xa0,0x92,0xda,0xa4,0x8b,0x7a,0xff,0xa4,0x8a,0x78,0xff,0xa5,0x8b,0x7a,0xff,0xa3,0x8a,0x78,0xff,0xa1,0x89,0x77,0xff,0xa0,0x88,0x76,0xff,0x9f,0x87,0x76,0xff,0x9f,0x87,0x75,0xff,0x9e,0x85,0x74,0xf7,0x9b,0x82,0x70,0xf3,0x9a,0x83,0x6f,0xf0,0x9a,0x83,0x70,0xf3,0x99,0x82,0x70,0xf7,0x99,0x82,0x70,0xff,0x9a,0x83,0x71,0xff,0x98,0x82,0x70,0xff,0x97,0x80,0x6f,0xff,0x97,0x80,0x6f,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x94,0x7e,0x6c,0xff,0x93,0x7e,0x6c,0xff,0x92,0x7e,0x6c,0xff,0x91,0x7b,0x6b,0xff,0x90,0x7a,0x69,0xff,0x8f,0x79,0x68,0xff,0x8d,0x78,0x67,0xf7,0x8c,0x76,0x65,0xf3,0x8c,0x77,0x65,0xff,0x8d,0x79,0x67,0xff,0x8c,0x78,0x66,0xff,0x8c,0x78,0x65,0xff,0x8b,0x76,0x64,0xff,0x89,0x76,0x64,0xff,0x88,0x75,0x64,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x5f,0xff,0x83,0x73,0x62,0xff,0x81,0x76,0x73,0xe5,0xfb,0xfb,0xfb,0x03,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xea,0xe7,0xe4,0x16,0xa7,0x9d,0x90,0x95,0xdf,0xdb,0xd7,0x2e,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfd,0xfd,0x05,0xea,0xe3,0xde,0x4b,0xf8,0xf5,0xf4,0x1d,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xcd,0xbe,0xb4,0x89,0xa7,0x8e,0x7c,0xff,0xa2,0x87,0x76,0xff,0xa5,0x8a,0x7a,0xff,0xa3,0x8a,0x79,0xff,0xa1,0x8a,0x77,0xff,0xa0,0x89,0x76,0xff,0x9f,0x87,0x75,0xff,0x9f,0x87,0x75,0xff,0xa0,0x88,0x76,0xff,0x9f,0x87,0x75,0xff,0x9d,0x86,0x73,0xff,0x9c,0x86,0x73,0xff,0x9b,0x85,0x73,0xff,0x9a,0x83,0x72,0xff,0x99,0x83,0x71,0xff,0x98,0x82,0x70,0xff,0x98,0x80,0x70,0xff,0x98,0x80,0x70,0xff,0x97,0x80,0x6f,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x94,0x7e,0x6c,0xff,0x93,0x7e,0x6c,0xff,0x92,0x7e,0x6c,0xff,0x91,0x7b,0x6a,0xff,0x90,0x7a,0x69,0xff,0x90,0x7a,0x6a,0xff,0x90,0x7b,0x6a,0xff,0x8e,0x7a,0x69,0xff,0x8d,0x79,0x68,0xff,0x8d,0x78,0x67,0xff,0x8c,0x78,0x66,0xff,0x8c,0x78,0x66,0xff,0x8b,0x76,0x64,0xff,0x8a,0x76,0x64,0xff,0x88,0x76,0x64,0xff,0x87,0x74,0x62,0xff,0x86,0x73,0x60,0xff,0x84,0x73,0x62,0xff,0x82,0x77,0x70,0xec,0xfb,0xfb,0xfb,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf4,0xf2,0xf1,0x0f,0xb5,0xaa,0xa0,0x86,0x8e,0x7e,0x6e,0xe6,0x85,0x75,0x63,0xff,0x8a,0x7c,0x6b,0xff,0xb1,0xa7,0x9b,0x93,0xfc,0xfc,0xfc,0x05,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfc,0xfc,0xfb,0x07,0xc6,0xb2,0xa5,0xaf,0xb8,0x9f,0x8f,0xff,0xbd,0xa5,0x97,0xff,0xea,0xe2,0xde,0x30,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfc,0xfc,0x06,0xba,0xa5,0x98,0xd2,0xa6,0x8c,0x7a,0xff,0xa3,0x89,0x77,0xff,0xa4,0x8a,0x79,0xff,0xa3,0x8a,0x78,0xff,0xa2,0x8a,0x78,0xff,0xa1,0x88,0x77,0xff,0x9f,0x87,0x75,0xff,0x9f,0x87,0x75,0xff,0x9f,0x87,0x75,0xff,0x9d,0x86,0x73,0xff,0x9c,0x85,0x72,0xff,0x9b,0x85,0x72,0xff,0x9a,0x84,0x72,0xff,0x9a,0x84,0x71,0xff,0x9a,0x83,0x71,0xff,0x99,0x82,0x71,0xff,0x98,0x81,0x70,0xff,0x98,0x80,0x70,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x94,0x7e,0x6c,0xff,0x93,0x7e,0x6c,0xff,0x92,0x7e,0x6c,0xff,0x92,0x7c,0x6b,0xff,0x91,0x7b,0x69,0xff,0x90,0x7a,0x69,0xff,0x8f,0x7a,0x69,0xff,0x8e,0x7a,0x68,0xff,0x8d,0x79,0x67,0xff,0x8d,0x78,0x67,0xff,0x8c,0x78,0x66,0xff,0x8b,0x78,0x66,0xff,0x8a,0x76,0x64,0xff,0x89,0x76,0x64,0xff,0x88,0x76,0x64,0xff,0x87,0x74,0x62,0xff,0x86,0x73,0x61,0xff,0x83,0x70,0x5f,0xff,0x86,0x77,0x69,0xff,0xb3,0xa9,0xa2,0x87,0xfe,0xfe,0xfe,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf6,0xf5,0xf4,0x0b,0xa6,0x9a,0x8d,0xf4,0x8a,0x79,0x68,0xff,0x7a,0x69,0x55,0xff,0x7e,0x6c,0x59,0xdc,0x74,0x61,0x4d,0xff,0x83,0x74,0x62,0xff,0xa8,0x9d,0x92,0xb1,0xfc,0xfc,0xfc,0x04,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfc,0xfb,0xfb,0x08,0xc0,0xa9,0x9a,0xcc,0xb3,0x96,0x85,0xff,0xab,0x8c,0x7a,0xff,0xac,0x8e,0x7c,0xff,0xb1,0x96,0x85,0xff,0xdc,0xd1,0xca,0x4a,0xff,0xff,0xfe,0x03,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfc,0xfb,0xfa,0x06,0xc1,0xaf,0xa2,0x89,0xa8,0x8d,0x7b,0xff,0xa5,0x8b,0x79,0xff,0xa5,0x8b,0x7a,0xff,0xa3,0x8a,0x78,0xff,0xa3,0x8a,0x78,0xff,0xa2,0x89,0x78,0xff,0xa0,0x88,0x76,0xff,0x9f,0x87,0x75,0xff,0x9f,0x87,0x75,0xff,0x9f,0x87,0x75,0xff,0x9e,0x87,0x74,0xff,0x9e,0x86,0x73,0xff,0x9e,0x86,0x74,0xff,0x9d,0x86,0x74,0xff,0x9b,0x84,0x72,0xff,0x9a,0x82,0x71,0xff,0x98,0x81,0x70,0xff,0x98,0x81,0x70,0xff,0x98,0x81,0x70,0xff,0x97,0x81,0x6f,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x94,0x7e,0x6c,0xff,0x93,0x7d,0x6c,0xff,0x92,0x7c,0x6c,0xff,0x91,0x7c,0x6a,0xff,0x91,0x7b,0x6a,0xff,0x91,0x7b,0x6a,0xff,0x91,0x7b,0x6a,0xff,0x90,0x7b,0x6a,0xff,0x8e,0x7a,0x68,0xff,0x8d,0x79,0x67,0xff,0x8c,0x78,0x66,0xff,0x8a,0x77,0x65,0xff,0x8a,0x76,0x64,0xff,0x8a,0x76,0x64,0xff,0x89,0x75,0x63,0xff,0x87,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x85,0x73,0x61,0xf7,0x83,0x70,0x5d,0xff,0x90,0x7f,0x6f,0xff,0xb1,0xa5,0x9a,0x83,0xfb,0xfb,0xfa,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xef,0xee,0xeb,0x0d,0x98,0x8a,0x7b,0xff,0x82,0x71,0x5f,0xff,0x79,0x67,0x54,0xfb,0x7d,0x6c,0x58,0xff,0x7e,0x6d,0x5a,0xff,0x7d,0x6c,0x58,0xf7,0x75,0x64,0x50,0xff,0x7e,0x6f,0x5d,0xff,0x9d,0x92,0x85,0xbf,0xfa,0xfa,0xf9,0x06,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfc,0xfb,0xfb,0x08,0xc2,0xab,0x9d,0xc8,0xb3,0x97,0x85,0xff,0xaf,0x91,0x7f,0xff,0xaf,0x92,0x81,0xf9,0xac,0x8e,0x7e,0xf9,0xac,0x8d,0x7c,0xff,0xb0,0x94,0x83,0xff,0xc8,0xb4,0xa8,0xbb,0xf7,0xf5,0xf4,0x19,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x02,0xcc,0xbd,0xb3,0x78,0xae,0x96,0x86,0xff,0xa7,0x8d,0x7b,0xff,0xa6,0x8c,0x79,0xff,0xa6,0x8c,0x7c,0xf8,0xa5,0x8b,0x7a,0xff,0xa4,0x8a,0x79,0xff,0xa3,0x8a,0x79,0xff,0xa1,0x89,0x78,0xff,0xa1,0x88,0x77,0xff,0xa0,0x88,0x76,0xff,0xa0,0x88,0x75,0xff,0xa0,0x88,0x75,0xff,0x9f,0x87,0x75,0xff,0x9d,0x86,0x73,0xff,0x9c,0x85,0x73,0xff,0x9b,0x84,0x72,0xff,0x96,0x80,0x6e,0xff,0x90,0x7b,0x69,0xff,0x8f,0x7a,0x68,0xff,0x95,0x7f,0x6e,0xff,0x97,0x81,0x70,0xff,0x97,0x81,0x6f,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x95,0x7f,0x6d,0xff,0x93,0x7d,0x6c,0xff,0x8e,0x79,0x68,0xff,0x89,0x76,0x64,0xff,0x8a,0x76,0x65,0xff,0x8e,0x78,0x67,0xff,0x90,0x7a,0x69,0xff,0x8f,0x7a,0x69,0xff,0x8d,0x7a,0x67,0xff,0x8e,0x79,0x67,0xff,0x8d,0x78,0x66,0xff,0x8b,0x78,0x66,0xff,0x8a,0x77,0x65,0xff,0x8b,0x77,0x65,0xff,0x89,0x75,0x63,0xff,0x87,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x61,0xff,0x84,0x72,0x5f,0xf7,0x83,0x70,0x5e,0xff,0x85,0x73,0x61,0xff,0x8e,0x7d,0x6d,0xff,0xca,0xc3,0xbb,0x6b,0xdf,0xdb,0xd7,0x2c,0x8c,0x7e,0x6e,0xf7,0x80,0x6f,0x5d,0xff,0x7a,0x67,0x54,0xff,0x7e,0x6d,0x5a,0xfb,0x80,0x6f,0x5c,0xff,0x7f,0x6e,0x5b,0xff,0x7e,0x6d,0x5a,0xff,0x7c,0x6b,0x58,0xf7,0x73,0x62,0x4f,0xff,0x7f,0x6f,0x5d,0xff,0xac,0xa2,0x96,0xa7,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x01,0xc9,0xb4,0xa9,0x9f,0xb4,0x97,0x86,0xff,0xaf,0x90,0x7e,0xff,0xb0,0x93,0x82,0xf9,0xb0,0x93,0x82,0xff,0xaf,0x92,0x81,0xff,0xae,0x90,0x80,0xf9,0xac,0x8e,0x7c,0xff,0xaf,0x93,0x83,0xff,0xc0,0xaa,0x9e,0xe6,0xf0,0xeb,0xe8,0x20,0xfb,0xfa,0xfa,0x06,0xc9,0xba,0xaf,0x76,0xae,0x96,0x86,0xff,0xa5,0x8b,0x77,0xff,0xa5,0x8c,0x79,0xff,0xa7,0x8e,0x7d,0xf8,0xa6,0x8c,0x7b,0xff,0xa5,0x8b,0x7a,0xff,0xa5,0x8a,0x7a,0xff,0xa3,0x8a,0x79,0xff,0xa1,0x89,0x77,0xff,0xa1,0x89,0x77,0xff,0xa2,0x89,0x77,0xff,0xa3,0x8a,0x78,0xff,0xa0,0x88,0x76,0xff,0x98,0x81,0x6f,0xff,0x8f,0x7b,0x68,0xff,0x86,0x74,0x61,0xff,0x7f,0x6d,0x5a,0xff,0x79,0x6a,0x57,0xff,0x74,0x66,0x53,0xff,0x7b,0x6b,0x58,0xff,0x90,0x7b,0x6a,0xff,0x98,0x82,0x70,0xff,0x97,0x81,0x6f,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x91,0x7c,0x6a,0xff,0x85,0x73,0x61,0xff,0x78,0x69,0x55,0xff,0x74,0x65,0x52,0xff,0x78,0x68,0x55,0xff,0x7c,0x6c,0x58,0xff,0x81,0x70,0x5d,0xff,0x85,0x73,0x61,0xff,0x8a,0x76,0x64,0xff,0x8d,0x79,0x67,0xff,0x8d,0x79,0x67,0xff,0x8b,0x78,0x66,0xff,0x8a,0x76,0x64,0xff,0x89,0x75,0x63,0xff,0x87,0x74,0x62,0xff,0x85,0x74,0x62,0xff,0x85,0x73,0x61,0xff,0x85,0x73,0x61,0xff,0x83,0x72,0x60,0xf7,0x7e,0x6b,0x58,0xff,0x80,0x6e,0x5c,0xff,0x91,0x82,0x72,0xff,0x90,0x81,0x71,0xff,0x7e,0x6c,0x5a,0xff,0x7b,0x69,0x57,0xff,0x7f,0x6d,0x5b,0xfb,0x7f,0x6e,0x5b,0xff,0x7f,0x6e,0x5b,0xff,0x7e,0x6d,0x5a,0xff,0x7d,0x6c,0x59,0xff,0x7e,0x6d,0x5a,0xff,0x79,0x68,0x54,0xf7,0x76,0x65,0x52,0xff,0x97,0x89,0x7b,0xe3,0xfe,0xfe,0xfe,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfd,0xfd,0x09,0xbb,0xa2,0x94,0xd7,0xad,0x8f,0x7d,0xff,0xaf,0x92,0x81,0xf9,0xb0,0x93,0x82,0xff,0xaf,0x92,0x81,0xff,0xaf,0x92,0x81,0xff,0xae,0x91,0x80,0xff,0xae,0x90,0x7f,0xfc,0xaa,0x8d,0x7c,0xff,0xaa,0x90,0x7e,0xff,0xac,0x92,0x81,0xff,0xab,0x91,0x7f,0xff,0xaa,0x90,0x7e,0xff,0xa6,0x8c,0x79,0xff,0xa6,0x8d,0x7a,0xf8,0xa8,0x8e,0x7c,0xff,0xa7,0x8d,0x7c,0xff,0xa6,0x8c,0x7b,0xff,0xa5,0x8b,0x7a,0xff,0xa4,0x8a,0x7a,0xff,0xa5,0x8b,0x7a,0xff,0xa5,0x8c,0x7a,0xff,0xa1,0x89,0x77,0xff,0x9a,0x83,0x71,0xff,0x92,0x7d,0x6b,0xff,0x89,0x76,0x64,0xff,0x81,0x70,0x5d,0xff,0x7a,0x6b,0x57,0xff,0x73,0x64,0x50,0xff,0x6b,0x5e,0x49,0xff,0x69,0x5d,0x49,0xff,0x66,0x5b,0x47,0xff,0x71,0x63,0x51,0xff,0x8d,0x79,0x67,0xff,0x99,0x82,0x70,0xff,0x97,0x81,0x6f,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x91,0x7c,0x69,0xff,0x81,0x70,0x5c,0xff,0x6e,0x61,0x4c,0xff,0x67,0x5c,0x47,0xff,0x6a,0x5e,0x49,0xff,0x6d,0x60,0x4b,0xff,0x72,0x63,0x4f,0xff,0x77,0x68,0x54,0xff,0x7b,0x6c,0x58,0xff,0x80,0x6e,0x5c,0xff,0x85,0x71,0x60,0xff,0x89,0x75,0x63,0xff,0x8b,0x77,0x65,0xff,0x89,0x76,0x64,0xff,0x87,0x74,0x62,0xff,0x85,0x74,0x62,0xff,0x85,0x73,0x61,0xff,0x84,0x72,0x60,0xff,0x84,0x72,0x60,0xff,0x84,0x72,0x60,0xff,0x80,0x6e,0x5c,0xfb,0x7c,0x6a,0x57,0xff,0x7d,0x6b,0x57,0xff,0x7f,0x6d,0x5b,0xff,0x80,0x6e,0x5c,0xfb,0x80,0x6e,0x5c,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6e,0x5b,0xff,0x7f,0x6e,0x5b,0xff,0x7d,0x6c,0x59,0xff,0x7d,0x6c,0x59,0xff,0x78,0x68,0x53,0xff,0x7b,0x6b,0x59,0xff,0x9c,0x90,0x85,0xb9,0xfe,0xfe,0xfe,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x06,0xbb,0xa2,0x94,0xc4,0xac,0x8e,0x7c,0xff,0xae,0x91,0x7f,0xfc,0xaf,0x92,0x81,0xff,0xae,0x91,0x80,0xff,0xae,0x91,0x80,0xff,0xae,0x90,0x7f,0xff,0xae,0x90,0x7f,0xff,0xac,0x91,0x7f,0xfc,0xa9,0x8f,0x7d,0xff,0xaa,0x8f,0x7d,0xff,0xaa,0x90,0x7e,0xff,0xa8,0x8e,0x7b,0xff,0xa8,0x8e,0x7c,0xfb,0xa8,0x8e,0x7d,0xff,0xa7,0x8d,0x7b,0xff,0xa6,0x8d,0x7b,0xff,0xa6,0x8c,0x7b,0xff,0xa6,0x8c,0x7b,0xff,0xa5,0x8c,0x7b,0xff,0xa2,0x89,0x78,0xff,0x9c,0x85,0x74,0xff,0x92,0x7d,0x6b,0xff,0x84,0x72,0x5f,0xff,0x75,0x66,0x53,0xff,0x6b,0x5f,0x4c,0xff,0x6b,0x5f,0x4b,0xff,0x6d,0x61,0x4c,0xff,0x6e,0x61,0x4c,0xff,0x6e,0x61,0x4c,0xff,0x6e,0x61,0x4c,0xff,0x6b,0x5e,0x4a,0xff,0x74,0x65,0x52,0xff,0x8d,0x79,0x67,0xff,0x98,0x82,0x70,0xff,0x97,0x81,0x6f,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x91,0x7c,0x6a,0xff,0x83,0x71,0x5e,0xff,0x71,0x63,0x4e,0xff,0x6a,0x5e,0x48,0xff,0x6b,0x5e,0x49,0xff,0x6b,0x5f,0x49,0xff,0x6c,0x5f,0x4a,0xff,0x6d,0x60,0x4c,0xff,0x6d,0x61,0x4c,0xff,0x6e,0x61,0x4d,0xff,0x76,0x66,0x53,0xff,0x7f,0x6e,0x5b,0xff,0x85,0x73,0x61,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x87,0x74,0x62,0xff,0x85,0x73,0x61,0xff,0x84,0x72,0x60,0xff,0x84,0x72,0x60,0xff,0x83,0x71,0x5f,0xff,0x82,0x70,0x5e,0xff,0x80,0x6e,0x5b,0xff,0x7f,0x6e,0x5b,0xff,0x80,0x6f,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6d,0x5c,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6e,0x5b,0xff,0x7e,0x6d,0x5a,0xff,0x7d,0x6c,0x59,0xff,0x7c,0x6b,0x57,0xff,0x77,0x65,0x52,0xff,0x80,0x72,0x65,0xff,0xa9,0xa2,0x9d,0xbb,0xfe,0xfe,0xfe,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xd5,0xc6,0xbe,0x6f,0xb0,0x94,0x83,0xff,0xab,0x8d,0x7c,0xff,0xae,0x91,0x80,0xfc,0xae,0x91,0x80,0xff,0xae,0x91,0x80,0xff,0xad,0x90,0x7f,0xff,0xac,0x91,0x7f,0xff,0xab,0x91,0x7f,0xff,0xaa,0x91,0x7f,0xff,0xaa,0x90,0x7e,0xff,0xa9,0x8f,0x7d,0xff,0xa9,0x8e,0x7c,0xff,0xa9,0x8e,0x7d,0xff,0xa8,0x8e,0x7d,0xff,0xa7,0x8d,0x7c,0xff,0xa6,0x8d,0x7b,0xff,0xa6,0x8d,0x7b,0xff,0xa7,0x8d,0x7b,0xff,0xa2,0x88,0x77,0xff,0x92,0x7c,0x6b,0xff,0x7f,0x6e,0x5b,0xff,0x74,0x65,0x51,0xff,0x6f,0x62,0x4d,0xff,0x6d,0x5f,0x4b,0xff,0x6a,0x5d,0x4a,0xff,0x6b,0x5f,0x4b,0xff,0x6c,0x60,0x4c,0xff,0x6d,0x60,0x4c,0xff,0x6e,0x61,0x4d,0xff,0x6f,0x61,0x4d,0xff,0x6c,0x5e,0x4a,0xff,0x75,0x65,0x52,0xff,0x8d,0x79,0x67,0xff,0x98,0x82,0x70,0xff,0x97,0x81,0x6f,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x92,0x7c,0x6b,0xff,0x84,0x71,0x5f,0xff,0x71,0x63,0x4e,0xff,0x6a,0x5d,0x47,0xff,0x6b,0x5e,0x48,0xff,0x6b,0x5e,0x49,0xff,0x6b,0x5e,0x4a,0xff,0x6c,0x5f,0x4b,0xff,0x6c,0x60,0x4c,0xff,0x6d,0x61,0x4d,0xff,0x71,0x63,0x50,0xff,0x74,0x66,0x53,0xff,0x78,0x68,0x55,0xff,0x7d,0x6c,0x5a,0xff,0x84,0x71,0x5f,0xff,0x86,0x74,0x62,0xff,0x85,0x73,0x61,0xff,0x84,0x72,0x60,0xff,0x83,0x71,0x5f,0xff,0x83,0x71,0x5f,0xff,0x82,0x70,0x5e,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x7f,0x6d,0x5b,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7d,0x6c,0x59,0xff,0x7b,0x69,0x55,0xff,0x78,0x67,0x57,0xff,0x84,0x79,0x75,0xff,0xdf,0xdd,0xde,0x29,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x0a,0xce,0xbe,0xb4,0x8f,0xab,0x8d,0x7c,0xff,0xac,0x8e,0x7c,0xff,0xaf,0x92,0x81,0xfc,0xae,0x91,0x80,0xff,0xad,0x91,0x7f,0xff,0xab,0x91,0x7f,0xff,0xab,0x91,0x7f,0xff,0xaa,0x90,0x7e,0xff,0xaa,0x90,0x7e,0xff,0xa9,0x8f,0x7d,0xff,0xa9,0x8f,0x7c,0xff,0xa9,0x8e,0x7c,0xff,0xa8,0x8e,0x7c,0xff,0xa8,0x8e,0x7c,0xff,0xa9,0x8f,0x7e,0xff,0xa5,0x8c,0x7b,0xff,0x96,0x80,0x6e,0xff,0x85,0x72,0x60,0xff,0x77,0x67,0x54,0xff,0x6d,0x61,0x4d,0xff,0x69,0x5e,0x49,0xff,0x6b,0x5e,0x4a,0xff,0x6d,0x60,0x4c,0xff,0x6f,0x62,0x4d,0xff,0x6f,0x62,0x4d,0xff,0x6e,0x60,0x4b,0xff,0x6c,0x5d,0x49,0xff,0x6a,0x5b,0x4a,0xff,0x6e,0x61,0x53,0xff,0x74,0x69,0x60,0xff,0x7c,0x6f,0x66,0xff,0x8f,0x7a,0x6a,0xfb,0x98,0x81,0x6f,0xfb,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x97,0x80,0x6e,0xff,0x8e,0x79,0x69,0xff,0x78,0x66,0x5a,0xfb,0x63,0x57,0x4c,0xff,0x69,0x5e,0x52,0xff,0x76,0x6b,0x5b,0xff,0x73,0x67,0x55,0xff,0x6a,0x5d,0x4a,0xff,0x67,0x58,0x43,0xff,0x6b,0x5d,0x47,0xff,0x70,0x62,0x4e,0xff,0x73,0x64,0x51,0xff,0x73,0x64,0x52,0xff,0x73,0x64,0x52,0xff,0x77,0x67,0x55,0xff,0x7b,0x6a,0x58,0xff,0x7f,0x6e,0x5c,0xff,0x82,0x71,0x5f,0xff,0x85,0x73,0x61,0xff,0x85,0x73,0x61,0xff,0x83,0x71,0x5f,0xff,0x82,0x70,0x5e,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x58,0xff,0x76,0x66,0x53,0xff,0x7a,0x6e,0x66,0xff,0x9f,0x98,0x9a,0xd2,0xfe,0xfe,0xfe,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfd,0xfd,0x0a,0xcc,0xba,0xaf,0x8e,0xac,0x8e,0x7d,0xff,0xab,0x8d,0x7b,0xff,0xad,0x92,0x80,0xff,0xac,0x91,0x7f,0xff,0xab,0x91,0x7f,0xff,0xaa,0x90,0x7e,0xff,0xa9,0x8f,0x7d,0xff,0xaa,0x90,0x7e,0xff,0xa9,0x8f,0x7d,0xff,0xa8,0x8e,0x7d,0xff,0xa9,0x8f,0x7d,0xff,0xaa,0x8f,0x7d,0xff,0xa9,0x8f,0x7d,0xff,0xa0,0x88,0x77,0xff,0x90,0x7b,0x69,0xff,0x7c,0x6c,0x58,0xff,0x6c,0x60,0x4c,0xff,0x68,0x5d,0x49,0xff,0x6c,0x60,0x4c,0xff,0x6e,0x61,0x4d,0xff,0x6f,0x61,0x4c,0xff,0x6c,0x5f,0x4a,0xff,0x6a,0x5d,0x4a,0xff,0x6c,0x5e,0x4e,0xff,0x6f,0x62,0x55,0xff,0x7c,0x71,0x67,0xff,0x91,0x87,0x80,0xff,0xa8,0xa1,0x9c,0x97,0xdb,0xd9,0xd9,0x12,0xc9,0xc3,0xc2,0x2a,0x9c,0x88,0x7c,0xff,0x97,0x81,0x6f,0xff,0x96,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x96,0x80,0x6e,0xff,0x97,0x81,0x6e,0xff,0x89,0x74,0x65,0xfb,0x71,0x62,0x5a,0xff,0x72,0x68,0x68,0xff,0xac,0xa7,0xa6,0x62,0xd9,0xd5,0xd2,0x19,0xd8,0xd5,0xd0,0x14,0xc2,0xbc,0xb5,0x31,0x95,0x8b,0x7d,0xff,0x85,0x79,0x68,0xff,0x72,0x63,0x50,0xff,0x6e,0x5d,0x4a,0xff,0x71,0x60,0x4d,0xff,0x75,0x64,0x52,0xfb,0x77,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x79,0x68,0x56,0xff,0x7e,0x6d,0x5b,0xff,0x83,0x71,0x5f,0xff,0x85,0x73,0x61,0xff,0x84,0x72,0x60,0xff,0x82,0x70,0x5e,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7f,0x6d,0x5a,0xff,0x79,0x68,0x55,0xfb,0x71,0x64,0x5a,0xff,0x7e,0x76,0x78,0xff,0xe3,0xe2,0xe4,0x1d,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xf8,0xf7,0x13,0xb5,0x9c,0x8c,0xff,0xab,0x8f,0x7d,0xff,0xab,0x91,0x7e,0xfc,0xab,0x91,0x7f,0xff,0xaa,0x90,0x7e,0xff,0xa9,0x8f,0x7d,0xff,0xa9,0x8f,0x7d,0xff,0xa9,0x8f,0x7d,0xff,0xa8,0x8e,0x7c,0xff,0xa9,0x8f,0x7d,0xff,0xaa,0x90,0x7e,0xff,0xa9,0x8f,0x7d,0xff,0xa1,0x87,0x76,0xff,0x86,0x74,0x61,0xff,0x70,0x63,0x4f,0xff,0x6c,0x60,0x4c,0xff,0x6c,0x60,0x4b,0xff,0x6d,0x60,0x4c,0xff,0x6e,0x60,0x4d,0xff,0x6d,0x5f,0x4b,0xfb,0x6e,0x60,0x4d,0xff,0x6f,0x62,0x51,0xff,0x74,0x68,0x5d,0xff,0x80,0x77,0x73,0xff,0x8f,0x88,0x88,0xff,0xd0,0xcc,0xcd,0x29,0xef,0xed,0xed,0x0f,0xfd,0xfc,0xfd,0x04,0xff,0xff,0xff,0x00,0xfe,0xfd,0xfd,0x01,0xae,0x9d,0x90,0xff,0x97,0x81,0x70,0xff,0x94,0x7d,0x6b,0xff,0x95,0x7f,0x6d,0xff,0x96,0x7f,0x6d,0xff,0x96,0x80,0x6e,0xff,0x86,0x72,0x62,0xff,0x7d,0x6f,0x67,0xff,0xa9,0xa3,0xa4,0xb2,0xfe,0xfe,0xff,0x03,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xfa,0xf9,0x07,0xd1,0xcd,0xc7,0x36,0x98,0x8d,0x81,0xff,0x83,0x75,0x66,0xff,0x79,0x6a,0x57,0xff,0x75,0x65,0x53,0xff,0x75,0x65,0x53,0xff,0x77,0x67,0x55,0xfb,0x7a,0x6a,0x57,0xff,0x7c,0x6b,0x58,0xff,0x7e,0x6c,0x5a,0xff,0x81,0x6f,0x5d,0xff,0x83,0x71,0x5f,0xff,0x82,0x70,0x5e,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7f,0x6d,0x59,0xff,0x71,0x60,0x52,0xff,0x76,0x6a,0x68,0xff,0xaa,0xa6,0xa9,0x9d,0xfe,0xfe,0xfe,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xec,0xe6,0xe2,0x28,0xb5,0x9d,0x8d,0xff,0xa9,0x8f,0x7c,0xff,0xa9,0x8f,0x7d,0xff,0xa9,0x8f,0x7d,0xff,0xa9,0x8f,0x7d,0xff,0xa9,0x8f,0x7d,0xff,0xa9,0x8f,0x7d,0xff,0xa9,0x8f,0x7d,0xff,0xac,0x91,0x7f,0xff,0xaa,0x90,0x7e,0xff,0x9c,0x84,0x72,0xff,0x82,0x70,0x5d,0xff,0x6f,0x62,0x4d,0xff,0x6a,0x5f,0x4a,0xff,0x6c,0x60,0x4c,0xff,0x6e,0x61,0x4d,0xff,0x70,0x61,0x4d,0xff,0x6e,0x5f,0x4a,0xfb,0x6d,0x5e,0x4d,0xff,0x70,0x65,0x5d,0xff,0x84,0x7c,0x7a,0xff,0xbd,0xb9,0xb8,0x55,0xea,0xe8,0xe8,0x0f,0xef,0xef,0xf0,0x0b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xf9,0xf9,0x04,0xb2,0xa1,0x94,0xff,0x98,0x82,0x70,0xff,0x93,0x7d,0x6b,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6c,0xff,0x87,0x74,0x64,0xff,0x86,0x78,0x70,0xff,0xeb,0xe9,0xe8,0x13,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf1,0xf0,0xef,0x0d,0xf0,0xee,0xec,0x0b,0xba,0xb2,0xa9,0x4f,0x85,0x76,0x66,0xff,0x77,0x67,0x54,0xff,0x78,0x67,0x54,0xff,0x7c,0x6b,0x57,0xfb,0x7d,0x6c,0x59,0xff,0x7e,0x6c,0x5a,0xff,0x7f,0x6d,0x5b,0xff,0x81,0x6e,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7d,0x6c,0x58,0xff,0x74,0x63,0x54,0xff,0x86,0x7b,0x75,0xff,0xf3,0xf2,0xf2,0x0e,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfc,0xfb,0xfb,0x0d,0xb4,0x9e,0x8e,0xff,0xa7,0x8d,0x7a,0xff,0xa8,0x8e,0x7c,0xff,0xa9,0x8f,0x7d,0xff,0xa9,0x8f,0x7d,0xff,0xa8,0x8e,0x7c,0xff,0xa9,0x8f,0x7d,0xff,0xac,0x91,0x7f,0xff,0xa9,0x8f,0x7d,0xff,0x99,0x83,0x70,0xff,0x81,0x6f,0x5c,0xff,0x6d,0x61,0x4c,0xff,0x69,0x5e,0x49,0xff,0x6e,0x61,0x4e,0xff,0x6f,0x62,0x4e,0xff,0x6e,0x60,0x4b,0xfb,0x6b,0x5d,0x4c,0xff,0x6f,0x63,0x57,0xff,0x7f,0x76,0x71,0xff,0xb9,0xb4,0xb4,0x40,0xf3,0xf3,0xf4,0x06,0xfe,0xfe,0xfe,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xf9,0xf8,0x04,0xb0,0x9e,0x92,0xff,0x98,0x82,0x71,0xff,0x93,0x7d,0x6b,0xff,0x95,0x7e,0x6c,0xff,0x95,0x7e,0x6c,0xff,0x94,0x7e,0x6c,0xff,0x8a,0x76,0x67,0xff,0x88,0x7a,0x72,0xff,0xf7,0xf7,0xf6,0x03,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x00,0xf0,0xee,0xec,0x09,0xb8,0xae,0xa5,0x5e,0x8b,0x7c,0x6c,0xff,0x77,0x64,0x51,0xff,0x7b,0x69,0x56,0xff,0x80,0x6e,0x5c,0xfb,0x80,0x6e,0x5c,0xff,0x81,0x6e,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x80,0x6e,0x5c,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x7e,0x6d,0x5a,0xff,0x7c,0x6b,0x58,0xff,0x77,0x66,0x53,0xff,0x8d,0x80,0x72,0xff,0xf4,0xf2,0xf1,0x0f,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x02,0xc9,0xb8,0xac,0x9e,0xac,0x93,0x82,0xff,0xa7,0x8d,0x7a,0xff,0xa9,0x8f,0x7d,0xff,0xa9,0x8f,0x7d,0xff,0xa8,0x8e,0x7c,0xff,0xa9,0x8e,0x7c,0xff,0xab,0x90,0x7e,0xff,0xaa,0x8f,0x7d,0xff,0x99,0x82,0x6f,0xff,0x7e,0x6e,0x5a,0xff,0x6d,0x60,0x4c,0xff,0x6c,0x5f,0x4b,0xff,0x6f,0x62,0x4e,0xff,0x70,0x62,0x4e,0xff,0x6e,0x60,0x4b,0xf7,0x6c,0x5f,0x4f,0xff,0x75,0x6b,0x63,0xff,0x8b,0x85,0x85,0xff,0xc4,0xc1,0xc3,0x44,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xf9,0xf8,0x04,0xb0,0x9f,0x92,0xff,0x98,0x82,0x71,0xff,0x93,0x7d,0x6b,0xff,0x95,0x7f,0x6c,0xff,0x95,0x7f,0x6c,0xff,0x94,0x7e,0x6c,0xff,0x8a,0x77,0x68,0xff,0x8a,0x7c,0x74,0xff,0xf5,0xf5,0xf4,0x04,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xc0,0xb8,0xaf,0x61,0x91,0x83,0x73,0xff,0x7f,0x6d,0x5b,0xff,0x7e,0x6b,0x58,0xff,0x81,0x70,0x5e,0xf7,0x83,0x71,0x5f,0xff,0x84,0x72,0x60,0xff,0x83,0x71,0x5f,0xff,0x82,0x70,0x5e,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7d,0x6c,0x59,0xff,0x78,0x67,0x53,0xff,0x83,0x73,0x61,0xff,0xab,0xa0,0x95,0xb2,0xfe,0xfe,0xfe,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf6,0xf4,0xf2,0x19,0xae,0x96,0x85,0xff,0xa6,0x8c,0x79,0xff,0xa8,0x8e,0x7c,0xfc,0xa8,0x8e,0x7c,0xff,0xa8,0x8e,0x7c,0xff,0xa8,0x8e,0x7c,0xff,0xab,0x90,0x7e,0xff,0xaa,0x8f,0x7d,0xff,0x9a,0x83,0x71,0xff,0x7e,0x6e,0x5b,0xff,0x6c,0x60,0x4c,0xff,0x6c,0x5f,0x4c,0xff,0x6f,0x62,0x4e,0xff,0x71,0x63,0x4e,0xff,0x6f,0x60,0x4c,0xf4,0x6e,0x60,0x52,0xff,0x78,0x6f,0x6c,0xff,0xa8,0xa4,0xa6,0x89,0xf3,0xf3,0xf3,0x0f,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xf9,0xf8,0x04,0xb0,0x9f,0x92,0xff,0x98,0x82,0x70,0xff,0x93,0x7d,0x6b,0xff,0x95,0x7f,0x6c,0xff,0x95,0x7f,0x6c,0xff,0x94,0x7e,0x6c,0xff,0x8a,0x77,0x68,0xff,0x8b,0x7c,0x75,0xff,0xf6,0xf5,0xf4,0x04,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xeb,0xe8,0xe6,0x1e,0x9e,0x91,0x83,0xc1,0x82,0x70,0x5f,0xff,0x82,0x70,0x5e,0xff,0x83,0x72,0x60,0xf7,0x85,0x74,0x61,0xff,0x87,0x75,0x62,0xff,0x84,0x72,0x60,0xff,0x80,0x6e,0x5c,0xff,0x7f,0x6d,0x5b,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7c,0x6b,0x57,0xfb,0x77,0x66,0x52,0xff,0x81,0x71,0x5f,0xff,0xf3,0xf2,0xf0,0x0b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x02,0xd5,0xd1,0xcc,0x44,0xa5,0x9c,0x8f,0x7c,0x99,0x8d,0x7f,0x70,0x90,0x84,0x75,0x86,0xde,0xda,0xd5,0x21,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfc,0xfc,0x0a,0xfd,0xfc,0xfc,0x0b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfc,0xfc,0x05,0xba,0xa6,0x97,0xb0,0xa7,0x8d,0x7b,0xff,0xa6,0x8c,0x7a,0xff,0xa8,0x8e,0x7c,0xff,0xa8,0x8e,0x7c,0xff,0xa8,0x8e,0x7c,0xff,0xa9,0x8f,0x7d,0xff,0xaa,0x8f,0x7d,0xff,0x9d,0x86,0x73,0xff,0x80,0x6f,0x5c,0xff,0x6d,0x60,0x4c,0xff,0x6c,0x5f,0x4b,0xff,0x6f,0x62,0x4e,0xff,0x71,0x63,0x4d,0xff,0x6d,0x5f,0x4d,0xf4,0x6b,0x5e,0x53,0xff,0x83,0x7b,0x7a,0xff,0xbf,0xbb,0xbd,0x4f,0xfe,0xfe,0xfe,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xf9,0xf8,0x04,0xaf,0x9f,0x91,0xff,0x97,0x81,0x70,0xff,0x94,0x7d,0x6a,0xff,0x95,0x7f,0x6d,0xff,0x94,0x7e,0x6d,0xff,0x93,0x7d,0x6b,0xff,0x8a,0x77,0x68,0xff,0x8b,0x7d,0x75,0xff,0xf6,0xf5,0xf5,0x04,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfd,0xfc,0x01,0xb1,0xa6,0x9b,0x70,0x8e,0x7d,0x6c,0xff,0x81,0x6e,0x5c,0xff,0x85,0x73,0x61,0xf7,0x89,0x77,0x64,0xff,0x89,0x77,0x64,0xff,0x85,0x73,0x61,0xff,0x80,0x6e,0x5c,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7d,0x6c,0x59,0xff,0x7d,0x6c,0x59,0xff,0x7d,0x6c,0x59,0xff,0x77,0x66,0x52,0xff,0x77,0x67,0x54,0xfb,0x9c,0x90,0x83,0xac,0xb7,0xae,0xa5,0x80,0xb9,0xb0,0xa7,0x80,0xaf,0xa6,0x9b,0x78,0xa0,0x95,0x88,0x9b,0x8c,0x7f,0x70,0xff,0x7d,0x6e,0x5d,0xff,0x73,0x63,0x50,0xff,0x70,0x60,0x4c,0xff,0x8d,0x81,0x72,0xff,0xf0,0xef,0xed,0x12,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xee,0xe9,0xe6,0x22,0xb3,0x9d,0x8f,0xf3,0xb5,0xa0,0x92,0xe8,0xdb,0xd1,0xca,0x64,0xfc,0xfb,0xfa,0x0b,0xfe,0xfe,0xfe,0x01,0xfe,0xfd,0xfd,0x02,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x04,0xc7,0xb6,0xaa,0x94,0xa5,0x8b,0x79,0xff,0xa5,0x8b,0x78,0xff,0xa9,0x8f,0x7d,0xfc,0xa8,0x8e,0x7c,0xff,0xa8,0x8e,0x7c,0xff,0xa8,0x8e,0x7c,0xff,0xab,0x90,0x7e,0xff,0x9f,0x87,0x74,0xff,0x84,0x73,0x5f,0xff,0x6e,0x61,0x4e,0xff,0x6b,0x5e,0x4b,0xff,0x70,0x62,0x4e,0xff,0x70,0x63,0x4d,0xff,0x6c,0x5e,0x4b,0xf4,0x6c,0x60,0x55,0xff,0x84,0x7c,0x7d,0xff,0xc0,0xbd,0xc1,0x54,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xf9,0xf8,0x04,0xaf,0x9f,0x91,0xff,0x97,0x81,0x6f,0xff,0x93,0x7c,0x6a,0xff,0x95,0x7f,0x6c,0xff,0x93,0x7e,0x6c,0xff,0x92,0x7c,0x6a,0xff,0x8a,0x76,0x68,0xff,0x8c,0x7d,0x75,0xff,0xf6,0xf5,0xf5,0x04,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x00,0xb6,0xab,0xa0,0x77,0x90,0x7e,0x6d,0xff,0x85,0x72,0x5f,0xff,0x89,0x76,0x64,0xf7,0x8d,0x79,0x67,0xff,0x8b,0x77,0x66,0xff,0x85,0x72,0x60,0xff,0x7f,0x6e,0x5b,0xff,0x7d,0x6c,0x59,0xff,0x7d,0x6d,0x59,0xff,0x7d,0x6c,0x59,0xff,0x7d,0x6b,0x58,0xff,0x7b,0x6a,0x58,0xfb,0x7a,0x6a,0x57,0xff,0x7b,0x6b,0x59,0xff,0x83,0x74,0x63,0xff,0x83,0x75,0x64,0xff,0x7a,0x6b,0x59,0xff,0x73,0x62,0x50,0xff,0x70,0x5f,0x4c,0xf7,0x76,0x66,0x54,0xe6,0x77,0x67,0x56,0xe8,0x74,0x65,0x52,0xe6,0x77,0x69,0x57,0xff,0x9a,0x90,0x82,0xff,0xf9,0xf9,0xf8,0x07,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf8,0xf7,0xf6,0x11,0xad,0x96,0x86,0xff,0xa1,0x87,0x75,0xff,0xa6,0x8c,0x7b,0xff,0xaa,0x91,0x80,0xff,0xa9,0x8f,0x7f,0xe2,0xa9,0x91,0x7f,0xcd,0xb5,0x9f,0x90,0xcf,0xc8,0xb7,0xae,0xad,0xc0,0xad,0xa0,0xd5,0xaf,0x98,0x87,0xff,0xa5,0x8b,0x79,0xff,0xa6,0x8c,0x7b,0xf9,0xa8,0x8e,0x7c,0xff,0xa7,0x8d,0x7c,0xff,0xa7,0x8d,0x7b,0xff,0xa8,0x8e,0x7c,0xff,0xa4,0x8a,0x78,0xff,0x8a,0x77,0x63,0xff,0x6d,0x61,0x4d,0xff,0x6a,0x5e,0x4b,0xff,0x6f,0x62,0x4e,0xff,0x71,0x63,0x4e,0xff,0x6e,0x60,0x4d,0xf4,0x6a,0x5e,0x53,0xff,0x85,0x7e,0x7e,0xff,0xc5,0xc2,0xc6,0x4e,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xf9,0xf8,0x04,0xb0,0x9f,0x92,0xff,0x97,0x81,0x70,0xff,0x92,0x7c,0x6a,0xff,0x93,0x7e,0x6b,0xff,0x93,0x7e,0x6b,0xff,0x92,0x7c,0x6a,0xff,0x8a,0x76,0x67,0xff,0x8c,0x7e,0x76,0xff,0xf6,0xf5,0xf5,0x04,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x00,0xb5,0xa9,0x9d,0x77,0x93,0x81,0x70,0xff,0x8b,0x77,0x65,0xff,0x8d,0x79,0x68,0xf7,0x8f,0x7a,0x69,0xff,0x8d,0x79,0x67,0xff,0x84,0x72,0x5f,0xff,0x7e,0x6d,0x59,0xff,0x7e,0x6d,0x5a,0xff,0x7d,0x6c,0x59,0xff,0x7c,0x6b,0x58,0xff,0x7c,0x6a,0x58,0xff,0x7a,0x6a,0x58,0xff,0x77,0x67,0x54,0xff,0x74,0x64,0x51,0xff,0x73,0x62,0x4f,0xff,0x72,0x61,0x4f,0xff,0x72,0x62,0x50,0xff,0x74,0x64,0x52,0xff,0x75,0x65,0x53,0xff,0x75,0x66,0x54,0xff,0x75,0x66,0x53,0xff,0x6c,0x5d,0x49,0xff,0x84,0x77,0x67,0xff,0xe8,0xe6,0xe4,0x19,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xdd,0xd4,0xcd,0x51,0xa8,0x8f,0x7e,0xff,0xa0,0x85,0x72,0xff,0xa4,0x8a,0x7a,0xf9,0xa2,0x87,0x76,0xff,0xa2,0x89,0x77,0xff,0xa4,0x8a,0x79,0xff,0xa8,0x8e,0x7d,0xff,0xac,0x93,0x83,0xff,0xab,0x92,0x81,0xff,0xa7,0x8c,0x7b,0xff,0xa6,0x8c,0x7c,0xf9,0xa6,0x8c,0x7b,0xff,0xa7,0x8c,0x7b,0xff,0xa5,0x8c,0x7b,0xff,0xa7,0x8e,0x7d,0xff,0xa7,0x8c,0x7b,0xff,0x90,0x7b,0x69,0xff,0x75,0x66,0x53,0xff,0x6b,0x5f,0x4b,0xff,0x6d,0x61,0x4d,0xff,0x71,0x64,0x4f,0xff,0x6f,0x60,0x4c,0xf8,0x6c,0x5f,0x53,0xff,0x82,0x7b,0x7a,0xff,0xc5,0xc3,0xc6,0x50,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xf9,0xf8,0x04,0xaf,0x9e,0x91,0xff,0x97,0x81,0x6f,0xff,0x92,0x7c,0x6a,0xff,0x92,0x7d,0x6c,0xff,0x92,0x7d,0x6b,0xff,0x92,0x7b,0x69,0xff,0x8a,0x76,0x66,0xff,0x8b,0x7d,0x75,0xff,0xf6,0xf5,0xf5,0x04,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x00,0xb8,0xaa,0xa0,0x75,0x92,0x7d,0x6d,0xff,0x8c,0x77,0x65,0xff,0x91,0x7b,0x6a,0xff,0x92,0x7c,0x6b,0xff,0x8c,0x78,0x66,0xff,0x82,0x71,0x5e,0xff,0x7d,0x6c,0x59,0xff,0x7c,0x6b,0x58,0xff,0x7b,0x6a,0x57,0xff,0x7b,0x6a,0x58,0xff,0x7a,0x6a,0x58,0xff,0x78,0x68,0x57,0xff,0x78,0x68,0x56,0xff,0x78,0x67,0x55,0xff,0x77,0x67,0x56,0xff,0x77,0x67,0x56,0xff,0x76,0x66,0x54,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x6d,0x5e,0x49,0xff,0x75,0x67,0x54,0xff,0xb8,0xb1,0xa8,0x88,0xfe,0xfe,0xfe,0x04,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf7,0xf5,0xf4,0x10,0xab,0x95,0x85,0xff,0xa3,0x89,0x78,0xff,0xa4,0x8a,0x78,0xff,0xa5,0x8b,0x7a,0xff,0xa5,0x8c,0x7a,0xff,0xa5,0x8c,0x7a,0xff,0xa5,0x8b,0x7a,0xff,0xa4,0x89,0x78,0xff,0xa3,0x88,0x76,0xff,0xa3,0x89,0x77,0xff,0xa4,0x8b,0x7a,0xff,0xa6,0x8c,0x7b,0xff,0xa6,0x8c,0x7b,0xff,0xa6,0x8b,0x79,0xff,0xa6,0x8c,0x7a,0xff,0xa6,0x8c,0x7b,0xff,0x9d,0x85,0x73,0xff,0x7e,0x6d,0x5b,0xff,0x6b,0x5e,0x4b,0xff,0x6d,0x61,0x4e,0xff,0x70,0x63,0x4f,0xff,0x70,0x62,0x4c,0xfc,0x6c,0x5f,0x51,0xff,0x79,0x70,0x6e,0xff,0xbe,0xbb,0xbd,0x57,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xf9,0xf8,0x04,0xaf,0x9f,0x91,0xff,0x96,0x81,0x6f,0xff,0x92,0x7c,0x6a,0xff,0x92,0x7c,0x6c,0xff,0x91,0x7c,0x6a,0xff,0x92,0x7b,0x68,0xff,0x8a,0x75,0x66,0xff,0x8b,0x7c,0x75,0xff,0xf6,0xf5,0xf5,0x04,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfc,0xfc,0x03,0xa7,0x96,0x88,0xf3,0x8d,0x76,0x64,0xff,0x91,0x7b,0x68,0xff,0x95,0x7f,0x6e,0xff,0x94,0x7e,0x6d,0xff,0x8b,0x77,0x65,0xff,0x7e,0x6c,0x5a,0xff,0x7b,0x6a,0x58,0xff,0x7b,0x6a,0x57,0xff,0x7a,0x6a,0x57,0xff,0x7a,0x6a,0x58,0xff,0x78,0x69,0x56,0xff,0x78,0x68,0x56,0xff,0x78,0x68,0x56,0xff,0x77,0x67,0x55,0xff,0x77,0x66,0x55,0xff,0x76,0x66,0x54,0xff,0x75,0x66,0x53,0xff,0x75,0x65,0x53,0xff,0x75,0x65,0x53,0xff,0x71,0x62,0x4e,0xff,0x72,0x64,0x51,0xff,0x87,0x7b,0x6c,0xff,0xf1,0xf0,0xee,0x0b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xef,0xeb,0xe7,0x1f,0x9f,0x86,0x74,0xff,0x9f,0x86,0x74,0xff,0xa3,0x8a,0x79,0xff,0xa4,0x8b,0x79,0xff,0xa5,0x8b,0x79,0xff,0xa5,0x8b,0x79,0xff,0xa5,0x8b,0x7a,0xff,0xa5,0x8a,0x7a,0xff,0xa4,0x8b,0x7a,0xff,0xa5,0x8b,0x7a,0xff,0xa5,0x8c,0x7a,0xff,0xa5,0x8b,0x7a,0xff,0xa5,0x8b,0x7a,0xff,0xa4,0x8a,0x79,0xff,0xa8,0x8d,0x7b,0xff,0xa1,0x87,0x76,0xff,0x89,0x75,0x63,0xff,0x72,0x64,0x52,0xff,0x6b,0x5f,0x4c,0xff,0x70,0x63,0x4e,0xff,0x72,0x64,0x4e,0xff,0x6a,0x5d,0x4c,0xff,0x74,0x6a,0x65,0xff,0xaa,0xa6,0xa9,0x87,0xfe,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xf9,0xf8,0x04,0xae,0x9e,0x91,0xff,0x95,0x80,0x6e,0xff,0x91,0x7b,0x69,0xff,0x92,0x7d,0x6c,0xff,0x91,0x7c,0x6a,0xff,0x92,0x7b,0x68,0xff,0x8a,0x75,0x66,0xff,0x8b,0x7c,0x74,0xff,0xf6,0xf5,0xf4,0x04,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xe3,0xde,0xd9,0x2f,0xa2,0x8f,0x7f,0xff,0x92,0x7b,0x68,0xff,0x94,0x7d,0x6b,0xfb,0x99,0x82,0x71,0xff,0x93,0x7d,0x6c,0xff,0x85,0x72,0x60,0xff,0x7d,0x6b,0x59,0xff,0x7a,0x6a,0x57,0xff,0x7a,0x6a,0x57,0xff,0x7a,0x6a,0x58,0xff,0x78,0x69,0x56,0xff,0x77,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x77,0x66,0x55,0xff,0x76,0x66,0x54,0xff,0x74,0x66,0x53,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x53,0xff,0x73,0x64,0x50,0xff,0x71,0x62,0x4e,0xff,0x76,0x69,0x59,0xff,0xef,0xed,0xec,0x0b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x04,0xd3,0xc8,0xc0,0x7b,0x9d,0x84,0x72,0xff,0x9e,0x84,0x72,0xff,0xa2,0x89,0x78,0xff,0xa2,0x89,0x78,0xff,0xa3,0x8a,0x79,0xff,0xa3,0x8a,0x79,0xff,0xa4,0x8a,0x79,0xff,0xa4,0x8a,0x79,0xff,0xa4,0x8a,0x79,0xff,0xa5,0x8b,0x79,0xff,0xa4,0x8b,0x79,0xff,0xa4,0x8a,0x79,0xff,0xa4,0x8a,0x79,0xff,0xa4,0x8a,0x79,0xff,0xa7,0x8c,0x7a,0xff,0x97,0x80,0x6e,0xff,0x75,0x66,0x53,0xff,0x6b,0x5f,0x4c,0xff,0x70,0x62,0x4f,0xff,0x71,0x63,0x4e,0xff,0x6f,0x60,0x4c,0xff,0x6f,0x65,0x5d,0xff,0x92,0x8c,0x8f,0xff,0xf9,0xf9,0xfa,0x0f,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xf9,0xf9,0x04,0xaf,0x9f,0x92,0xff,0x95,0x7f,0x6e,0xff,0x90,0x7a,0x69,0xff,0x92,0x7c,0x6b,0xff,0x92,0x7c,0x6a,0xff,0x91,0x7b,0x68,0xff,0x89,0x74,0x66,0xff,0x8a,0x7b,0x74,0xff,0xf6,0xf5,0xf5,0x04,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xd3,0xca,0xc3,0x45,0x98,0x82,0x70,0xff,0x94,0x7d,0x6a,0xff,0x9a,0x82,0x71,0xff,0x99,0x82,0x71,0xff,0x90,0x7b,0x69,0xff,0x80,0x6e,0x5c,0xff,0x79,0x69,0x56,0xff,0x7a,0x6a,0x57,0xff,0x79,0x69,0x57,0xff,0x78,0x68,0x56,0xff,0x78,0x68,0x56,0xff,0x77,0x67,0x55,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x75,0x66,0x53,0xff,0x74,0x65,0x52,0xff,0x73,0x64,0x51,0xff,0x6f,0x60,0x4b,0xff,0x72,0x64,0x53,0xff,0x90,0x87,0x7d,0xff,0xf4,0xf3,0xf3,0x0a,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x02,0xd2,0xc6,0xbe,0x78,0x9f,0x86,0x74,0xff,0x9d,0x84,0x71,0xff,0xa0,0x88,0x76,0xff,0xa1,0x88,0x77,0xff,0xa1,0x89,0x78,0xff,0xa2,0x8a,0x78,0xff,0xa2,0x8a,0x78,0xff,0xa3,0x8a,0x79,0xff,0xa3,0x8a,0x79,0xff,0xa3,0x8a,0x79,0xff,0xa3,0x8a,0x79,0xff,0xa2,0x8a,0x78,0xff,0xa3,0x8a,0x78,0xff,0xa4,0x8b,0x79,0xff,0x9e,0x87,0x74,0xff,0x89,0x75,0x62,0xff,0x70,0x61,0x4e,0xff,0x6c,0x5f,0x4b,0xff,0x72,0x64,0x4f,0xff,0x6f,0x60,0x4c,0xfc,0x6d,0x60,0x52,0xff,0x89,0x81,0x80,0xff,0xdd,0xdc,0xde,0x37,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfc,0xfc,0xfb,0x02,0xaf,0x9f,0x92,0xff,0x95,0x80,0x6f,0xff,0x8f,0x7a,0x69,0xff,0x91,0x7b,0x6a,0xff,0x92,0x7c,0x69,0xff,0x91,0x7a,0x68,0xff,0x88,0x74,0x66,0xff,0x89,0x7b,0x74,0xff,0xf9,0xf9,0xf9,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfc,0xfc,0xfb,0x03,0xaf,0x9f,0x91,0xfb,0x9a,0x84,0x72,0xff,0x97,0x80,0x6e,0xff,0x9c,0x85,0x73,0xff,0x99,0x82,0x70,0xff,0x86,0x74,0x61,0xff,0x7b,0x6a,0x57,0xff,0x79,0x69,0x57,0xff,0x79,0x69,0x57,0xff,0x78,0x68,0x56,0xff,0x78,0x68,0x56,0xff,0x77,0x67,0x55,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x75,0x66,0x53,0xff,0x75,0x64,0x50,0xff,0x71,0x61,0x4d,0xff,0x71,0x64,0x57,0xff,0x8a,0x81,0x7c,0xff,0xce,0xca,0xc9,0x4f,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfc,0xfc,0x08,0xbf,0xaf,0xa4,0x92,0xa0,0x88,0x77,0xff,0x99,0x80,0x6d,0xff,0x9d,0x85,0x72,0xff,0xa0,0x88,0x76,0xfc,0xa1,0x89,0x77,0xff,0xa1,0x89,0x77,0xff,0xa1,0x89,0x77,0xff,0xa1,0x88,0x77,0xff,0xa1,0x89,0x77,0xff,0xa1,0x89,0x77,0xff,0xa0,0x88,0x76,0xff,0xa1,0x8a,0x77,0xff,0xa4,0x8c,0x7a,0xff,0x92,0x7d,0x6b,0xff,0x77,0x67,0x55,0xff,0x6e,0x60,0x4d,0xff,0x70,0x62,0x4e,0xff,0x72,0x63,0x4e,0xff,0x6f,0x60,0x4f,0xff,0x74,0x69,0x65,0xff,0xc3,0xbf,0xc1,0x4b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xe8,0xe3,0xdf,0x21,0xa4,0x91,0x83,0xff,0x91,0x7c,0x6b,0xff,0x90,0x7a,0x69,0xff,0x91,0x7b,0x69,0xff,0x91,0x7b,0x69,0xff,0x90,0x7a,0x68,0xff,0x88,0x74,0x64,0xff,0x8d,0x7c,0x70,0xff,0xcf,0xc8,0xc4,0x37,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xe4,0xde,0xda,0x2c,0xa2,0x8d,0x7d,0xff,0x95,0x7c,0x69,0xff,0x9e,0x86,0x74,0xff,0x9e,0x86,0x74,0xff,0x91,0x7b,0x69,0xff,0x80,0x6e,0x5c,0xff,0x78,0x68,0x56,0xff,0x78,0x68,0x56,0xff,0x78,0x68,0x56,0xff,0x77,0x67,0x55,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x74,0x64,0x51,0xfb,0x6d,0x5e,0x50,0xff,0x75,0x69,0x61,0xff,0x98,0x91,0x8f,0xad,0xdd,0xdb,0xdc,0x29,0xfe,0xfe,0xfe,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfd,0xfd,0x05,0xdd,0xd5,0xcf,0x41,0xb6,0xa3,0x96,0xd8,0xa4,0x8d,0x7c,0xff,0x9b,0x82,0x6f,0xff,0x9d,0x84,0x71,0xff,0x9f,0x87,0x75,0xfc,0xa0,0x88,0x76,0xff,0xa0,0x88,0x76,0xff,0xa0,0x88,0x76,0xff,0xa0,0x88,0x76,0xff,0x9f,0x88,0x76,0xff,0xa1,0x89,0x77,0xff,0xa1,0x88,0x77,0xff,0x88,0x74,0x62,0xff,0x6c,0x5f,0x4c,0xff,0x6e,0x60,0x4d,0xff,0x72,0x64,0x50,0xff,0x6f,0x61,0x4c,0xfc,0x72,0x65,0x59,0xff,0x89,0x81,0x83,0xff,0xf8,0xf8,0xf8,0x09,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf1,0xef,0xec,0x11,0xd3,0xca,0xc3,0x45,0xac,0x9a,0x8d,0xff,0x95,0x80,0x6f,0xff,0x8f,0x79,0x68,0xff,0x91,0x7b,0x6a,0xff,0x91,0x7b,0x69,0xff,0x8f,0x7b,0x69,0xff,0x8e,0x79,0x68,0xff,0x8b,0x76,0x65,0xfb,0x8e,0x79,0x69,0xff,0x9c,0x8b,0x7d,0xff,0xce,0xc6,0xbe,0x46,0xfc,0xfc,0xfb,0x06,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfd,0x02,0xbe,0xad,0xa1,0xa6,0x9b,0x82,0x70,0xff,0x9e,0x86,0x74,0xff,0xa0,0x88,0x76,0xff,0x9c,0x84,0x72,0xff,0x87,0x74,0x62,0xff,0x77,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x78,0x68,0x55,0xff,0x77,0x67,0x55,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x77,0x67,0x54,0xff,0x71,0x62,0x51,0xfb,0x6a,0x5d,0x52,0xff,0x7b,0x70,0x6e,0xff,0xa1,0x9b,0x9d,0x83,0xfc,0xfc,0xfc,0x03,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfd,0xfd,0x0a,0xc8,0xb9,0xb0,0x7f,0xa8,0x91,0x81,0xff,0x9f,0x87,0x75,0xff,0x9f,0x87,0x77,0xf9,0x9f,0x87,0x76,0xff,0xa0,0x88,0x76,0xff,0xa0,0x88,0x76,0xff,0xa0,0x88,0x76,0xff,0xa1,0x88,0x76,0xff,0xa0,0x88,0x76,0xff,0x97,0x81,0x6f,0xff,0x7f,0x6e,0x5c,0xff,0x6d,0x61,0x4d,0xff,0x70,0x62,0x4e,0xff,0x74,0x65,0x50,0xff,0x6e,0x60,0x50,0xff,0x79,0x6e,0x69,0xff,0xc9,0xc6,0xc7,0x44,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xd8,0xd0,0xc9,0x2b,0xa3,0x90,0x80,0xff,0x9b,0x87,0x76,0xff,0x93,0x7c,0x6a,0xff,0x91,0x7c,0x6a,0xfb,0x91,0x7b,0x6a,0xff,0x91,0x7b,0x69,0xff,0x91,0x7b,0x69,0xff,0x8f,0x7a,0x69,0xff,0x8e,0x79,0x68,0xff,0x8e,0x79,0x68,0xff,0x8e,0x79,0x68,0xf7,0x8d,0x78,0x67,0xff,0x95,0x82,0x72,0xff,0xa3,0x92,0x84,0xff,0xe0,0xda,0xd6,0x1d,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xec,0xe7,0xe3,0x1b,0xaa,0x95,0x85,0xff,0x9e,0x85,0x73,0xff,0xa2,0x89,0x77,0xff,0xa5,0x8c,0x7a,0xff,0x90,0x7b,0x69,0xff,0x79,0x69,0x57,0xff,0x77,0x67,0x55,0xff,0x78,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x76,0x66,0x55,0xff,0x76,0x66,0x54,0xff,0x78,0x69,0x53,0xff,0x68,0x5b,0x4f,0xf4,0x6c,0x63,0x65,0xff,0xa4,0xa0,0xa4,0x85,0xfe,0xfe,0xfe,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x03,0xf4,0xf1,0xef,0x17,0xc5,0xb6,0xac,0x79,0xa6,0x8f,0x7f,0xff,0x9c,0x84,0x73,0xf9,0x9e,0x86,0x74,0xff,0xa0,0x88,0x76,0xff,0x9f,0x87,0x75,0xff,0xa1,0x89,0x77,0xff,0x9f,0x87,0x75,0xff,0x8b,0x78,0x65,0xff,0x76,0x67,0x54,0xff,0x6f,0x62,0x4e,0xff,0x72,0x64,0x4f,0xff,0x73,0x63,0x4e,0xff,0x6f,0x62,0x56,0xff,0x88,0x81,0x82,0xff,0xf6,0xf5,0xf6,0x0e,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xec,0xe8,0xe5,0x19,0xba,0xab,0x9f,0x8c,0x9a,0x84,0x72,0xff,0x8f,0x77,0x64,0xff,0x8f,0x78,0x65,0xf3,0x91,0x7b,0x6a,0xff,0x91,0x7c,0x6b,0xff,0x91,0x7c,0x6a,0xff,0x91,0x7b,0x69,0xff,0x90,0x7a,0x69,0xff,0x8f,0x7a,0x69,0xff,0x8e,0x79,0x68,0xff,0x8d,0x79,0x68,0xff,0x8e,0x79,0x68,0xff,0x8c,0x77,0x65,0xfb,0x85,0x70,0x5d,0xf7,0x88,0x72,0x5f,0xff,0x92,0x7e,0x6d,0xff,0xbc,0xb0,0xa6,0x5b,0xec,0xe9,0xe6,0x14,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x01,0xc9,0xbb,0xb0,0x6d,0x9f,0x85,0x73,0xff,0xa3,0x89,0x78,0xff,0xa8,0x8e,0x7d,0xff,0x99,0x82,0x70,0xff,0x83,0x71,0x5f,0xff,0x78,0x68,0x56,0xff,0x77,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x76,0x66,0x55,0xff,0x76,0x66,0x54,0xff,0x77,0x68,0x53,0xf7,0x6d,0x5f,0x54,0xff,0x91,0x89,0x8b,0x8a,0xfd,0xfd,0xfe,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xdc,0xd2,0xcc,0x45,0xa7,0x91,0x81,0xff,0x9c,0x84,0x72,0xf3,0x9d,0x85,0x73,0xff,0x9f,0x86,0x75,0xff,0x9e,0x86,0x74,0xff,0xa1,0x88,0x76,0xff,0x9c,0x85,0x73,0xff,0x81,0x6f,0x5c,0xff,0x6e,0x61,0x4e,0xff,0x71,0x63,0x4f,0xff,0x73,0x65,0x50,0xff,0x70,0x61,0x4e,0xff,0x72,0x67,0x5f,0xff,0xa8,0xa3,0xa7,0xb9,0xfc,0xfc,0xfd,0x09,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xeb,0xe7,0xe3,0x1d,0xa7,0x96,0x87,0xff,0x8c,0x77,0x64,0xff,0x86,0x71,0x5e,0xf7,0x8f,0x79,0x67,0xf7,0x93,0x7d,0x6b,0xff,0x92,0x7d,0x6d,0xff,0x91,0x7c,0x6b,0xff,0x92,0x7c,0x6b,0xff,0x92,0x7c,0x6b,0xff,0x90,0x7b,0x6a,0xff,0x90,0x7a,0x69,0xff,0x8f,0x79,0x68,0xff,0x8d,0x79,0x67,0xff,0x8c,0x78,0x67,0xff,0x8c,0x79,0x67,0xff,0x8d,0x79,0x66,0xff,0x89,0x76,0x62,0xef,0x7f,0x6b,0x57,0xfb,0x87,0x75,0x63,0xff,0xa2,0x94,0x86,0xff,0xeb,0xe8,0xe5,0x18,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xe6,0xe0,0xda,0x19,0xa3,0x8a,0x77,0xff,0xa5,0x8a,0x78,0xff,0xa9,0x8f,0x7e,0xff,0xa1,0x89,0x77,0xff,0x8e,0x79,0x67,0xff,0x7a,0x69,0x57,0xff,0x76,0x66,0x54,0xff,0x77,0x67,0x55,0xff,0x76,0x66,0x54,0xff,0x76,0x65,0x54,0xff,0x77,0x67,0x53,0xf0,0x75,0x67,0x59,0xff,0xbe,0xb9,0xb5,0x37,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xcf,0xc4,0xbb,0x4d,0x9f,0x89,0x76,0xff,0x9d,0x85,0x73,0xf3,0x9e,0x86,0x74,0xff,0x9e,0x86,0x74,0xff,0x9d,0x86,0x73,0xff,0x9f,0x87,0x75,0xff,0x97,0x81,0x6f,0xff,0x7a,0x6a,0x57,0xff,0x6c,0x5f,0x4b,0xff,0x72,0x64,0x50,0xff,0x73,0x64,0x50,0xff,0x6e,0x60,0x51,0xff,0x82,0x78,0x75,0xff,0xe3,0xe1,0xe2,0x29,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfc,0xfc,0x09,0xad,0x9a,0x8b,0xe9,0x87,0x72,0x5e,0xff,0x7e,0x6d,0x5b,0xe2,0x86,0x76,0x65,0xff,0x92,0x80,0x6f,0xff,0x93,0x7e,0x6d,0xff,0x8f,0x79,0x68,0xff,0x8f,0x79,0x67,0xfb,0x8b,0x75,0x63,0xff,0x88,0x73,0x61,0xff,0x88,0x74,0x61,0xff,0x88,0x73,0x60,0xff,0x89,0x72,0x60,0xff,0x8a,0x75,0x64,0xff,0x8c,0x77,0x65,0xff,0x8b,0x77,0x64,0xf7,0x87,0x74,0x62,0xff,0x82,0x72,0x61,0xff,0x79,0x6b,0x58,0xff,0x7a,0x69,0x56,0xde,0x82,0x70,0x5e,0xff,0xaa,0x9d,0x90,0xb6,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xec,0xe7,0xe3,0x13,0xae,0x96,0x85,0xff,0xa7,0x8d,0x7b,0xff,0xaa,0x90,0x7e,0xff,0xa9,0x8f,0x7d,0xff,0x96,0x80,0x6e,0xff,0x7a,0x69,0x58,0xff,0x74,0x65,0x53,0xff,0x77,0x67,0x55,0xff,0x76,0x66,0x54,0xff,0x75,0x65,0x53,0xff,0x76,0x66,0x53,0xf7,0x71,0x62,0x52,0xff,0xa2,0x9a,0x92,0x91,0xfe,0xfe,0xfe,0x05,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xca,0xbe,0xb4,0x4c,0x99,0x81,0x6e,0xff,0x9d,0x86,0x74,0xf3,0x9c,0x85,0x72,0xff,0x9d,0x85,0x73,0xff,0x9d,0x86,0x73,0xff,0x9b,0x85,0x72,0xff,0x8f,0x7b,0x68,0xff,0x78,0x68,0x55,0xff,0x6e,0x60,0x4d,0xff,0x74,0x64,0x50,0xff,0x73,0x63,0x50,0xff,0x6d,0x60,0x56,0xff,0x9e,0x98,0x97,0xc6,0xfc,0xfc,0xfc,0x0a,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x04,0xbf,0xb1,0xa5,0x95,0x92,0x7b,0x69,0xff,0x78,0x66,0x52,0xf4,0x78,0x6c,0x5a,0xff,0x9d,0x94,0x88,0xd9,0xad,0xa2,0x96,0xcc,0x9d,0x8b,0x7c,0xff,0x8e,0x78,0x66,0xff,0x86,0x70,0x5d,0xff,0x82,0x70,0x5d,0xff,0x81,0x71,0x5f,0xff,0x82,0x72,0x60,0xff,0x87,0x75,0x64,0xff,0x8b,0x78,0x68,0xff,0x8a,0x76,0x65,0xff,0x87,0x72,0x5f,0xff,0x86,0x72,0x5f,0xff,0x89,0x7a,0x6d,0xff,0x87,0x7c,0x73,0xeb,0x85,0x7a,0x6c,0xce,0x7b,0x6c,0x5b,0xfb,0x7b,0x67,0x54,0xf7,0x8b,0x78,0x67,0xff,0xcd,0xc5,0xbe,0x4b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xd9,0xcd,0xc5,0x3c,0xac,0x92,0x81,0xff,0xa9,0x8e,0x7c,0xff,0xb0,0x95,0x83,0xff,0x9e,0x87,0x74,0xff,0x7b,0x6a,0x58,0xff,0x73,0x63,0x51,0xff,0x77,0x67,0x54,0xff,0x76,0x67,0x54,0xff,0x75,0x66,0x53,0xff,0x76,0x67,0x53,0xff,0x6c,0x5d,0x4a,0xfb,0x8c,0x82,0x78,0xff,0xe7,0xe6,0xe5,0x1f,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x03,0xbf,0xb0,0xa4,0x78,0x95,0x7d,0x69,0xff,0x9c,0x85,0x72,0xf6,0x9b,0x84,0x71,0xff,0x9b,0x84,0x72,0xff,0x9c,0x85,0x73,0xff,0x98,0x82,0x6f,0xff,0x89,0x76,0x63,0xff,0x77,0x68,0x54,0xff,0x6f,0x62,0x4f,0xff,0x74,0x64,0x50,0xff,0x74,0x64,0x51,0xff,0x72,0x68,0x63,0xff,0xd4,0xd2,0xd4,0x32,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xda,0xd1,0xcb,0x3e,0x9c,0x86,0x75,0xff,0x8d,0x75,0x62,0xff,0x7c,0x6d,0x59,0xff,0x8a,0x82,0x71,0xd5,0xfa,0xfa,0xf9,0x04,0xff,0xff,0xff,0x00,0xf2,0xf0,0xee,0x0f,0x9c,0x8d,0x7e,0xff,0x92,0x85,0x75,0xff,0x9a,0x8f,0x82,0xe8,0xa3,0x9b,0x91,0xaf,0xa2,0x98,0x90,0xb5,0xaa,0xa0,0x97,0xb4,0xb1,0xa6,0x9c,0xae,0xa5,0x96,0x87,0xe6,0x94,0x81,0x71,0xff,0x94,0x85,0x79,0xff,0xa8,0xa0,0x9b,0xb3,0xfb,0xfa,0xfb,0x03,0xfd,0xfc,0xfc,0x01,0x9c,0x8d,0x7f,0xcb,0x82,0x70,0x5d,0xff,0x7f,0x6c,0x59,0xff,0x93,0x83,0x73,0xff,0xe3,0xdf,0xdb,0x22,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xeb,0xe5,0xe1,0x18,0xb1,0x96,0x85,0xff,0xaa,0x8d,0x7b,0xff,0xb3,0x96,0x85,0xff,0xa5,0x8b,0x79,0xff,0x83,0x71,0x5e,0xff,0x75,0x65,0x54,0xff,0x76,0x65,0x53,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x76,0x67,0x54,0xff,0x6f,0x5f,0x4b,0xf7,0x81,0x75,0x68,0xff,0xcd,0xc9,0xc7,0x3d,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfb,0xfa,0xf9,0x19,0xae,0x9d,0x8e,0xed,0x93,0x7a,0x67,0xff,0x9b,0x83,0x71,0xfc,0x9a,0x83,0x71,0xff,0x9b,0x84,0x72,0xff,0x9c,0x85,0x73,0xff,0x95,0x7f,0x6d,0xff,0x83,0x71,0x5e,0xff,0x74,0x66,0x51,0xff,0x71,0x63,0x4f,0xff,0x73,0x64,0x4f,0xff,0x72,0x64,0x52,0xff,0x7c,0x73,0x70,0xff,0xe3,0xe2,0xe3,0x20,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xe7,0xe1,0xdd,0x23,0xa3,0x8f,0x80,0xff,0x93,0x7c,0x6a,0xff,0x91,0x7a,0x69,0xf8,0x85,0x71,0x5f,0xff,0x9b,0x8f,0x82,0xdd,0xfe,0xfe,0xfe,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf0,0xef,0xed,0x15,0xc6,0xc2,0xbb,0x79,0xf8,0xf8,0xf7,0x0d,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x01,0xfe,0xfe,0xfe,0x01,0xff,0xff,0xff,0x00,0xf9,0xf9,0xf8,0x0a,0xc7,0xbe,0xb6,0x77,0xdb,0xd6,0xd3,0x3b,0xfe,0xfe,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xfe,0xfe,0x02,0xa8,0x99,0x8b,0xdf,0x84,0x71,0x5e,0xff,0x7e,0x6b,0x59,0xf3,0x82,0x70,0x5e,0xff,0xaa,0x9e,0x93,0xcb,0xfc,0xfb,0xfb,0x05,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xed,0xe8,0xe4,0x19,0xb6,0x9c,0x8c,0xff,0xac,0x8d,0x7b,0xff,0xb5,0x97,0x86,0xff,0xab,0x8f,0x7e,0xff,0x8f,0x7a,0x69,0xff,0x7a,0x69,0x58,0xff,0x74,0x64,0x52,0xff,0x74,0x65,0x52,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x54,0xff,0x71,0x62,0x4e,0xff,0x75,0x67,0x55,0xff,0x94,0x8a,0x80,0xff,0xda,0xd6,0xd3,0x26,0xfd,0xfd,0xfd,0x01,0xfb,0xfb,0xfa,0x02,0xfb,0xfb,0xfa,0x02,0xfa,0xfa,0xf9,0x03,0xfc,0xfc,0xfc,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xfe,0xfe,0xfe,0x02,0xdf,0xd8,0xd3,0x4f,0xa8,0x94,0x85,0xff,0x95,0x7c,0x69,0xff,0x9a,0x83,0x71,0xff,0x9a,0x83,0x71,0xff,0x9a,0x83,0x72,0xff,0x9d,0x85,0x73,0xff,0x94,0x7e,0x6c,0xff,0x7d,0x6c,0x5a,0xff,0x72,0x64,0x50,0xff,0x73,0x65,0x51,0xff,0x73,0x64,0x51,0xff,0x72,0x63,0x54,0xff,0x86,0x7e,0x7b,0xff,0xe9,0xe9,0xea,0x1b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xd3,0xca,0xc3,0x3f,0x96,0x80,0x6f,0xff,0x92,0x7b,0x69,0xf4,0x93,0x7d,0x6c,0xff,0x8d,0x76,0x64,0xff,0x9a,0x88,0x78,0xff,0xce,0xc8,0xc1,0x61,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xc2,0xb6,0xad,0x88,0x96,0x84,0x74,0xff,0x81,0x6f,0x5c,0xff,0x83,0x71,0x5f,0xff,0x81,0x6e,0x5c,0xf7,0x8b,0x7a,0x6a,0xff,0xd3,0xcc,0xc6,0x30,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf7,0xf4,0xf3,0x0d,0xb8,0x9f,0x90,0xff,0xaa,0x8b,0x79,0xff,0xb4,0x97,0x86,0xff,0xad,0x91,0x80,0xff,0x96,0x7f,0x6e,0xff,0x7d,0x6b,0x5a,0xff,0x74,0x64,0x52,0xff,0x74,0x65,0x53,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x74,0x65,0x52,0xff,0x73,0x65,0x50,0xf7,0x75,0x67,0x54,0xff,0x74,0x67,0x54,0xff,0x75,0x68,0x54,0xd5,0x76,0x69,0x57,0xdc,0x7a,0x6c,0x5b,0xdf,0x79,0x6d,0x5c,0xff,0x8f,0x85,0x75,0xe6,0xf0,0xee,0xec,0x0d,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfd,0xfc,0x09,0xf9,0xf8,0xf7,0x11,0xfa,0xf9,0xf8,0x0b,0xf4,0xf1,0xf0,0x1a,0xe3,0xdd,0xd8,0x50,0xc0,0xb3,0xa8,0xb5,0xa6,0x92,0x83,0xff,0x9b,0x84,0x73,0xff,0x98,0x81,0x6f,0xff,0x99,0x83,0x71,0xff,0x99,0x83,0x71,0xff,0x9a,0x83,0x71,0xff,0x9c,0x84,0x73,0xff,0x94,0x7e,0x6c,0xff,0x81,0x6f,0x5c,0xff,0x7a,0x6a,0x57,0xff,0x7d,0x6c,0x59,0xff,0x7c,0x6a,0x58,0xff,0x7a,0x6a,0x5c,0xff,0x8d,0x82,0x7d,0xff,0xd6,0xd2,0xd1,0x42,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x03,0xff,0xff,0xff,0x04,0xff,0xff,0xff,0x04,0xff,0xff,0xff,0x05,0xfe,0xfe,0xfe,0x05,0xfe,0xfe,0xff,0x04,0xff,0xff,0xff,0x04,0xff,0xff,0xff,0x04,0xfe,0xfe,0xfe,0x05,0xff,0xff,0xff,0x03,0xfe,0xfe,0xfe,0x05,0xf8,0xf7,0xf6,0x13,0xbc,0xae,0xa3,0x81,0x8f,0x79,0x66,0xff,0x90,0x7b,0x6a,0xff,0x93,0x7d,0x6c,0xff,0x93,0x7b,0x6a,0xfb,0x8b,0x76,0x64,0xff,0x91,0x82,0x72,0xff,0xf0,0xee,0xed,0x17,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf8,0xf7,0xf6,0x0b,0x9a,0x88,0x79,0xff,0x85,0x71,0x5f,0xff,0x83,0x71,0x5f,0xfb,0x85,0x74,0x62,0xff,0x83,0x70,0x5e,0xfb,0x7d,0x6a,0x57,0xff,0xa6,0x9a,0x8d,0xb1,0xf4,0xf3,0xf2,0x11,0xfc,0xfc,0xfc,0x03,0xfb,0xfb,0xfa,0x05,0xfa,0xfa,0xf9,0x05,0xfa,0xf9,0xf9,0x05,0xfa,0xfa,0xf9,0x05,0xfa,0xfa,0xf9,0x05,0xfa,0xfa,0xf9,0x05,0xfa,0xfa,0xf9,0x05,0xfa,0xfa,0xf9,0x05,0xfa,0xfa,0xf9,0x05,0xfa,0xfa,0xf9,0x05,0xfa,0xfa,0xf9,0x05,0xfd,0xfd,0xfd,0x02,0xdd,0xd6,0xcf,0x33,0xa7,0x8f,0x7e,0xff,0x9e,0x83,0x71,0xff,0xa5,0x8c,0x7b,0xff,0xa1,0x88,0x76,0xff,0x91,0x7b,0x69,0xff,0x7d,0x6b,0x59,0xff,0x74,0x65,0x53,0xff,0x74,0x65,0x53,0xff,0x74,0x65,0x53,0xff,0x74,0x64,0x52,0xff,0x74,0x65,0x52,0xff,0x72,0x65,0x50,0xff,0x6e,0x5f,0x4a,0xf8,0x6b,0x5c,0x47,0xff,0x6c,0x5e,0x4a,0xff,0x6b,0x5e,0x4a,0xff,0x6c,0x5f,0x4c,0xff,0x6c,0x5e,0x4b,0xff,0x73,0x67,0x54,0xff,0x85,0x7b,0x69,0xe2,0xfd,0xfd,0xfc,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xed,0xe9,0xe6,0x20,0xb7,0xa8,0x9a,0xdf,0xaf,0x9e,0x90,0xff,0xab,0x99,0x8a,0xff,0xa1,0x8d,0x7d,0xff,0x9c,0x87,0x75,0xff,0x99,0x83,0x72,0xff,0x96,0x7f,0x6d,0xff,0x96,0x7f,0x6e,0xfc,0x99,0x82,0x71,0xff,0x99,0x82,0x71,0xff,0x99,0x82,0x71,0xff,0x98,0x82,0x70,0xff,0x99,0x83,0x71,0xff,0x96,0x80,0x6e,0xff,0x8f,0x7a,0x68,0xff,0x8c,0x79,0x67,0xff,0x8e,0x7a,0x68,0xff,0x8d,0x79,0x67,0xff,0x8c,0x78,0x69,0xff,0x93,0x80,0x74,0xff,0xa5,0x94,0x89,0xff,0xc7,0xba,0xb1,0x99,0xd7,0xce,0xc7,0x65,0xce,0xc3,0xbb,0x81,0xcd,0xc3,0xbb,0x80,0xcc,0xc1,0xb9,0x89,0xca,0xc0,0xb8,0x8b,0xcb,0xc1,0xb7,0x89,0xcb,0xc0,0xb7,0x88,0xcb,0xc0,0xb7,0x87,0xca,0xc0,0xb7,0x89,0xcf,0xc6,0xbe,0x78,0xbf,0xb2,0xa7,0xaf,0xa7,0x96,0x88,0xff,0x98,0x85,0x74,0xff,0x90,0x7b,0x69,0xfc,0x91,0x7c,0x6a,0xff,0x92,0x7c,0x6b,0xff,0x94,0x7d,0x6c,0xff,0x80,0x6b,0x57,0xff,0x7f,0x70,0x5e,0xff,0xc8,0xc3,0xbc,0x6d,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf3,0xf0,0xee,0x15,0x93,0x7f,0x6e,0xff,0x82,0x6d,0x5a,0xff,0x83,0x71,0x5f,0xff,0x85,0x73,0x61,0xff,0x83,0x71,0x5f,0xff,0x7f,0x6d,0x5a,0xfb,0x88,0x78,0x67,0xff,0x9b,0x8d,0x80,0xff,0xa7,0x9a,0x8d,0xff,0xa8,0x9b,0x8f,0xff,0xa5,0x98,0x8c,0xff,0xa5,0x98,0x8b,0xff,0xa4,0x98,0x8a,0xff,0xa3,0x98,0x8a,0xff,0xa3,0x97,0x8a,0xff,0xa3,0x97,0x8a,0xff,0xa3,0x97,0x8a,0xff,0xa2,0x97,0x8a,0xff,0xa2,0x96,0x89,0xff,0xa2,0x96,0x89,0xff,0xa4,0x99,0x8c,0xff,0x98,0x8a,0x7c,0xff,0x87,0x74,0x62,0xff,0x86,0x72,0x60,0xff,0x88,0x75,0x63,0xff,0x86,0x73,0x61,0xff,0x81,0x6e,0x5c,0xff,0x78,0x68,0x56,0xff,0x74,0x66,0x53,0xff,0x74,0x66,0x53,0xff,0x74,0x65,0x52,0xff,0x74,0x64,0x52,0xff,0x73,0x65,0x51,0xff,0x72,0x64,0x50,0xff,0x71,0x63,0x4f,0xff,0x71,0x63,0x4f,0xff,0x70,0x63,0x4f,0xff,0x6e,0x62,0x4f,0xff,0x6d,0x60,0x4d,0xff,0x6b,0x5d,0x4b,0xfb,0x65,0x58,0x44,0xff,0x6c,0x61,0x4c,0xff,0xf6,0xf6,0xf4,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xf9,0xf8,0xf7,0x0f,0x96,0x81,0x6f,0xff,0x92,0x7c,0x69,0xff,0x95,0x7f,0x6d,0xff,0x96,0x80,0x6e,0xff,0x96,0x7f,0x6d,0xff,0x95,0x7d,0x6b,0xff,0x95,0x7e,0x6c,0xff,0x95,0x7f,0x6d,0xfc,0x97,0x80,0x6f,0xff,0x97,0x81,0x70,0xff,0x98,0x81,0x70,0xff,0x98,0x81,0x70,0xff,0x97,0x81,0x6f,0xff,0x97,0x81,0x6f,0xff,0x97,0x81,0x6f,0xff,0x99,0x82,0x71,0xff,0x9a,0x83,0x72,0xff,0x9a,0x83,0x71,0xff,0x9a,0x83,0x72,0xff,0x9a,0x83,0x71,0xff,0x98,0x80,0x6e,0xfc,0x96,0x7e,0x6c,0xff,0x95,0x7e,0x6c,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6c,0xff,0x94,0x7e,0x6c,0xff,0x94,0x7e,0x6c,0xff,0x94,0x7e,0x6c,0xff,0x94,0x7e,0x6c,0xff,0x93,0x7d,0x6b,0xff,0x93,0x7d,0x6b,0xff,0x93,0x7d,0x6b,0xff,0x92,0x7c,0x6a,0xff,0x92,0x7c,0x6a,0xff,0x91,0x7b,0x69,0xff,0x90,0x7b,0x69,0xff,0x91,0x7c,0x6a,0xfc,0x91,0x7c,0x6a,0xff,0x92,0x7c,0x6a,0xff,0x93,0x7c,0x6a,0xff,0x7e,0x6b,0x57,0xff,0x7d,0x71,0x61,0xff,0xe3,0xe1,0xdf,0x36,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x01,0xa7,0x91,0x81,0xb6,0x8b,0x76,0x63,0xff,0x80,0x6f,0x5d,0xff,0x83,0x71,0x5f,0xff,0x83,0x71,0x5f,0xff,0x82,0x71,0x5f,0xfb,0x80,0x6d,0x5b,0xff,0x7f,0x6d,0x5a,0xff,0x80,0x6e,0x5b,0xff,0x7e,0x6c,0x5a,0xff,0x7e,0x6b,0x5a,0xff,0x7d,0x6b,0x59,0xff,0x7c,0x6b,0x58,0xff,0x7c,0x6a,0x57,0xff,0x7c,0x6a,0x57,0xff,0x7b,0x6a,0x57,0xff,0x7a,0x69,0x56,0xff,0x7a,0x69,0x56,0xff,0x7a,0x69,0x55,0xff,0x79,0x67,0x55,0xff,0x78,0x67,0x55,0xff,0x75,0x65,0x53,0xff,0x75,0x65,0x53,0xfb,0x75,0x66,0x54,0xff,0x73,0x64,0x52,0xff,0x73,0x64,0x52,0xff,0x74,0x65,0x52,0xff,0x75,0x65,0x53,0xff,0x75,0x65,0x53,0xff,0x75,0x66,0x53,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x73,0x64,0x51,0xff,0x72,0x64,0x4f,0xff,0x71,0x63,0x4f,0xff,0x71,0x63,0x4f,0xff,0x70,0x63,0x4f,0xff,0x6f,0x62,0x4f,0xff,0x6f,0x62,0x4f,0xff,0x6d,0x60,0x4d,0xff,0x66,0x58,0x43,0xff,0x71,0x66,0x52,0xec,0xdf,0xdd,0xda,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xe4,0xde,0xda,0x51,0x96,0x80,0x6e,0xff,0x8e,0x76,0x63,0xff,0x93,0x7d,0x6a,0xfc,0x94,0x7e,0x6c,0xff,0x95,0x7f,0x6d,0xff,0x96,0x7f,0x6d,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x97,0x81,0x6f,0xff,0x97,0x81,0x6f,0xff,0x97,0x81,0x6f,0xff,0x96,0x81,0x6f,0xff,0x97,0x81,0x6f,0xff,0x97,0x81,0x6f,0xff,0x97,0x81,0x6f,0xff,0x98,0x82,0x70,0xff,0x98,0x82,0x70,0xff,0x98,0x82,0x70,0xff,0x98,0x82,0x70,0xff,0x98,0x81,0x70,0xff,0x97,0x80,0x6e,0xff,0x94,0x7e,0x6b,0xff,0x93,0x7c,0x6a,0xff,0x93,0x7c,0x6a,0xff,0x93,0x7c,0x6a,0xff,0x92,0x7c,0x69,0xff,0x92,0x7b,0x69,0xff,0x92,0x7b,0x69,0xff,0x92,0x7b,0x69,0xff,0x91,0x7b,0x68,0xff,0x91,0x7a,0x68,0xff,0x90,0x7a,0x68,0xff,0x90,0x79,0x68,0xff,0x8f,0x79,0x67,0xff,0x8f,0x79,0x67,0xff,0x90,0x7b,0x68,0xff,0x91,0x7b,0x69,0xff,0x91,0x7b,0x69,0xff,0x91,0x7b,0x6a,0xff,0x90,0x7a,0x68,0xff,0x7e,0x6c,0x5a,0xff,0x80,0x75,0x68,0xff,0xe9,0xe8,0xe7,0x2c,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x01,0xb6,0x9f,0x91,0xb3,0x91,0x7c,0x6a,0xff,0x7f,0x6e,0x5b,0xff,0x83,0x71,0x5f,0xff,0x83,0x71,0x5f,0xff,0x82,0x70,0x5e,0xff,0x80,0x6e,0x5c,0xff,0x7e,0x6c,0x59,0xff,0x7c,0x6a,0x57,0xff,0x7b,0x69,0x56,0xff,0x7b,0x68,0x56,0xff,0x7b,0x68,0x56,0xff,0x7a,0x67,0x55,0xff,0x7a,0x68,0x55,0xff,0x7a,0x68,0x55,0xff,0x79,0x67,0x54,0xff,0x78,0x66,0x53,0xff,0x77,0x66,0x52,0xff,0x77,0x65,0x51,0xff,0x75,0x64,0x52,0xff,0x74,0x63,0x51,0xff,0x74,0x64,0x52,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x75,0x65,0x53,0xff,0x74,0x64,0x52,0xff,0x75,0x65,0x53,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x74,0x65,0x52,0xff,0x73,0x65,0x51,0xff,0x73,0x64,0x51,0xff,0x72,0x64,0x50,0xff,0x71,0x63,0x4f,0xff,0x70,0x62,0x4e,0xff,0x6f,0x62,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4d,0xff,0x67,0x58,0x43,0xff,0x70,0x63,0x50,0xfb,0xb6,0xaf,0xaa,0xaf,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xe0,0xd9,0xd5,0x60,0x99,0x83,0x73,0xf3,0x90,0x79,0x67,0xff,0x96,0x7f,0x6d,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x95,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x97,0x81,0x6f,0xff,0x96,0x81,0x6f,0xff,0x96,0x81,0x6f,0xff,0x97,0x81,0x6f,0xff,0x97,0x81,0x6f,0xff,0x97,0x81,0x6f,0xff,0x97,0x81,0x6f,0xff,0x96,0x81,0x6f,0xff,0x97,0x81,0x6f,0xff,0x96,0x80,0x6e,0xff,0x95,0x7f,0x6d,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x94,0x7e,0x6c,0xff,0x92,0x7d,0x6c,0xff,0x92,0x7c,0x6c,0xff,0x91,0x7c,0x6b,0xff,0x91,0x7b,0x69,0xff,0x91,0x7b,0x69,0xff,0x90,0x7b,0x69,0xff,0x90,0x7a,0x69,0xff,0x8f,0x7a,0x69,0xff,0x8d,0x79,0x66,0xff,0x7f,0x6c,0x5b,0xff,0x84,0x78,0x6d,0xff,0xec,0xeb,0xeb,0x29,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x01,0xbf,0xaa,0x9c,0xb7,0x95,0x80,0x6e,0xff,0x7d,0x6c,0x59,0xff,0x82,0x70,0x5e,0xff,0x83,0x71,0x5f,0xff,0x82,0x70,0x5e,0xff,0x81,0x6f,0x5d,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x7e,0x6d,0x5b,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7d,0x6c,0x59,0xff,0x7c,0x6b,0x58,0xff,0x7b,0x6b,0x57,0xff,0x7a,0x6a,0x57,0xff,0x7a,0x69,0x58,0xff,0x79,0x69,0x57,0xff,0x78,0x68,0x56,0xff,0x77,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x74,0x65,0x52,0xff,0x73,0x65,0x51,0xff,0x73,0x65,0x51,0xff,0x73,0x64,0x51,0xff,0x71,0x63,0x4f,0xff,0x70,0x62,0x4f,0xff,0x70,0x62,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6f,0x61,0x4d,0xff,0x69,0x5a,0x45,0xfb,0x6e,0x61,0x4e,0xff,0x92,0x89,0x83,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xec,0xe8,0xe5,0x3b,0x99,0x85,0x73,0xed,0x90,0x79,0x66,0xff,0x94,0x7e,0x6c,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6c,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x96,0x80,0x6e,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x94,0x7e,0x6c,0xff,0x93,0x7e,0x6c,0xff,0x93,0x7e,0x6c,0xff,0x93,0x7d,0x6c,0xff,0x92,0x7c,0x6c,0xff,0x91,0x7c,0x6b,0xff,0x91,0x7b,0x6a,0xff,0x91,0x7b,0x69,0xff,0x91,0x7b,0x69,0xff,0x90,0x7a,0x69,0xff,0x8f,0x7a,0x69,0xff,0x8f,0x7a,0x69,0xff,0x8f,0x7a,0x68,0xff,0x8d,0x78,0x66,0xff,0x81,0x6e,0x5d,0xff,0x87,0x79,0x6e,0xff,0xf1,0xf0,0xf0,0x21,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x01,0xbc,0xa5,0x98,0xb8,0x93,0x7d,0x6c,0xff,0x7d,0x6b,0x59,0xff,0x81,0x6f,0x5d,0xff,0x82,0x70,0x5e,0xff,0x81,0x6f,0x5d,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x59,0xff,0x7d,0x6c,0x59,0xff,0x7d,0x6c,0x59,0xff,0x7c,0x6b,0x58,0xff,0x7b,0x6a,0x57,0xff,0x7a,0x6a,0x58,0xff,0x79,0x69,0x57,0xff,0x79,0x69,0x57,0xff,0x78,0x68,0x56,0xff,0x77,0x67,0x55,0xff,0x76,0x66,0x54,0xff,0x76,0x65,0x54,0xff,0x75,0x65,0x53,0xff,0x75,0x65,0x53,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x74,0x65,0x52,0xff,0x73,0x64,0x51,0xff,0x73,0x64,0x51,0xff,0x72,0x64,0x50,0xff,0x71,0x62,0x4f,0xff,0x70,0x62,0x4e,0xff,0x6f,0x62,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4c,0xff,0x66,0x59,0x43,0xfb,0x6a,0x5e,0x4a,0xff,0x8c,0x85,0x7e,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xeb,0xe7,0xe4,0x3d,0x96,0x81,0x6f,0xed,0x8e,0x77,0x64,0xff,0x94,0x7e,0x6c,0xff,0x94,0x7e,0x6c,0xff,0x94,0x7e,0x6c,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x94,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x97,0x80,0x6e,0xff,0x97,0x81,0x6f,0xff,0x97,0x80,0x6f,0xff,0x97,0x81,0x6f,0xff,0x97,0x81,0x6f,0xff,0x97,0x81,0x6e,0xff,0x96,0x7f,0x6c,0xff,0x93,0x7d,0x6a,0xff,0x90,0x7a,0x68,0xff,0x90,0x79,0x67,0xff,0x90,0x7a,0x68,0xff,0x8f,0x79,0x67,0xff,0x8f,0x78,0x66,0xff,0x8e,0x78,0x66,0xff,0x8e,0x77,0x65,0xff,0x8e,0x77,0x65,0xff,0x8d,0x77,0x64,0xff,0x8d,0x76,0x63,0xff,0x8d,0x76,0x63,0xff,0x8e,0x77,0x65,0xff,0x8f,0x79,0x68,0xff,0x8f,0x7a,0x69,0xff,0x8e,0x79,0x68,0xff,0x8f,0x79,0x68,0xff,0x8e,0x7a,0x68,0xff,0x83,0x70,0x5e,0xff,0x8a,0x7c,0x6e,0xff,0xf1,0xf0,0xef,0x24,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xaf,0x99,0x8a,0xb2,0x8d,0x78,0x65,0xff,0x7e,0x6c,0x5a,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x80,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5c,0xff,0x7f,0x6d,0x5a,0xff,0x7d,0x6a,0x57,0xff,0x7a,0x68,0x55,0xff,0x79,0x67,0x54,0xff,0x79,0x67,0x53,0xff,0x79,0x67,0x53,0xff,0x78,0x66,0x52,0xff,0x78,0x66,0x52,0xff,0x77,0x65,0x51,0xff,0x76,0x64,0x51,0xff,0x75,0x64,0x51,0xff,0x73,0x62,0x50,0xff,0x73,0x62,0x4f,0xff,0x74,0x64,0x51,0xff,0x76,0x66,0x54,0xff,0x75,0x65,0x54,0xff,0x74,0x64,0x52,0xff,0x74,0x64,0x52,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x74,0x66,0x52,0xff,0x73,0x65,0x51,0xff,0x73,0x64,0x51,0xff,0x72,0x63,0x50,0xff,0x71,0x63,0x4f,0xff,0x71,0x63,0x4f,0xff,0x72,0x63,0x4f,0xff,0x70,0x62,0x4d,0xff,0x6c,0x5f,0x4a,0xff,0x6a,0x5c,0x47,0xff,0x68,0x5b,0x46,0xff,0x69,0x5d,0x48,0xff,0x66,0x59,0x46,0xff,0x72,0x67,0x56,0xff,0xb9,0xb5,0xb0,0x8e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xf0,0xed,0xeb,0x2d,0x93,0x7d,0x6c,0xff,0x8b,0x74,0x61,0xff,0x90,0x7a,0x68,0xfc,0x91,0x7c,0x6a,0xff,0x91,0x7c,0x6a,0xff,0x92,0x7c,0x6b,0xff,0x94,0x7d,0x6c,0xff,0x95,0x7e,0x6c,0xff,0x94,0x7e,0x6c,0xff,0x94,0x7e,0x6c,0xff,0x95,0x7e,0x6c,0xff,0x95,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x94,0x7f,0x6d,0xff,0x95,0x7f,0x6d,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x96,0x80,0x6e,0xff,0x95,0x7f,0x6e,0xff,0x96,0x7f,0x6d,0xff,0x94,0x7e,0x6b,0xfc,0x92,0x7b,0x69,0xff,0x92,0x7c,0x6b,0xff,0x93,0x7e,0x6d,0xff,0x93,0x7e,0x6d,0xff,0x92,0x7f,0x6c,0xff,0x92,0x7e,0x6c,0xff,0x92,0x7d,0x6c,0xff,0x92,0x7c,0x6c,0xff,0x92,0x7c,0x6b,0xff,0x91,0x7c,0x6a,0xff,0x91,0x7c,0x6a,0xff,0x91,0x7c,0x6a,0xff,0x91,0x7c,0x6a,0xff,0x8f,0x7a,0x69,0xff,0x8e,0x79,0x68,0xff,0x8e,0x79,0x68,0xfc,0x8e,0x79,0x68,0xff,0x8e,0x79,0x68,0xff,0x8e,0x79,0x67,0xff,0x85,0x70,0x5d,0xff,0x8f,0x7e,0x6d,0xff,0xe8,0xe5,0xe3,0x39,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfb,0xfa,0xf9,0x0c,0x9f,0x8a,0x7a,0xdd,0x85,0x71,0x5e,0xff,0x7f,0x6e,0x5c,0xff,0x81,0x6f,0x5d,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6f,0x5c,0xff,0x7f,0x6d,0x5a,0xfb,0x7f,0x6c,0x5a,0xff,0x7f,0x6e,0x5c,0xff,0x7e,0x6e,0x5c,0xff,0x7e,0x6d,0x5c,0xff,0x7e,0x6d,0x5b,0xff,0x7e,0x6d,0x5b,0xff,0x7d,0x6c,0x5a,0xff,0x7d,0x6b,0x59,0xff,0x7c,0x6b,0x58,0xff,0x7b,0x6b,0x58,0xff,0x7a,0x6a,0x57,0xff,0x79,0x69,0x57,0xff,0x78,0x69,0x57,0xff,0x77,0x67,0x55,0xff,0x76,0x66,0x54,0xfb,0x75,0x66,0x54,0xff,0x74,0x65,0x53,0xff,0x74,0x66,0x52,0xff,0x75,0x66,0x53,0xff,0x74,0x65,0x52,0xff,0x73,0x65,0x51,0xff,0x73,0x65,0x51,0xff,0x72,0x64,0x50,0xff,0x71,0x63,0x4f,0xff,0x71,0x63,0x4f,0xff,0x70,0x63,0x4f,0xff,0x70,0x63,0x4f,0xff,0x6d,0x5f,0x4b,0xfb,0x6d,0x5f,0x4c,0xff,0x6f,0x62,0x4f,0xff,0x6e,0x62,0x50,0xff,0x70,0x64,0x54,0xff,0x7a,0x6f,0x64,0xff,0x8d,0x86,0x80,0xff,0xf8,0xf7,0xf7,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xfb,0xfa,0x0b,0x9e,0x8a,0x7b,0xf6,0x8f,0x7a,0x68,0xff,0x8c,0x76,0x64,0xff,0x8f,0x79,0x69,0xff,0x90,0x7b,0x69,0xff,0x8f,0x79,0x67,0xff,0x8f,0x78,0x66,0xff,0x91,0x7c,0x69,0xfc,0x93,0x7d,0x6c,0xff,0x93,0x7d,0x6c,0xff,0x93,0x7d,0x6c,0xff,0x93,0x7e,0x6c,0xff,0x94,0x7e,0x6d,0xff,0x95,0x7f,0x6e,0xff,0x8f,0x7c,0x6a,0xff,0x83,0x72,0x5f,0xff,0x81,0x6f,0x5c,0xff,0x82,0x70,0x5c,0xff,0x81,0x6f,0x5c,0xff,0x7d,0x6b,0x5b,0xff,0x79,0x67,0x5d,0xff,0x84,0x74,0x6e,0xff,0x9a,0x8c,0x84,0xff,0xc3,0xb9,0xb3,0x93,0xdc,0xd6,0xd2,0x56,0xd8,0xd2,0xcc,0x5b,0xd8,0xd2,0xcc,0x5b,0xd6,0xcf,0xca,0x62,0xd6,0xcf,0xca,0x62,0xd8,0xd1,0xcd,0x5a,0xd8,0xd1,0xcb,0x5c,0xd5,0xce,0xc8,0x64,0xdc,0xd6,0xd1,0x53,0xc5,0xba,0xb4,0x90,0xa4,0x95,0x8b,0xff,0x93,0x80,0x71,0xff,0x8b,0x76,0x64,0xfc,0x8d,0x79,0x67,0xff,0x8d,0x79,0x67,0xff,0x8c,0x78,0x67,0xff,0x85,0x70,0x5c,0xff,0x92,0x7f,0x6d,0xff,0xd0,0xca,0xc5,0x73,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xdd,0xd7,0xd2,0x4d,0x90,0x7e,0x6d,0xff,0x7c,0x68,0x55,0xff,0x80,0x6f,0x5d,0xfb,0x81,0x6f,0x5d,0xff,0x80,0x6e,0x5c,0xff,0x81,0x6e,0x5b,0xff,0x7a,0x69,0x59,0xfb,0x75,0x68,0x5f,0xff,0x80,0x73,0x6d,0xff,0x91,0x85,0x7d,0xff,0xa0,0x95,0x8c,0xff,0xb8,0xaf,0xa7,0x9f,0xc2,0xbb,0xb4,0x79,0xbe,0xb6,0xaf,0x85,0xbf,0xb7,0xb0,0x83,0xbe,0xb7,0xaf,0x83,0xbe,0xb7,0xb0,0x83,0xbe,0xb7,0xaf,0x83,0xbf,0xb9,0xb0,0x7e,0xbc,0xb4,0xad,0x8b,0xa7,0x9e,0x96,0xdf,0x91,0x84,0x78,0xff,0x80,0x6e,0x5c,0xff,0x7e,0x6c,0x59,0xff,0x7f,0x6e,0x5c,0xff,0x7e,0x6d,0x5b,0xff,0x7a,0x6a,0x58,0xff,0x76,0x66,0x53,0xff,0x73,0x64,0x51,0xff,0x73,0x64,0x51,0xff,0x72,0x64,0x50,0xff,0x71,0x63,0x4f,0xff,0x72,0x64,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x64,0x57,0x4a,0xf8,0x67,0x5b,0x54,0xff,0x7b,0x72,0x6c,0xff,0x94,0x8c,0x86,0xff,0xc2,0xbe,0xb9,0x60,0xe8,0xe6,0xe3,0x16,0xed,0xec,0xeb,0x0d,0xf5,0xf5,0xf5,0x08,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xf5,0xf3,0xf2,0x16,0xc2,0xb8,0xae,0xa1,0xa8,0x98,0x8a,0xff,0xa3,0x91,0x84,0xff,0xa1,0x8f,0x81,0xf9,0x9e,0x8d,0x7e,0xff,0x98,0x87,0x78,0xff,0x90,0x7d,0x6d,0xff,0x90,0x7c,0x6b,0xf9,0x92,0x7d,0x6c,0xff,0x91,0x7c,0x6b,0xff,0x91,0x7c,0x6b,0xff,0x93,0x7d,0x6c,0xff,0x95,0x7f,0x6e,0xff,0x8b,0x78,0x66,0xff,0x75,0x67,0x54,0xff,0x6e,0x60,0x4c,0xff,0x6f,0x62,0x4d,0xff,0x6c,0x5f,0x4a,0xff,0x67,0x5a,0x4c,0xff,0x76,0x6b,0x6a,0xff,0xb3,0xad,0xb0,0x94,0xf3,0xf2,0xf2,0x1d,0xfe,0xfe,0xfe,0x04,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x03,0xff,0xff,0xff,0x03,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x03,0xff,0xff,0xff,0x02,0xfe,0xfe,0xfe,0x05,0xfa,0xfa,0xf9,0x11,0xbb,0xb0,0xa6,0x71,0x88,0x73,0x61,0xff,0x8b,0x76,0x64,0xfc,0x8d,0x79,0x67,0xff,0x8c,0x77,0x65,0xfc,0x87,0x72,0x60,0xff,0x93,0x82,0x76,0xff,0xe0,0xdc,0xd9,0x4b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf8,0xf7,0xf6,0x0d,0x95,0x85,0x77,0xf8,0x82,0x70,0x5e,0xff,0x7e,0x6c,0x59,0xfb,0x81,0x6f,0x5d,0xff,0x81,0x6e,0x5c,0xff,0x81,0x6e,0x5a,0xf7,0x7a,0x6b,0x61,0xff,0x83,0x7b,0x7d,0xff,0xd0,0xcd,0xce,0x2b,0xfb,0xfb,0xfb,0x03,0xf9,0xf9,0xf8,0x06,0xfe,0xfe,0xfe,0x03,0xff,0xff,0xff,0x02,0xfe,0xfe,0xfe,0x02,0xfe,0xfe,0xfe,0x02,0xfe,0xfe,0xfe,0x02,0xfe,0xfe,0xfe,0x02,0xfe,0xfe,0xfe,0x02,0xfe,0xfe,0xff,0x02,0xfe,0xfe,0xfe,0x02,0xfe,0xfe,0xfe,0x02,0xd1,0xca,0xc6,0x37,0x91,0x7e,0x6e,0xff,0x86,0x71,0x5e,0xff,0x8b,0x78,0x66,0xff,0x88,0x74,0x63,0xff,0x81,0x6e,0x5d,0xff,0x77,0x67,0x54,0xff,0x72,0x64,0x50,0xff,0x72,0x64,0x50,0xff,0x72,0x64,0x50,0xff,0x71,0x63,0x4f,0xff,0x73,0x65,0x4f,0xff,0x6c,0x5e,0x4c,0xff,0x5f,0x53,0x50,0xff,0x80,0x78,0x7c,0xff,0xd0,0xce,0xd0,0x32,0xfc,0xfc,0xfc,0x03,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x05,0xfb,0xfb,0xfa,0x0c,0xfb,0xfa,0xfa,0x0b,0xfc,0xfb,0xfb,0x07,0xf7,0xf6,0xf5,0x19,0xc6,0xbe,0xb8,0x90,0x9d,0x8d,0x81,0xff,0x93,0x7e,0x6d,0xff,0x90,0x7a,0x68,0xf9,0x91,0x7b,0x6a,0xff,0x91,0x7b,0x6a,0xff,0x92,0x7c,0x6b,0xff,0x93,0x7e,0x6c,0xff,0x8c,0x77,0x65,0xff,0x79,0x69,0x56,0xff,0x6d,0x60,0x4c,0xff,0x6c,0x5f,0x4a,0xff,0x68,0x5b,0x45,0xff,0x68,0x5c,0x4a,0xff,0x95,0x8d,0x8b,0xff,0xf4,0xf4,0xf5,0x23,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xd5,0xce,0xc8,0x43,0x91,0x7e,0x6d,0xff,0x89,0x74,0x62,0xf6,0x8c,0x78,0x65,0xff,0x88,0x73,0x60,0xff,0x8b,0x79,0x6c,0xff,0xa4,0x9b,0x97,0xb2,0xfe,0xfe,0xfe,0x05,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xdf,0xdc,0xd8,0x3b,0x90,0x81,0x72,0xff,0x7a,0x68,0x55,0xff,0x7f,0x6d,0x5a,0xff,0x80,0x6d,0x5a,0xf8,0x7e,0x6e,0x5e,0xff,0x89,0x7e,0x79,0xff,0xcf,0xcd,0xcf,0x30,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xeb,0xe7,0xe4,0x14,0x99,0x86,0x76,0xff,0x88,0x72,0x5f,0xff,0x90,0x7b,0x69,0xff,0x8b,0x77,0x65,0xff,0x81,0x6f,0x5c,0xff,0x76,0x67,0x54,0xff,0x72,0x64,0x50,0xff,0x72,0x64,0x50,0xff,0x71,0x63,0x4f,0xff,0x70,0x62,0x4f,0xff,0x71,0x63,0x4e,0xff,0x6a,0x5c,0x4c,0xff,0x73,0x6b,0x6b,0xff,0xc3,0xc0,0xc4,0x3e,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xda,0xd4,0xcf,0x50,0x9d,0x8b,0x7b,0xff,0x8a,0x73,0x60,0xfc,0x91,0x7b,0x6a,0xff,0x90,0x7a,0x69,0xff,0x91,0x7b,0x69,0xff,0x92,0x7c,0x6a,0xff,0x8e,0x78,0x66,0xff,0x7e,0x6d,0x5a,0xff,0x70,0x62,0x4d,0xff,0x6c,0x5f,0x4a,0xff,0x69,0x5c,0x45,0xff,0x6b,0x5e,0x4a,0xff,0x92,0x8a,0x86,0xff,0xee,0xed,0xee,0x20,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xe9,0xe5,0xe1,0x2f,0xa3,0x93,0x85,0xff,0x8a,0x75,0x63,0xff,0x87,0x73,0x60,0xf9,0x80,0x6d,0x5a,0xff,0x8d,0x80,0x73,0xff,0xed,0xec,0xed,0x29,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x02,0xcc,0xc4,0xbd,0x78,0xac,0x9d,0x8f,0xed,0xdf,0xd9,0xd4,0x40,0xff,0xff,0xff,0x01,0xfe,0xfe,0xfe,0x02,0xfe,0xfe,0xfe,0x02,0xff,0xff,0xff,0x01,0xf6,0xf2,0xf0,0x20,0xc7,0xb8,0xae,0x9e,0xef,0xeb,0xe8,0x23,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x02,0xa3,0x95,0x88,0xd9,0x80,0x6d,0x5a,0xff,0x7b,0x68,0x54,0xfb,0x7b,0x68,0x56,0xff,0x85,0x78,0x6d,0xff,0xce,0xc9,0xc9,0x32,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xe7,0xe2,0xdf,0x18,0x98,0x85,0x73,0xff,0x8a,0x74,0x62,0xff,0x92,0x7c,0x6b,0xff,0x8b,0x77,0x65,0xff,0x7c,0x6c,0x59,0xff,0x74,0x65,0x52,0xff,0x72,0x64,0x50,0xff,0x71,0x64,0x50,0xff,0x70,0x63,0x4f,0xff,0x70,0x63,0x4e,0xff,0x6e,0x60,0x4b,0xff,0x69,0x5d,0x4e,0xfb,0x86,0x80,0x80,0xff,0xe0,0xdf,0xe2,0x1e,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xb6,0xa8,0x9d,0x7c,0x89,0x72,0x61,0xff,0x91,0x7b,0x6a,0xf6,0x90,0x7a,0x69,0xff,0x90,0x7a,0x69,0xff,0x91,0x7b,0x6a,0xff,0x8f,0x79,0x68,0xff,0x83,0x70,0x5e,0xff,0x72,0x63,0x4f,0xff,0x6b,0x5e,0x4a,0xff,0x6a,0x5d,0x47,0xff,0x6b,0x5e,0x48,0xff,0x84,0x7a,0x72,0xff,0xe2,0xe0,0xe1,0x2a,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xdd,0xd7,0xd2,0x46,0x94,0x82,0x72,0xff,0x84,0x6e,0x5c,0xff,0x7e,0x6c,0x59,0xff,0x8c,0x7f,0x70,0xff,0xd9,0xd4,0xd1,0x58,0xff,0xff,0xff,0x06,0xea,0xe6,0xe3,0x2e,0x95,0x85,0x75,0xff,0x8d,0x7a,0x69,0xff,0x9c,0x8a,0x7c,0xff,0xb2,0xa3,0x97,0xbc,0xb4,0xa5,0x96,0xbe,0xb5,0xa6,0x99,0xc1,0xba,0xa9,0x9c,0xbc,0xa9,0x94,0x84,0xfc,0x95,0x80,0x6f,0xff,0x96,0x86,0x77,0xff,0xe3,0xe0,0xdd,0x37,0xff,0xff,0xff,0x02,0xfc,0xfb,0xfa,0x07,0xaf,0x9c,0x8d,0xd9,0x8d,0x77,0x65,0xff,0x77,0x64,0x52,0xff,0x87,0x78,0x6a,0xff,0xc9,0xc3,0xbf,0x46,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xd2,0xca,0xc2,0x46,0x95,0x81,0x6f,0xff,0x8d,0x78,0x65,0xff,0x93,0x7d,0x6c,0xff,0x8b,0x77,0x64,0xff,0x78,0x69,0x54,0xff,0x72,0x63,0x50,0xff,0x72,0x64,0x50,0xff,0x71,0x63,0x50,0xff,0x71,0x63,0x4f,0xff,0x70,0x63,0x4f,0xff,0x6c,0x5e,0x4a,0xff,0x6b,0x5e,0x51,0xff,0x96,0x90,0x8f,0xff,0xf2,0xf2,0xf3,0x13,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xc7,0xbc,0xb4,0x48,0x8c,0x76,0x65,0xff,0x90,0x7b,0x6a,0xf3,0x8f,0x7a,0x69,0xff,0x8f,0x7a,0x69,0xff,0x8f,0x7a,0x69,0xff,0x8f,0x79,0x69,0xff,0x87,0x74,0x62,0xff,0x74,0x65,0x50,0xff,0x6a,0x5e,0x49,0xff,0x6b,0x5e,0x48,0xff,0x6b,0x5e,0x49,0xff,0x79,0x6f,0x62,0xff,0xe1,0xdf,0xdd,0x25,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x02,0xc9,0xc0,0xb8,0x68,0x87,0x74,0x62,0xff,0x7d,0x6a,0x57,0xff,0x8a,0x78,0x67,0xff,0x9e,0x8d,0x7f,0xff,0xa7,0x97,0x8a,0xe8,0x95,0x84,0x74,0xfc,0x80,0x6d,0x5a,0xff,0x80,0x6e,0x5a,0xf9,0x85,0x73,0x61,0xff,0x8d,0x79,0x68,0xff,0x90,0x7c,0x69,0xff,0x91,0x7d,0x6b,0xff,0x91,0x7d,0x6b,0xff,0x89,0x75,0x62,0xff,0x7c,0x69,0x56,0xff,0x7b,0x68,0x56,0xff,0x8f,0x81,0x71,0xff,0xa7,0x9b,0x8e,0xda,0xac,0x9b,0x8c,0xd9,0xa3,0x8c,0x7c,0xf8,0x8a,0x74,0x61,0xff,0x7d,0x6c,0x5b,0xff,0xb9,0xb1,0xaa,0x80,0xfe,0xfe,0xfe,0x08,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xee,0xea,0xe8,0x15,0xaa,0x99,0x8a,0xff,0x93,0x7d,0x6b,0xff,0x91,0x7b,0x69,0xff,0x94,0x7d,0x6c,0xff,0x89,0x75,0x62,0xff,0x75,0x66,0x52,0xff,0x71,0x63,0x4f,0xff,0x72,0x64,0x51,0xff,0x71,0x63,0x50,0xff,0x71,0x63,0x4f,0xff,0x70,0x63,0x4f,0xff,0x69,0x5b,0x49,0xfb,0x74,0x69,0x5f,0xff,0xc0,0xbc,0xbb,0x54,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xc9,0xbf,0xb7,0x55,0x94,0x81,0x71,0xff,0x8d,0x79,0x67,0xf3,0x8d,0x79,0x67,0xff,0x8e,0x79,0x68,0xff,0x8e,0x79,0x68,0xff,0x8f,0x7a,0x69,0xff,0x8b,0x77,0x65,0xff,0x75,0x67,0x53,0xff,0x6a,0x5e,0x49,0xff,0x6c,0x5f,0x4a,0xff,0x6b,0x5e,0x49,0xff,0x6f,0x63,0x53,0xff,0xda,0xd7,0xd3,0x2e,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x03,0xb9,0xad,0xa3,0x8d,0x87,0x74,0x63,0xff,0x86,0x72,0x60,0xe8,0x8c,0x78,0x65,0xff,0x8c,0x79,0x68,0xff,0x85,0x73,0x61,0xff,0x83,0x71,0x5f,0xfc,0x84,0x72,0x61,0xfc,0x83,0x71,0x5e,0xff,0x81,0x6e,0x5c,0xff,0x82,0x6f,0x5c,0xff,0x81,0x6f,0x5c,0xff,0x80,0x6d,0x5b,0xff,0x7f,0x6e,0x5b,0xff,0x80,0x6e,0x5c,0xfc,0x7e,0x6b,0x59,0xfc,0x7f,0x6c,0x5b,0xff,0x87,0x76,0x64,0xff,0x8c,0x79,0x67,0xff,0x86,0x72,0x5f,0xef,0x86,0x75,0x64,0xff,0xbb,0xb3,0xaa,0x6d,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xe5,0xe1,0xdc,0x13,0x98,0x83,0x71,0xff,0x93,0x7d,0x6a,0xff,0x95,0x7f,0x6e,0xff,0x92,0x7c,0x6b,0xff,0x85,0x72,0x5f,0xff,0x74,0x66,0x52,0xff,0x71,0x63,0x4f,0xff,0x71,0x64,0x50,0xff,0x70,0x63,0x4f,0xff,0x70,0x62,0x4f,0xff,0x70,0x62,0x4f,0xff,0x67,0x5a,0x48,0xf8,0x7d,0x74,0x6b,0xff,0xde,0xdb,0xdb,0x23,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xe7,0xe3,0xdf,0x3e,0xa4,0x95,0x87,0xff,0x87,0x74,0x61,0xff,0x8b,0x78,0x66,0xff,0x8e,0x7a,0x68,0xff,0x8d,0x79,0x67,0xff,0x8f,0x7a,0x69,0xff,0x8c,0x7a,0x66,0xff,0x7a,0x6b,0x58,0xff,0x6d,0x60,0x4c,0xff,0x6c,0x60,0x4a,0xff,0x6a,0x5d,0x48,0xff,0x68,0x5a,0x46,0xff,0xaa,0xa3,0x9a,0xa1,0xff,0xff,0xff,0x08,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfb,0xfb,0xfa,0x17,0xae,0xa1,0x94,0xee,0x8b,0x78,0x67,0xff,0x80,0x6c,0x59,0xfc,0x83,0x71,0x5d,0xf3,0x83,0x72,0x5f,0xff,0x84,0x73,0x62,0xff,0x84,0x72,0x61,0xff,0x84,0x72,0x60,0xff,0x83,0x72,0x60,0xff,0x82,0x71,0x5f,0xff,0x81,0x70,0x5e,0xff,0x81,0x6f,0x5d,0xff,0x80,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5e,0xff,0x7f,0x6c,0x5a,0xff,0x7d,0x6a,0x57,0xf5,0x7a,0x68,0x53,0xf8,0x83,0x73,0x62,0xff,0xab,0x9f,0x96,0xd9,0xfe,0xfe,0xfe,0x0b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xd7,0xd0,0xc9,0x2a,0x92,0x7b,0x69,0xff,0x94,0x7e,0x6c,0xff,0x97,0x81,0x6f,0xff,0x8e,0x7a,0x68,0xff,0x80,0x6e,0x5b,0xff,0x73,0x65,0x51,0xff,0x70,0x63,0x4f,0xff,0x70,0x63,0x4f,0xff,0x70,0x62,0x4e,0xff,0x70,0x62,0x4f,0xff,0x6f,0x61,0x4f,0xff,0x69,0x5b,0x48,0xfb,0x76,0x6b,0x5b,0xff,0xb4,0xaf,0xa7,0x6a,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xee,0xeb,0xe9,0x30,0xa1,0x92,0x82,0xff,0x87,0x74,0x61,0xff,0x8b,0x78,0x65,0xfc,0x8d,0x79,0x67,0xff,0x8c,0x78,0x66,0xff,0x8e,0x7a,0x67,0xff,0x8c,0x79,0x67,0xff,0x81,0x70,0x5d,0xff,0x73,0x65,0x51,0xff,0x6c,0x5f,0x4a,0xff,0x6a,0x5e,0x48,0xff,0x67,0x59,0x44,0xff,0x86,0x7b,0x6e,0xff,0xe0,0xde,0xdc,0x3d,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf6,0xf4,0xf3,0x20,0xc2,0xb9,0xb0,0x6c,0x92,0x82,0x72,0xff,0x83,0x71,0x5f,0xff,0x79,0x65,0x52,0xfc,0x80,0x6d,0x5b,0xf9,0x84,0x72,0x60,0xff,0x84,0x72,0x61,0xff,0x83,0x71,0x5f,0xff,0x82,0x70,0x5e,0xff,0x82,0x70,0x5e,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5c,0xff,0x80,0x6c,0x58,0xf8,0x7c,0x69,0x57,0xff,0x81,0x71,0x62,0xff,0xb8,0xb0,0xa7,0x76,0xf4,0xf3,0xf2,0x1b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xf9,0xf8,0x07,0xb0,0x9e,0x90,0xff,0x94,0x7d,0x6b,0xff,0x97,0x80,0x6e,0xff,0x99,0x82,0x70,0xff,0x8a,0x76,0x64,0xff,0x78,0x68,0x54,0xff,0x71,0x63,0x4f,0xff,0x70,0x63,0x50,0xff,0x70,0x63,0x4f,0xff,0x70,0x62,0x4e,0xff,0x6e,0x62,0x4f,0xff,0x6e,0x61,0x4f,0xff,0x6d,0x5f,0x4c,0xff,0x6d,0x60,0x4b,0xfb,0x82,0x77,0x66,0xff,0xb3,0xad,0xa2,0x53,0xf1,0xef,0xed,0x09,0xfd,0xfd,0xfd,0x03,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x06,0xed,0xeb,0xe8,0x29,0xb1,0xa4,0x98,0x90,0x8f,0x7b,0x6a,0xff,0x8b,0x78,0x65,0xf9,0x8b,0x77,0x65,0xff,0x8c,0x78,0x66,0xff,0x8b,0x77,0x65,0xff,0x8c,0x78,0x66,0xff,0x8d,0x78,0x66,0xff,0x88,0x75,0x63,0xff,0x79,0x69,0x56,0xff,0x6b,0x5f,0x4a,0xff,0x6b,0x5e,0x49,0xff,0x6a,0x5d,0x49,0xff,0x6f,0x62,0x52,0xff,0xa1,0x99,0x8f,0xed,0xfb,0xfb,0xfa,0x11,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xe5,0xe2,0xde,0x31,0xad,0xa1,0x95,0xa4,0x94,0x85,0x76,0xff,0x8e,0x7d,0x6d,0xff,0x84,0x72,0x5f,0xfc,0x82,0x70,0x5e,0xfc,0x82,0x70,0x5e,0xff,0x82,0x70,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x7f,0x6d,0x5b,0xff,0x7d,0x6b,0x5a,0xf9,0x7c,0x6b,0x5b,0xff,0x88,0x7a,0x6d,0xff,0xcb,0xc6,0xc1,0x48,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xda,0xd1,0xca,0x37,0xa0,0x8a,0x79,0xff,0x97,0x80,0x6f,0xff,0x99,0x82,0x70,0xff,0x98,0x82,0x70,0xff,0x84,0x72,0x5f,0xff,0x70,0x62,0x4f,0xff,0x70,0x62,0x4e,0xff,0x71,0x63,0x50,0xff,0x70,0x63,0x4f,0xff,0x6e,0x62,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4c,0xfb,0x6b,0x5f,0x4a,0xff,0x6a,0x5d,0x47,0xff,0x7b,0x70,0x5d,0xff,0xb2,0xab,0xa1,0x84,0xec,0xeb,0xe9,0x18,0xfe,0xfe,0xfe,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xf9,0xf9,0x13,0xb7,0xab,0xa1,0x90,0x9a,0x89,0x7a,0xff,0x8b,0x78,0x66,0xff,0x8a,0x76,0x64,0xfc,0x8b,0x77,0x65,0xff,0x8b,0x77,0x65,0xff,0x8b,0x77,0x65,0xff,0x8b,0x77,0x65,0xff,0x8b,0x77,0x65,0xff,0x8c,0x78,0x66,0xff,0x8c,0x78,0x66,0xff,0x7e,0x6d,0x5a,0xff,0x6d,0x60,0x4c,0xff,0x6c,0x5f,0x4b,0xff,0x6d,0x60,0x4c,0xff,0x68,0x5a,0x47,0xff,0x87,0x7b,0x6c,0xff,0xf6,0xf5,0xf4,0x13,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x09,0xe9,0xe6,0xe3,0x35,0xc5,0xbc,0xb4,0x65,0x8a,0x79,0x68,0xff,0x7f,0x6d,0x5b,0xff,0x81,0x6f,0x5c,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x82,0x6f,0x5d,0xff,0x7e,0x6d,0x5b,0xff,0x79,0x68,0x58,0xf9,0x76,0x68,0x5e,0xff,0x86,0x7c,0x78,0xff,0xcd,0xc9,0xc8,0x4b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfb,0xfa,0xf9,0x06,0xaf,0x9c,0x8d,0xff,0x97,0x7f,0x6c,0xff,0x9a,0x83,0x70,0xff,0x9a,0x83,0x71,0xff,0x92,0x7c,0x6b,0xff,0x7e,0x6d,0x5b,0xff,0x70,0x61,0x4e,0xff,0x6f,0x62,0x4e,0xff,0x71,0x63,0x4f,0xff,0x70,0x61,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6d,0x61,0x4d,0xff,0x6a,0x5e,0x49,0xfb,0x68,0x5a,0x44,0xff,0x69,0x5c,0x47,0xff,0x74,0x67,0x54,0xff,0x86,0x7b,0x6a,0xff,0xf3,0xf2,0xf1,0x0a,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x03,0xd0,0xc9,0xc2,0x57,0x9f,0x8f,0x81,0xff,0x8d,0x7a,0x68,0xff,0x83,0x6e,0x5b,0xff,0x87,0x73,0x60,0xff,0x8b,0x77,0x65,0xff,0x8b,0x77,0x65,0xff,0x8b,0x77,0x65,0xff,0x8b,0x77,0x65,0xff,0x8b,0x77,0x65,0xff,0x8a,0x76,0x64,0xff,0x8b,0x77,0x65,0xff,0x8c,0x78,0x66,0xff,0x84,0x71,0x5f,0xff,0x75,0x66,0x53,0xff,0x6d,0x61,0x4d,0xff,0x6d,0x60,0x4d,0xff,0x6a,0x5c,0x47,0xff,0x7a,0x6d,0x5a,0xff,0xc1,0xbb,0xb3,0x64,0xfe,0xfe,0xfe,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfc,0xfb,0xfb,0x0a,0x99,0x8a,0x7c,0xff,0x82,0x70,0x5e,0xff,0x7f,0x6d,0x5a,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x82,0x6f,0x5c,0xff,0x7a,0x69,0x58,0xfc,0x71,0x63,0x5a,0xff,0x7b,0x72,0x71,0xff,0xcd,0xcb,0xcd,0x41,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x00,0xce,0xc1,0xb7,0x4d,0xa1,0x8a,0x79,0xff,0x99,0x81,0x6e,0xff,0x9f,0x87,0x74,0xff,0x9b,0x84,0x71,0xff,0x87,0x74,0x61,0xff,0x75,0x66,0x53,0xff,0x70,0x62,0x4e,0xff,0x70,0x62,0x4e,0xff,0x70,0x62,0x4f,0xff,0x6f,0x62,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6d,0x60,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x62,0x4d,0xff,0x6d,0x61,0x4d,0xff,0x6d,0x60,0x4c,0xff,0x6e,0x61,0x4c,0xff,0x6c,0x5f,0x4a,0xff,0x64,0x56,0x40,0xff,0x65,0x57,0x41,0xff,0xb8,0xb2,0xa8,0x5b,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfd,0xfd,0x05,0xb8,0xad,0xa3,0x86,0x8c,0x7a,0x69,0xff,0x7f,0x6b,0x58,0xff,0x87,0x73,0x61,0xff,0x89,0x76,0x64,0xff,0x89,0x76,0x64,0xff,0x89,0x75,0x63,0xff,0x8a,0x75,0x63,0xff,0x89,0x75,0x63,0xff,0x89,0x75,0x63,0xff,0x8a,0x75,0x63,0xff,0x89,0x75,0x63,0xff,0x8a,0x76,0x64,0xff,0x8a,0x76,0x64,0xff,0x88,0x75,0x63,0xff,0x7e,0x6d,0x5b,0xff,0x70,0x63,0x50,0xff,0x6e,0x61,0x4e,0xff,0x6f,0x61,0x4d,0xfc,0x73,0x64,0x51,0xff,0x8a,0x7e,0x6e,0xff,0xf6,0xf5,0xf3,0x14,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xfa,0xf9,0xf8,0x11,0xa2,0x94,0x87,0xff,0x83,0x71,0x5f,0xff,0x7e,0x6c,0x59,0xff,0x81,0x6f,0x5d,0xff,0x80,0x6e,0x5c,0xff,0x81,0x6e,0x5b,0xff,0x76,0x65,0x55,0xff,0x76,0x69,0x64,0xff,0xa4,0x9e,0xa0,0xc4,0xfe,0xfe,0xfe,0x04,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf8,0xf7,0xf5,0x06,0xa8,0x92,0x81,0xff,0x9e,0x85,0x73,0xff,0x9e,0x86,0x74,0xfb,0xa0,0x88,0x76,0xff,0x97,0x81,0x6e,0xff,0x7d,0x6c,0x58,0xff,0x6f,0x61,0x4d,0xff,0x70,0x62,0x4f,0xff,0x70,0x62,0x4f,0xff,0x6f,0x62,0x4e,0xff,0x6e,0x62,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x60,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6d,0x60,0x4c,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x61,0x4c,0xff,0x68,0x5a,0x45,0xfb,0x69,0x5c,0x47,0xff,0x9a,0x92,0x85,0xff,0xf8,0xf8,0xf7,0x09,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xee,0xeb,0xe9,0x1b,0x8c,0x7a,0x69,0xff,0x82,0x6f,0x5d,0xff,0x85,0x72,0x60,0xfc,0x86,0x73,0x61,0xff,0x86,0x74,0x62,0xff,0x87,0x75,0x63,0xff,0x88,0x75,0x63,0xff,0x88,0x75,0x63,0xff,0x87,0x75,0x63,0xff,0x88,0x75,0x63,0xff,0x88,0x75,0x63,0xff,0x88,0x75,0x63,0xff,0x88,0x75,0x63,0xff,0x88,0x75,0x63,0xff,0x89,0x76,0x64,0xff,0x83,0x72,0x60,0xff,0x76,0x67,0x55,0xff,0x70,0x63,0x50,0xff,0x73,0x64,0x50,0xff,0x70,0x61,0x4d,0xff,0x74,0x65,0x52,0xff,0xb4,0xac,0xa3,0x7b,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xf9,0xf9,0xf8,0x12,0xa0,0x92,0x84,0xff,0x82,0x70,0x5e,0xff,0x7d,0x6c,0x59,0xff,0x7f,0x6e,0x5b,0xff,0x7f,0x6e,0x5b,0xff,0x7f,0x6d,0x5a,0xff,0x77,0x66,0x56,0xff,0x7d,0x71,0x6a,0xff,0xea,0xe8,0xe8,0x27,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x00,0xcc,0xbf,0xb6,0x59,0xa1,0x89,0x77,0xff,0x9e,0x85,0x72,0xff,0xa2,0x8a,0x78,0xff,0x9d,0x85,0x74,0xff,0x8b,0x77,0x64,0xff,0x76,0x66,0x52,0xff,0x6e,0x61,0x4c,0xff,0x70,0x62,0x4f,0xff,0x6f,0x62,0x4f,0xff,0x6e,0x62,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4e,0xff,0x6d,0x61,0x4d,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x69,0x5c,0x46,0xff,0x6d,0x61,0x4c,0xff,0xa7,0xa0,0x98,0xd1,0xfd,0xfd,0xfd,0x05,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf3,0xf1,0xef,0x17,0x94,0x84,0x74,0xff,0x86,0x74,0x62,0xff,0x85,0x73,0x61,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x87,0x75,0x63,0xff,0x86,0x74,0x62,0xff,0x7f,0x6f,0x5b,0xff,0x75,0x67,0x53,0xff,0x72,0x64,0x51,0xff,0x73,0x64,0x51,0xfc,0x72,0x63,0x4f,0xff,0x81,0x73,0x63,0xff,0xba,0xb2,0xa9,0x7d,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xf9,0xf8,0xf8,0x12,0x9e,0x91,0x83,0xff,0x81,0x6f,0x5e,0xff,0x7d,0x6a,0x58,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x59,0xff,0x79,0x69,0x59,0xff,0x80,0x73,0x6b,0xff,0xf8,0xf8,0xf8,0x0c,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xd9,0xcf,0xc8,0x4a,0xaa,0x91,0x81,0xff,0xa2,0x88,0x76,0xff,0xa2,0x8a,0x78,0xfb,0xa4,0x8c,0x7a,0xff,0x95,0x7f,0x6d,0xff,0x7a,0x6a,0x57,0xff,0x70,0x62,0x4e,0xff,0x6f,0x62,0x4e,0xff,0x70,0x62,0x4f,0xff,0x6f,0x61,0x4e,0xff,0x6e,0x60,0x4e,0xff,0x6e,0x60,0x4e,0xff,0x6e,0x61,0x4d,0xff,0x6d,0x61,0x4c,0xff,0x6c,0x60,0x4b,0xff,0x6b,0x5f,0x4a,0xff,0x6c,0x5f,0x4a,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4c,0xff,0x6d,0x60,0x4a,0xff,0x6a,0x5c,0x47,0xff,0x72,0x66,0x58,0xff,0xca,0xc6,0xc3,0x58,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x07,0xc8,0xc0,0xb8,0x84,0x8a,0x78,0x67,0xff,0x80,0x6d,0x5b,0xff,0x85,0x73,0x61,0xff,0x85,0x73,0x61,0xff,0x85,0x73,0x61,0xff,0x85,0x73,0x61,0xff,0x85,0x73,0x61,0xff,0x85,0x73,0x61,0xff,0x85,0x73,0x61,0xff,0x85,0x73,0x61,0xff,0x85,0x73,0x61,0xff,0x85,0x73,0x61,0xff,0x85,0x73,0x61,0xff,0x85,0x73,0x61,0xff,0x86,0x74,0x62,0xff,0x85,0x73,0x60,0xff,0x7b,0x6b,0x58,0xff,0x74,0x65,0x52,0xff,0x76,0x67,0x54,0xff,0x76,0x66,0x54,0xf9,0x70,0x5f,0x4c,0xff,0x8b,0x7e,0x6e,0xff,0xc5,0xbf,0xb7,0x79,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xf9,0xf8,0xf8,0x12,0x9f,0x91,0x83,0xff,0x81,0x6f,0x5d,0xff,0x7c,0x6a,0x58,0xff,0x7e,0x6c,0x5b,0xff,0x7f,0x6c,0x5b,0xff,0x7e,0x6c,0x59,0xff,0x79,0x69,0x59,0xff,0x80,0x74,0x6c,0xff,0xf5,0xf4,0xf4,0x11,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xe7,0xdf,0xdb,0x35,0xb2,0x9b,0x8c,0xff,0xa0,0x84,0x72,0xff,0xa6,0x8b,0x7a,0xfb,0xa8,0x8e,0x7d,0xff,0x9e,0x86,0x75,0xff,0x86,0x74,0x61,0xff,0x70,0x63,0x50,0xff,0x6d,0x61,0x4e,0xff,0x70,0x62,0x4f,0xff,0x6f,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6d,0x60,0x4e,0xff,0x6e,0x60,0x4e,0xff,0x6d,0x60,0x4a,0xff,0x69,0x5c,0x45,0xfb,0x65,0x58,0x42,0xff,0x66,0x58,0x42,0xff,0x67,0x5a,0x43,0xff,0x6b,0x5d,0x48,0xff,0x6d,0x60,0x4a,0xff,0x6a,0x5c,0x45,0xfb,0x6a,0x5c,0x48,0xff,0x7e,0x74,0x6d,0xff,0xea,0xe8,0xe9,0x15,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xed,0xea,0xe7,0x27,0x92,0x81,0x71,0xff,0x7f,0x6c,0x59,0xff,0x86,0x74,0x62,0xff,0x86,0x74,0x62,0xff,0x85,0x74,0x61,0xff,0x85,0x73,0x60,0xff,0x84,0x72,0x5f,0xff,0x84,0x72,0x5e,0xff,0x84,0x70,0x5d,0xff,0x84,0x72,0x5f,0xff,0x85,0x73,0x62,0xff,0x85,0x73,0x61,0xff,0x85,0x73,0x61,0xff,0x85,0x73,0x61,0xff,0x86,0x73,0x62,0xff,0x85,0x73,0x62,0xff,0x80,0x6e,0x5d,0xff,0x79,0x68,0x56,0xff,0x75,0x66,0x54,0xff,0x76,0x67,0x55,0xff,0x76,0x66,0x54,0xf9,0x79,0x69,0x57,0xff,0x8c,0x7f,0x6f,0xff,0xfc,0xfb,0xfb,0x09,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xf9,0xf8,0xf8,0x12,0x9f,0x91,0x83,0xff,0x81,0x70,0x5d,0xff,0x7c,0x6a,0x58,0xff,0x7e,0x6c,0x5a,0xff,0x7e,0x6c,0x5a,0xff,0x7e,0x6c,0x58,0xff,0x79,0x69,0x58,0xff,0x80,0x75,0x6c,0xff,0xf6,0xf5,0xf5,0x11,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfc,0xfb,0xfb,0x06,0xb3,0x9c,0x8c,0xed,0xa6,0x8b,0x78,0xff,0xa7,0x8c,0x7a,0xff,0xa9,0x8f,0x7e,0xff,0xa7,0x8d,0x7b,0xff,0x8f,0x7b,0x68,0xff,0x76,0x68,0x54,0xff,0x6e,0x62,0x4e,0xff,0x6e,0x62,0x4e,0xff,0x6e,0x61,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4d,0xff,0x6b,0x5e,0x4b,0xf8,0x68,0x5c,0x4c,0xff,0x71,0x66,0x58,0xff,0x7d,0x72,0x63,0xff,0x80,0x76,0x64,0xff,0x7a,0x6e,0x5b,0xff,0x6f,0x62,0x4f,0xff,0x69,0x5b,0x46,0xff,0x67,0x59,0x44,0xff,0x75,0x69,0x5a,0xff,0x97,0x90,0x8d,0xff,0xf9,0xf9,0xf9,0x07,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xf7,0xf6,0xf5,0x15,0x9e,0x90,0x82,0xff,0x83,0x70,0x5e,0xff,0x7f,0x6c,0x59,0xfc,0x80,0x6e,0x5b,0xff,0x81,0x6e,0x5b,0xff,0x81,0x6e,0x5b,0xfc,0x80,0x6d,0x5b,0xff,0x81,0x6f,0x5e,0xff,0x84,0x71,0x61,0xff,0x82,0x6f,0x5d,0xff,0x82,0x70,0x5e,0xf9,0x84,0x72,0x60,0xff,0x85,0x73,0x61,0xff,0x85,0x73,0x61,0xff,0x85,0x73,0x61,0xff,0x84,0x72,0x60,0xff,0x84,0x72,0x60,0xff,0x80,0x6e,0x5c,0xff,0x78,0x68,0x56,0xff,0x77,0x67,0x55,0xff,0x79,0x69,0x57,0xff,0x77,0x67,0x53,0xff,0x7a,0x69,0x55,0xff,0xa8,0x9d,0x90,0x92,0xfd,0xfd,0xfd,0x0b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xf9,0xf8,0xf8,0x12,0x9e,0x91,0x83,0xff,0x80,0x6f,0x5d,0xff,0x7c,0x6a,0x57,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7d,0x6c,0x58,0xff,0x78,0x68,0x58,0xff,0x80,0x75,0x6b,0xff,0xf6,0xf5,0xf5,0x11,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfd,0xfc,0x06,0xbf,0xab,0x9e,0x8d,0xa6,0x8c,0x79,0xff,0xa8,0x8d,0x7b,0xff,0xab,0x91,0x7f,0xff,0xa9,0x8e,0x7d,0xff,0x99,0x83,0x70,0xff,0x7e,0x6e,0x5a,0xff,0x6d,0x60,0x4d,0xff,0x6f,0x61,0x4e,0xff,0x6e,0x62,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x60,0x4b,0xff,0x65,0x58,0x49,0xff,0x65,0x5b,0x57,0xff,0x88,0x82,0x83,0xe9,0xcc,0xc9,0xc8,0x55,0xdf,0xdd,0xd9,0x35,0xa1,0x9a,0x8f,0xca,0x83,0x78,0x69,0xd6,0x74,0x68,0x56,0xca,0x73,0x68,0x57,0xdc,0x8b,0x82,0x7a,0xf8,0xe8,0xe7,0xe6,0x19,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xec,0xea,0xe7,0x24,0x91,0x80,0x71,0xff,0x80,0x6d,0x5b,0xff,0x82,0x71,0x5e,0xff,0x85,0x74,0x62,0xff,0x88,0x78,0x6a,0xff,0x8b,0x7d,0x73,0xff,0x90,0x85,0x7e,0xe8,0x9a,0x90,0x8b,0xc6,0x8c,0x7e,0x72,0xff,0x82,0x6f,0x5d,0xff,0x83,0x70,0x5d,0xfc,0x84,0x72,0x60,0xfc,0x84,0x72,0x60,0xff,0x84,0x72,0x60,0xff,0x83,0x71,0x5f,0xff,0x84,0x72,0x60,0xff,0x83,0x72,0x60,0xff,0x7e,0x6d,0x5b,0xff,0x7a,0x69,0x58,0xff,0x7a,0x69,0x57,0xff,0x7c,0x6c,0x58,0xf9,0x7b,0x69,0x56,0xff,0x82,0x70,0x5e,0xff,0xa6,0x99,0x8e,0xc8,0xf8,0xf7,0xf6,0x21,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xf9,0xf8,0xf8,0x12,0x9d,0x90,0x83,0xff,0x80,0x6f,0x5c,0xff,0x7b,0x6a,0x57,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x59,0xff,0x7d,0x6b,0x57,0xff,0x78,0x67,0x57,0xff,0x80,0x74,0x6b,0xff,0xf6,0xf5,0xf5,0x11,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf8,0xf5,0xf4,0x17,0xbf,0xa7,0x9a,0xce,0xab,0x8f,0x7d,0xff,0xaa,0x8f,0x7d,0xff,0xab,0x91,0x80,0xf7,0xab,0x91,0x7f,0xff,0x9e,0x86,0x74,0xff,0x80,0x6f,0x5c,0xff,0x6f,0x61,0x4e,0xff,0x6e,0x61,0x4d,0xff,0x6f,0x62,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4b,0xff,0x69,0x5c,0x47,0xf8,0x6e,0x63,0x5b,0xff,0x91,0x8b,0x8f,0xaa,0xfc,0xfc,0xfd,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x01,0xfd,0xfd,0xfd,0x01,0xfd,0xfd,0xfc,0x01,0xfd,0xfd,0xfd,0x01,0xfd,0xfd,0xfd,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xe8,0xe4,0xe1,0x29,0xa7,0x99,0x8c,0xbd,0xad,0xa1,0x95,0x9b,0xb0,0xa6,0x9c,0x99,0xb0,0xa7,0xa1,0xa3,0xbd,0xb6,0xb4,0x93,0xf3,0xf2,0xf3,0x25,0xfd,0xfd,0xfd,0x0b,0xc7,0xc1,0xbd,0x74,0x9b,0x8c,0x7e,0xf6,0x81,0x70,0x5d,0xf9,0x80,0x6d,0x5a,0xff,0x83,0x71,0x5f,0xff,0x83,0x71,0x5f,0xff,0x83,0x71,0x5f,0xff,0x83,0x71,0x5f,0xff,0x83,0x71,0x5f,0xff,0x81,0x70,0x5e,0xff,0x7e,0x6c,0x5a,0xff,0x7c,0x6b,0x58,0xff,0x7d,0x6c,0x59,0xff,0x7e,0x6d,0x5a,0xf9,0x7a,0x68,0x55,0xff,0x83,0x72,0x60,0xff,0xa3,0x96,0x89,0xd5,0xf0,0xee,0xec,0x2b,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xf9,0xf8,0xf8,0x12,0x9d,0x90,0x82,0xff,0x80,0x6f,0x5c,0xff,0x7b,0x6a,0x57,0xff,0x7d,0x6c,0x59,0xff,0x7d,0x6c,0x59,0xff,0x7c,0x6a,0x56,0xff,0x77,0x67,0x56,0xff,0x7f,0x74,0x6b,0xff,0xf6,0xf5,0xf5,0x12,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xf8,0xf7,0x0e,0xc0,0xa9,0x9c,0xb1,0xae,0x91,0x7f,0xff,0xac,0x8f,0x7d,0xff,0xae,0x92,0x81,0xf7,0xae,0x93,0x81,0xff,0xa1,0x89,0x77,0xff,0x87,0x74,0x61,0xff,0x70,0x63,0x4f,0xff,0x6c,0x5f,0x4c,0xff,0x70,0x62,0x4f,0xff,0x6e,0x61,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4d,0xff,0x6f,0x61,0x4c,0xff,0x6c,0x5f,0x48,0xfb,0x67,0x5b,0x4e,0xff,0x82,0x7b,0x7a,0xff,0xd9,0xd7,0xda,0x36,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xee,0xec,0xea,0x2c,0x8e,0x7e,0x6e,0xff,0x7d,0x6b,0x58,0xff,0x80,0x6e,0x5c,0xfc,0x82,0x70,0x5e,0xff,0x82,0x70,0x5e,0xff,0x82,0x70,0x5e,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x7f,0x6d,0x5b,0xff,0x7e,0x6c,0x5a,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xfc,0x7f,0x6c,0x5a,0xff,0x7e,0x6b,0x59,0xff,0x93,0x84,0x75,0xff,0xc5,0xbe,0xb5,0x7f,0xfe,0xfe,0xfe,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xf9,0xf8,0xf8,0x12,0x9c,0x90,0x82,0xff,0x7e,0x6e,0x5b,0xff,0x7a,0x69,0x56,0xff,0x7d,0x6b,0x58,0xff,0x7c,0x6b,0x58,0xff,0x7b,0x6a,0x56,0xff,0x76,0x67,0x56,0xff,0x7f,0x74,0x6b,0xff,0xf6,0xf5,0xf5,0x12,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x03,0xe2,0xd7,0xd1,0x48,0xb6,0x9b,0x8c,0xff,0xab,0x8c,0x7b,0xff,0xaf,0x92,0x81,0xff,0xb0,0x94,0x82,0xfb,0xb1,0x93,0x82,0xff,0xa7,0x8b,0x7a,0xff,0x8b,0x76,0x65,0xff,0x71,0x63,0x50,0xff,0x6d,0x61,0x4d,0xff,0x6e,0x62,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6d,0x60,0x4a,0xff,0x67,0x5b,0x49,0xff,0x71,0x68,0x65,0xff,0xb3,0xaf,0xb2,0x74,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x02,0xb5,0xab,0xa0,0x87,0x88,0x77,0x66,0xff,0x7e,0x6c,0x59,0xff,0x80,0x6e,0x5c,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x81,0x6f,0x5d,0xff,0x83,0x71,0x5f,0xfc,0x81,0x6f,0x5c,0xff,0x81,0x6f,0x5d,0xff,0x90,0x7f,0x6e,0xff,0xbb,0xb0,0xa7,0x7a,0xfe,0xfe,0xfe,0x09,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xf9,0xf8,0xf7,0x12,0x9b,0x90,0x81,0xff,0x7e,0x6d,0x5b,0xff,0x79,0x68,0x54,0xff,0x7b,0x6a,0x57,0xff,0x7b,0x6a,0x57,0xff,0x7a,0x6a,0x56,0xff,0x75,0x66,0x57,0xff,0x7f,0x73,0x6b,0xff,0xf6,0xf5,0xf5,0x12,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfb,0xfa,0xf9,0x12,0xc9,0xb7,0xac,0x92,0xb2,0x97,0x86,0xff,0xae,0x91,0x7f,0xff,0xb0,0x92,0x81,0xff,0xb3,0x96,0x84,0xfb,0xb2,0x95,0x83,0xff,0xa8,0x8d,0x7b,0xff,0x8b,0x77,0x64,0xff,0x73,0x64,0x51,0xff,0x6d,0x60,0x4d,0xff,0x6e,0x62,0x4f,0xff,0x6e,0x62,0x4f,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x62,0x4c,0xff,0x68,0x5c,0x48,0xfb,0x68,0x5d,0x54,0xff,0x83,0x7b,0x7d,0xff,0xf9,0xf9,0xfa,0x08,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xfd,0xfd,0xfd,0x09,0xaa,0x9e,0x91,0xc8,0x80,0x6e,0x5c,0xff,0x7e,0x6c,0x5a,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x81,0x6f,0x5d,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x7f,0x6d,0x5b,0xff,0x81,0x6f,0x5d,0xff,0x83,0x71,0x5f,0xff,0x85,0x73,0x61,0xff,0x83,0x72,0x60,0xf9,0x7f,0x6c,0x59,0xff,0x8d,0x7c,0x6a,0xff,0xae,0xa2,0x95,0xcd,0xe4,0xdf,0xdb,0x38,0xfd,0xfc,0xfc,0x0a,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xf9,0xf8,0xf7,0x13,0x9b,0x8e,0x81,0xff,0x7e,0x6c,0x5a,0xff,0x78,0x68,0x54,0xff,0x7a,0x6a,0x57,0xff,0x7b,0x6a,0x57,0xff,0x7a,0x69,0x56,0xff,0x75,0x66,0x57,0xff,0x7f,0x73,0x6b,0xff,0xf5,0xf4,0xf4,0x13,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x05,0xe2,0xda,0xd4,0x3e,0xba,0xa6,0x97,0xf6,0xad,0x91,0x80,0xff,0xaa,0x8c,0x7a,0xff,0xae,0x91,0x7f,0xff,0xb4,0x96,0x86,0xff,0xb5,0x97,0x85,0xff,0xa5,0x8b,0x7a,0xff,0x89,0x75,0x63,0xff,0x73,0x64,0x51,0xff,0x6c,0x60,0x4c,0xff,0x6e,0x61,0x4e,0xff,0x6f,0x62,0x4f,0xff,0x6e,0x61,0x4f,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4c,0xff,0x65,0x58,0x45,0xff,0x71,0x66,0x5c,0xff,0xbb,0xb7,0xb8,0x72,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x04,0xbb,0xb3,0xa9,0xa8,0x7f,0x6d,0x5b,0xff,0x7d,0x6b,0x58,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x80,0x6f,0x5c,0xff,0x83,0x71,0x5f,0xff,0x85,0x73,0x61,0xff,0x87,0x75,0x63,0xff,0x88,0x75,0x63,0xfc,0x88,0x75,0x62,0xff,0x87,0x72,0x5f,0xff,0x8e,0x7a,0x68,0xff,0xb5,0xa8,0x9c,0xac,0xea,0xe5,0xe2,0x31,0xf0,0xed,0xeb,0x22,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xf9,0xf8,0xf8,0x13,0x9c,0x8f,0x81,0xff,0x7d,0x6c,0x5a,0xff,0x78,0x67,0x54,0xff,0x7a,0x6a,0x57,0xff,0x7a,0x6a,0x57,0xff,0x79,0x68,0x55,0xff,0x74,0x65,0x56,0xff,0x7d,0x72,0x6a,0xff,0xf7,0xf7,0xf6,0x0f,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x05,0xf1,0xed,0xea,0x1f,0xf0,0xeb,0xe8,0x23,0xc8,0xb8,0xac,0x86,0xa7,0x8d,0x7a,0xff,0xa6,0x8b,0x78,0xff,0xab,0x90,0x7e,0xff,0xb0,0x93,0x82,0xfb,0xb3,0x95,0x84,0xff,0xaf,0x92,0x82,0xff,0xa1,0x88,0x77,0xff,0x87,0x74,0x62,0xff,0x70,0x62,0x4f,0xff,0x6b,0x5f,0x4c,0xff,0x6e,0x62,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6d,0x60,0x4d,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6d,0x60,0x4b,0xff,0x67,0x59,0x44,0xff,0x75,0x69,0x58,0xff,0xcb,0xc7,0xc1,0x4e,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf7,0xf6,0xf5,0x21,0x99,0x8c,0x7d,0xff,0x7a,0x68,0x55,0xff,0x7e,0x6b,0x59,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x80,0x6e,0x5c,0xff,0x80,0x6e,0x5c,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x7e,0x6d,0x5a,0xff,0x80,0x6f,0x5d,0xff,0x84,0x72,0x60,0xff,0x88,0x75,0x63,0xff,0x8b,0x77,0x66,0xff,0x8c,0x78,0x65,0xff,0x8a,0x76,0x64,0xff,0x8c,0x76,0x65,0xff,0x8f,0x7a,0x69,0xff,0x94,0x7f,0x6e,0xff,0xa1,0x8e,0x7f,0xff,0xd4,0xcc,0xc5,0x57,0xfa,0xf9,0xf8,0x1a,0xff,0xff,0xff,0x08,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xfa,0xf9,0x0f,0x9b,0x8e,0x80,0xff,0x7d,0x6d,0x5b,0xff,0x77,0x67,0x54,0xff,0x78,0x68,0x57,0xff,0x78,0x68,0x56,0xff,0x77,0x67,0x54,0xff,0x72,0x63,0x53,0xff,0x7d,0x71,0x69,0xff,0xf1,0xf0,0xf0,0x1f,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfd,0xfd,0x0f,0xf1,0xed,0xeb,0x28,0xd2,0xc6,0xbe,0x68,0xad,0x96,0x86,0xff,0xa7,0x8e,0x7c,0xff,0xa7,0x8d,0x7c,0xff,0xa7,0x8d,0x7a,0xff,0xaa,0x8f,0x7c,0xff,0xae,0x92,0x81,0xff,0xb0,0x93,0x82,0xff,0xac,0x90,0x7f,0xff,0x9a,0x83,0x71,0xff,0x7f,0x6e,0x5b,0xff,0x6d,0x5f,0x4c,0xff,0x6d,0x5f,0x4c,0xff,0x6f,0x62,0x4f,0xff,0x6e,0x62,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6d,0x60,0x4d,0xff,0x6e,0x60,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6d,0x61,0x4d,0xff,0x6d,0x60,0x4c,0xff,0x6d,0x60,0x4b,0xff,0x6a,0x5d,0x47,0xff,0x6e,0x61,0x4c,0xff,0x85,0x7b,0x69,0xff,0xe6,0xe4,0xe1,0x1c,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x02,0xb2,0xa7,0x9e,0x9f,0x84,0x72,0x61,0xff,0x7c,0x69,0x56,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6e,0x5b,0xff,0x80,0x6e,0x5c,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x80,0x6f,0x5c,0xff,0x84,0x71,0x5f,0xff,0x89,0x76,0x65,0xff,0x8d,0x79,0x67,0xff,0x8f,0x7a,0x68,0xff,0x90,0x7a,0x69,0xff,0x8e,0x78,0x66,0xff,0x8c,0x76,0x63,0xff,0x90,0x7a,0x67,0xff,0x9e,0x8b,0x7a,0xff,0xad,0x9b,0x8d,0xff,0xc6,0xba,0xb0,0x75,0xd9,0xd1,0xcb,0x3b,0xe6,0xe1,0xdd,0x33,0xff,0xfe,0xfe,0x12,0xf4,0xf3,0xf2,0x26,0x91,0x84,0x75,0xff,0x7a,0x69,0x58,0xff,0x77,0x67,0x55,0xff,0x78,0x68,0x56,0xff,0x77,0x67,0x55,0xff,0x77,0x66,0x54,0xff,0x72,0x62,0x51,0xff,0x7d,0x70,0x65,0xff,0xbf,0xb7,0xb2,0x97,0xea,0xe6,0xe3,0x3b,0xe7,0xe2,0xde,0x2d,0xdc,0xd4,0xcd,0x39,0xbd,0xae,0xa2,0xa3,0xad,0x99,0x89,0xff,0xa5,0x8d,0x7c,0xff,0x9f,0x85,0x74,0xff,0xa1,0x86,0x74,0xff,0xa5,0x8b,0x79,0xff,0xaa,0x8f,0x7e,0xff,0xad,0x92,0x80,0xff,0xac,0x90,0x7f,0xff,0xa1,0x87,0x76,0xff,0x8c,0x78,0x65,0xff,0x7a,0x6b,0x57,0xff,0x6f,0x62,0x4f,0xff,0x6c,0x5f,0x4c,0xff,0x6e,0x61,0x4e,0xff,0x6f,0x62,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6d,0x60,0x4d,0xff,0x6d,0x60,0x4d,0xff,0x6d,0x61,0x4d,0xff,0x6d,0x60,0x4c,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6a,0x5d,0x47,0xf8,0x6f,0x62,0x4c,0xff,0x91,0x88,0x7a,0xff,0xe9,0xe8,0xe5,0x1e,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xce,0xc8,0xc1,0x4d,0x81,0x6f,0x5e,0xff,0x78,0x66,0x53,0xff,0x7e,0x6d,0x5a,0xfc,0x7f,0x6d,0x5b,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7f,0x6d,0x5b,0xff,0x7f,0x6d,0x5b,0xff,0x7e,0x6d,0x5a,0xff,0x7d,0x6c,0x59,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7d,0x6c,0x59,0xff,0x7e,0x6e,0x5a,0xff,0x82,0x70,0x5e,0xff,0x86,0x74,0x62,0xff,0x8c,0x78,0x66,0xff,0x92,0x7c,0x6a,0xff,0x94,0x7e,0x6d,0xff,0x95,0x80,0x6e,0xff,0x95,0x80,0x6e,0xff,0x93,0x7d,0x6a,0xff,0x91,0x79,0x67,0xff,0x91,0x78,0x66,0xff,0x96,0x7f,0x6d,0xff,0xa6,0x92,0x82,0xff,0xc2,0xb2,0xa7,0xc6,0xbb,0xad,0xa2,0xac,0x85,0x75,0x64,0xfc,0x76,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xfc,0x80,0x6f,0x5f,0xfc,0x9a,0x89,0x7b,0xff,0xaa,0x98,0x8b,0xff,0xa5,0x90,0x80,0xff,0x99,0x81,0x6e,0xff,0x95,0x7c,0x69,0xff,0x9a,0x81,0x6e,0xff,0x9e,0x86,0x73,0xff,0xa3,0x8a,0x79,0xff,0xa7,0x8e,0x7d,0xff,0xaa,0x90,0x7f,0xff,0xa8,0x8e,0x7d,0xff,0x9f,0x87,0x75,0xff,0x91,0x7c,0x69,0xff,0x82,0x70,0x5d,0xff,0x73,0x66,0x52,0xff,0x6c,0x61,0x4c,0xff,0x6e,0x61,0x4d,0xff,0x70,0x62,0x4f,0xff,0x6f,0x62,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4d,0xff,0x6d,0x61,0x4d,0xff,0x6d,0x61,0x4d,0xff,0x6d,0x60,0x4c,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x61,0x4c,0xff,0x6c,0x5f,0x4a,0xff,0x66,0x58,0x42,0xf8,0x74,0x68,0x54,0xff,0x9b,0x93,0x86,0xb3,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xda,0xd6,0xd1,0x4c,0x91,0x83,0x73,0xff,0x7d,0x6c,0x59,0xff,0x7c,0x6b,0x58,0xf9,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7d,0x6c,0x59,0xff,0x7d,0x6c,0x59,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7d,0x6c,0x59,0xff,0x7c,0x6b,0x58,0xff,0x7c,0x6b,0x58,0xff,0x7c,0x6b,0x58,0xff,0x7e,0x6d,0x5a,0xff,0x84,0x72,0x5f,0xff,0x8b,0x76,0x64,0xff,0x90,0x7a,0x68,0xff,0x94,0x7f,0x6c,0xff,0x97,0x81,0x70,0xff,0x9a,0x83,0x71,0xff,0x9a,0x83,0x72,0xff,0x9b,0x83,0x72,0xff,0x9b,0x84,0x72,0xff,0x9b,0x83,0x70,0xff,0x9e,0x84,0x71,0xff,0x96,0x7f,0x6c,0xff,0x7f,0x6e,0x5b,0xff,0x76,0x67,0x54,0xfc,0x77,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x75,0x65,0x53,0xff,0x78,0x68,0x56,0xff,0x85,0x71,0x5f,0xff,0x92,0x7c,0x69,0xff,0x97,0x80,0x6e,0xff,0x98,0x81,0x6f,0xff,0x9b,0x84,0x72,0xff,0x9e,0x86,0x74,0xff,0xa1,0x88,0x76,0xff,0xa3,0x8a,0x78,0xff,0xa2,0x89,0x77,0xff,0xa0,0x88,0x76,0xff,0x9d,0x85,0x73,0xff,0x93,0x7e,0x6c,0xff,0x86,0x73,0x60,0xff,0x75,0x67,0x53,0xff,0x6d,0x61,0x4c,0xff,0x6e,0x62,0x4e,0xff,0x6f,0x62,0x4e,0xff,0x6e,0x62,0x4e,0xff,0x6e,0x62,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4c,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4c,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6e,0x61,0x4c,0xff,0x6c,0x5f,0x4a,0xff,0x63,0x56,0x3f,0xff,0x82,0x78,0x66,0xba,0xfc,0xfb,0xfb,0x0a,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x04,0xa2,0x95,0x88,0xe8,0x7f,0x6e,0x5b,0xff,0x7a,0x69,0x55,0xf9,0x7f,0x6e,0x5b,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7e,0x6d,0x5a,0xff,0x7d,0x6c,0x59,0xff,0x7d,0x6d,0x59,0xff,0x7e,0x6d,0x59,0xff,0x7d,0x6c,0x58,0xff,0x7d,0x6c,0x59,0xff,0x7e,0x6d,0x5a,0xff,0x7d,0x6c,0x59,0xff,0x7c,0x6b,0x58,0xff,0x7c,0x6b,0x58,0xff,0x7c,0x6b,0x58,0xff,0x7c,0x6b,0x58,0xff,0x7b,0x6b,0x58,0xff,0x7b,0x6b,0x57,0xff,0x7c,0x6b,0x58,0xff,0x83,0x70,0x5e,0xff,0x8c,0x78,0x66,0xff,0x93,0x7d,0x6b,0xff,0x98,0x81,0x70,0xff,0x99,0x84,0x71,0xff,0x9b,0x85,0x72,0xff,0x9d,0x86,0x74,0xff,0x9f,0x86,0x74,0xff,0xa3,0x89,0x77,0xff,0x9a,0x82,0x70,0xff,0x80,0x6f,0x5c,0xff,0x76,0x66,0x54,0xff,0x76,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x76,0x66,0x54,0xff,0x74,0x64,0x52,0xff,0x78,0x67,0x56,0xff,0x85,0x71,0x60,0xff,0x94,0x7d,0x6b,0xff,0x9a,0x82,0x70,0xff,0x99,0x82,0x71,0xff,0x9b,0x84,0x72,0xff,0x9d,0x85,0x73,0xff,0x9f,0x86,0x74,0xff,0x9d,0x86,0x74,0xff,0x96,0x80,0x6e,0xff,0x8d,0x79,0x66,0xff,0x7f,0x6e,0x5b,0xff,0x74,0x66,0x52,0xff,0x71,0x63,0x4f,0xff,0x70,0x63,0x4e,0xff,0x6e,0x62,0x4e,0xff,0x6e,0x62,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6d,0x61,0x4d,0xff,0x6d,0x60,0x4b,0xff,0x6b,0x5e,0x49,0xfb,0x69,0x5c,0x48,0xff,0x68,0x5b,0x46,0xff,0x69,0x5c,0x47,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x61,0x4c,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6e,0x61,0x4c,0xff,0x6c,0x5f,0x4a,0xff,0x60,0x52,0x3b,0xff,0x7d,0x72,0x60,0xff,0xe1,0xdf,0xdc,0x40,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfd,0xfd,0x0c,0x94,0x86,0x77,0xee,0x78,0x66,0x53,0xff,0x79,0x68,0x54,0xfc,0x7d,0x6c,0x59,0xff,0x7d,0x6c,0x59,0xff,0x7d,0x6c,0x59,0xff,0x7d,0x6c,0x59,0xff,0x7c,0x6b,0x59,0xff,0x7c,0x6b,0x58,0xff,0x7c,0x6b,0x58,0xff,0x7c,0x6a,0x56,0xff,0x7a,0x67,0x54,0xff,0x79,0x67,0x54,0xff,0x7a,0x69,0x56,0xff,0x7b,0x6a,0x57,0xff,0x7c,0x6b,0x58,0xff,0x7b,0x6a,0x57,0xff,0x7b,0x6a,0x57,0xff,0x7b,0x6a,0x57,0xff,0x7a,0x6a,0x58,0xff,0x79,0x69,0x57,0xff,0x78,0x68,0x56,0xff,0x7b,0x6a,0x58,0xff,0x7e,0x6d,0x5b,0xff,0x80,0x6f,0x5c,0xff,0x84,0x72,0x60,0xff,0x8b,0x78,0x65,0xff,0x92,0x7e,0x6b,0xff,0x98,0x82,0x70,0xff,0x9f,0x87,0x75,0xff,0xa8,0x8e,0x7c,0xff,0x9f,0x88,0x76,0xff,0x82,0x70,0x5e,0xff,0x75,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x75,0x65,0x53,0xff,0x74,0x64,0x52,0xff,0x78,0x67,0x55,0xff,0x85,0x71,0x60,0xff,0x96,0x7f,0x6d,0xff,0x9b,0x84,0x73,0xff,0x97,0x80,0x70,0xff,0x92,0x7d,0x6c,0xff,0x90,0x7b,0x69,0xff,0x89,0x76,0x63,0xff,0x80,0x6f,0x5d,0xff,0x7b,0x6b,0x58,0xff,0x77,0x68,0x55,0xff,0x72,0x64,0x50,0xff,0x6e,0x61,0x4c,0xff,0x6e,0x62,0x4d,0xff,0x6f,0x62,0x4f,0xff,0x6f,0x62,0x4f,0xff,0x6f,0x62,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6d,0x60,0x4e,0xff,0x6d,0x60,0x4d,0xff,0x6e,0x60,0x4c,0xff,0x6d,0x60,0x4a,0xff,0x68,0x5b,0x48,0xfb,0x67,0x5c,0x50,0xff,0x6f,0x65,0x5a,0xff,0x6d,0x62,0x51,0xff,0x68,0x5b,0x44,0xff,0x6a,0x5d,0x47,0xf9,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4c,0xff,0x6d,0x60,0x4b,0xff,0x69,0x5c,0x45,0xf9,0x69,0x5c,0x49,0xff,0x85,0x7b,0x6e,0xe2,0xf9,0xf8,0xf8,0x0d,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x06,0xa4,0x99,0x8c,0xd2,0x7e,0x6e,0x5c,0xff,0x76,0x63,0x50,0xff,0x7c,0x6a,0x57,0xf9,0x7b,0x6b,0x58,0xff,0x7b,0x6b,0x58,0xff,0x7b,0x6b,0x58,0xff,0x7b,0x6a,0x57,0xff,0x7c,0x6a,0x55,0xfc,0x77,0x66,0x53,0xfc,0x72,0x63,0x58,0xff,0x7a,0x6c,0x62,0xff,0x7e,0x6f,0x5f,0xff,0x78,0x67,0x53,0xff,0x75,0x64,0x4f,0xff,0x7a,0x69,0x56,0xf9,0x7b,0x6b,0x59,0xff,0x7a,0x6a,0x58,0xff,0x7a,0x6a,0x57,0xff,0x79,0x69,0x58,0xff,0x79,0x6a,0x58,0xff,0x79,0x6a,0x57,0xff,0x79,0x69,0x57,0xff,0x77,0x68,0x56,0xff,0x76,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x7c,0x6c,0x59,0xff,0x82,0x70,0x5e,0xff,0x86,0x73,0x61,0xff,0x8b,0x77,0x65,0xff,0x90,0x7c,0x6a,0xff,0x8d,0x78,0x66,0xff,0x7d,0x6b,0x59,0xff,0x76,0x66,0x54,0xff,0x75,0x65,0x53,0xff,0x75,0x65,0x53,0xff,0x75,0x65,0x53,0xff,0x74,0x65,0x52,0xff,0x77,0x66,0x54,0xff,0x7e,0x6c,0x59,0xff,0x86,0x73,0x60,0xff,0x87,0x75,0x62,0xff,0x84,0x72,0x5f,0xff,0x80,0x6f,0x5c,0xff,0x7d,0x6c,0x5a,0xff,0x77,0x67,0x54,0xff,0x70,0x61,0x4e,0xff,0x6e,0x61,0x4d,0xff,0x6f,0x62,0x4e,0xff,0x70,0x63,0x4f,0xff,0x71,0x64,0x50,0xff,0x70,0x63,0x50,0xff,0x6f,0x62,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4d,0xff,0x6c,0x5e,0x4a,0xf9,0x69,0x5c,0x4b,0xff,0x6f,0x65,0x5d,0xff,0x81,0x79,0x78,0xff,0xb5,0xb0,0xb0,0x8b,0xc3,0xbf,0xb8,0x73,0x8b,0x81,0x70,0xff,0x6d,0x60,0x4b,0xff,0x66,0x58,0x42,0xff,0x6d,0x60,0x4b,0xfb,0x6d,0x60,0x4b,0xff,0x69,0x5c,0x45,0xf9,0x65,0x58,0x42,0xff,0x7e,0x74,0x69,0xff,0xaf,0xa9,0xa7,0x8a,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf5,0xf4,0xf2,0x1b,0x92,0x84,0x75,0xeb,0x7e,0x6d,0x5a,0xff,0x75,0x63,0x50,0xff,0x7a,0x69,0x56,0xfc,0x7c,0x6c,0x59,0xff,0x7b,0x69,0x56,0xff,0x78,0x66,0x51,0xfc,0x75,0x65,0x52,0xff,0x78,0x6b,0x61,0xff,0x7d,0x74,0x75,0xff,0x94,0x8d,0x8d,0xdd,0x9f,0x95,0x8a,0xd2,0x8e,0x80,0x72,0xe3,0x82,0x73,0x61,0xff,0x78,0x68,0x55,0xff,0x75,0x64,0x51,0xfc,0x79,0x69,0x57,0xfc,0x7a,0x6a,0x58,0xff,0x79,0x69,0x57,0xff,0x79,0x69,0x57,0xff,0x79,0x69,0x57,0xff,0x78,0x68,0x56,0xff,0x78,0x68,0x56,0xff,0x78,0x68,0x56,0xff,0x77,0x67,0x55,0xff,0x76,0x67,0x54,0xff,0x76,0x67,0x54,0xff,0x76,0x66,0x53,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x75,0x66,0x54,0xff,0x75,0x65,0x53,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x74,0x65,0x52,0xff,0x72,0x64,0x50,0xff,0x72,0x64,0x50,0xff,0x72,0x65,0x51,0xff,0x72,0x64,0x50,0xff,0x72,0x63,0x50,0xff,0x72,0x63,0x50,0xff,0x70,0x63,0x4f,0xff,0x70,0x63,0x4f,0xff,0x70,0x63,0x4f,0xff,0x70,0x62,0x4f,0xff,0x6f,0x62,0x4f,0xff,0x6e,0x61,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4c,0xff,0x6a,0x5e,0x4c,0xf6,0x69,0x5c,0x4f,0xff,0x73,0x68,0x63,0xff,0x8e,0x87,0x89,0xfc,0xd2,0xd0,0xd3,0x4e,0xff,0xff,0xff,0x03,0xff,0xff,0xff,0x00,0xdd,0xdb,0xd6,0x39,0x8e,0x85,0x75,0xff,0x72,0x65,0x52,0xff,0x69,0x5c,0x46,0xff,0x65,0x58,0x42,0xff,0x6c,0x60,0x4c,0xff,0x80,0x75,0x68,0xff,0xa3,0x9b,0x98,0xbd,0xfb,0xfb,0xfb,0x0a,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf8,0xf7,0xf6,0x11,0x92,0x84,0x75,0xe6,0x7f,0x6f,0x5e,0xff,0x74,0x62,0x4f,0xff,0x76,0x64,0x51,0xf9,0x75,0x63,0x4f,0xff,0x7a,0x6b,0x5a,0xff,0x82,0x77,0x6d,0xff,0x8d,0x87,0x87,0xe8,0xdc,0xda,0xdc,0x42,0xfd,0xfd,0xfd,0x09,0xfe,0xfe,0xfe,0x03,0xfc,0xfb,0xfb,0x0c,0xb8,0xaf,0xa5,0x93,0x8b,0x7e,0x6e,0xff,0x74,0x64,0x51,0xff,0x76,0x66,0x53,0xff,0x78,0x68,0x56,0xff,0x78,0x68,0x56,0xff,0x78,0x68,0x56,0xff,0x78,0x68,0x56,0xff,0x78,0x68,0x56,0xff,0x77,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x76,0x66,0x54,0xff,0x75,0x65,0x53,0xff,0x75,0x65,0x53,0xff,0x75,0x65,0x53,0xff,0x74,0x65,0x53,0xff,0x74,0x65,0x52,0xff,0x75,0x65,0x53,0xff,0x75,0x65,0x53,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x73,0x64,0x51,0xff,0x72,0x63,0x50,0xff,0x72,0x63,0x50,0xff,0x72,0x64,0x50,0xff,0x71,0x63,0x4f,0xff,0x71,0x63,0x4f,0xff,0x71,0x64,0x50,0xff,0x70,0x63,0x4f,0xff,0x70,0x63,0x4f,0xff,0x70,0x62,0x4e,0xff,0x6f,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6d,0x60,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6f,0x62,0x4c,0xff,0x69,0x5d,0x49,0xf9,0x63,0x58,0x4e,0xff,0x75,0x6d,0x6d,0xff,0xb0,0xac,0xae,0x72,0xfd,0xfd,0xfd,0x07,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfc,0xfc,0xfb,0x10,0xb7,0xb1,0xa7,0x66,0x70,0x64,0x51,0xf6,0x71,0x64,0x50,0xd8,0x80,0x76,0x69,0xe6,0xb8,0xb3,0xaf,0x8b,0xfc,0xfb,0xfc,0x0b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfb,0xfa,0xfa,0x0f,0xa4,0x9a,0x8d,0xd0,0x84,0x75,0x64,0xff,0x79,0x68,0x56,0xff,0x85,0x77,0x69,0xff,0x96,0x8c,0x84,0xf6,0xd9,0xd7,0xd6,0x4e,0xfe,0xfe,0xfe,0x0b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xeb,0xe9,0xe6,0x37,0x97,0x8a,0x7c,0xff,0x79,0x6a,0x57,0xff,0x73,0x63,0x50,0xff,0x77,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x74,0x66,0x52,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x73,0x65,0x51,0xff,0x73,0x65,0x51,0xff,0x73,0x64,0x51,0xff,0x73,0x64,0x50,0xff,0x72,0x64,0x50,0xff,0x71,0x63,0x4f,0xff,0x70,0x63,0x4f,0xff,0x70,0x63,0x4f,0xff,0x6f,0x63,0x4f,0xff,0x6f,0x61,0x4f,0xff,0x6f,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6d,0x60,0x4d,0xff,0x6e,0x60,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6d,0x61,0x4b,0xff,0x63,0x57,0x48,0xff,0x70,0x67,0x65,0xff,0xb3,0xaf,0xb3,0x7b,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xfb,0xfb,0xfa,0x0c,0xfa,0xfa,0xfa,0x0f,0xfd,0xfd,0xfd,0x06,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xf9,0xf9,0x12,0xb5,0xac,0xa1,0x9b,0xa7,0x9d,0x92,0xa0,0xbc,0xb5,0xb0,0x91,0xf5,0xf4,0xf4,0x1f,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x07,0xb4,0xaa,0xa1,0xdd,0x80,0x71,0x60,0xff,0x6f,0x5f,0x4c,0xff,0x76,0x66,0x54,0xff,0x77,0x67,0x55,0xff,0x77,0x67,0x55,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x75,0x66,0x54,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x73,0x65,0x51,0xff,0x72,0x65,0x50,0xff,0x72,0x64,0x50,0xff,0x72,0x64,0x50,0xff,0x72,0x64,0x50,0xff,0x71,0x63,0x50,0xff,0x70,0x63,0x50,0xff,0x70,0x63,0x50,0xff,0x70,0x63,0x50,0xff,0x6f,0x62,0x50,0xff,0x6e,0x61,0x4f,0xff,0x6e,0x61,0x4e,0xff,0x6d,0x60,0x4d,0xff,0x6d,0x60,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6d,0x61,0x4d,0xff,0x6d,0x61,0x4d,0xff,0x6b,0x5f,0x48,0xff,0x68,0x5c,0x4e,0xff,0x87,0x7f,0x7c,0xc7,0xfe,0xfe,0xfe,0x0b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfd,0xfd,0x09,0xa8,0x9d,0x91,0xe6,0x7f,0x70,0x5f,0xff,0x70,0x5f,0x4c,0xff,0x75,0x65,0x53,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x53,0xff,0x76,0x65,0x53,0xff,0x75,0x65,0x52,0xff,0x74,0x65,0x51,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x73,0x64,0x51,0xff,0x73,0x64,0x51,0xff,0x73,0x64,0x51,0xff,0x72,0x64,0x50,0xff,0x71,0x63,0x4f,0xff,0x71,0x63,0x50,0xff,0x71,0x63,0x50,0xff,0x70,0x62,0x4e,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x60,0x4c,0xff,0x6d,0x5f,0x4b,0xff,0x6b,0x5e,0x4b,0xfc,0x6d,0x60,0x4d,0xff,0x6e,0x61,0x4e,0xff,0x6d,0x60,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6d,0x61,0x4d,0xff,0x6d,0x61,0x4d,0xff,0x6d,0x60,0x4c,0xff,0x6b,0x5d,0x47,0xff,0x6d,0x61,0x50,0xff,0x93,0x8b,0x82,0xa7,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfb,0xfa,0xfa,0x0c,0x8a,0x7d,0x6d,0xee,0x79,0x69,0x57,0xff,0x73,0x62,0x50,0xff,0x75,0x65,0x53,0xff,0x76,0x66,0x54,0xff,0x76,0x65,0x53,0xff,0x75,0x65,0x53,0xff,0x75,0x66,0x54,0xff,0x76,0x66,0x54,0xff,0x76,0x66,0x53,0xff,0x74,0x65,0x51,0xff,0x73,0x64,0x50,0xf9,0x72,0x63,0x4f,0xf9,0x72,0x63,0x50,0xf9,0x73,0x64,0x51,0xfc,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x73,0x65,0x51,0xff,0x73,0x65,0x51,0xff,0x73,0x64,0x51,0xff,0x72,0x64,0x50,0xff,0x72,0x63,0x50,0xff,0x72,0x63,0x50,0xff,0x71,0x63,0x50,0xff,0x71,0x63,0x4f,0xff,0x71,0x63,0x4f,0xff,0x6f,0x61,0x4e,0xff,0x6e,0x60,0x4c,0xf9,0x6c,0x5f,0x4a,0xf9,0x6c,0x5e,0x4b,0xf7,0x6a,0x5d,0x49,0xff,0x69,0x5d,0x4a,0xff,0x6b,0x5e,0x4c,0xfc,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x61,0x4d,0xff,0x6d,0x61,0x4c,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6b,0x5e,0x48,0xff,0x6c,0x5f,0x4b,0xff,0x8e,0x85,0x77,0xa7,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfa,0xf9,0xf8,0x10,0x79,0x6a,0x58,0xf1,0x74,0x63,0x51,0xff,0x75,0x66,0x53,0xff,0x76,0x67,0x54,0xff,0x76,0x66,0x54,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x53,0xff,0x76,0x67,0x53,0xff,0x74,0x65,0x52,0xff,0x6d,0x5e,0x4f,0xf9,0x68,0x5b,0x50,0xff,0x76,0x6a,0x61,0xff,0x82,0x76,0x6a,0xff,0x7f,0x72,0x63,0xff,0x74,0x66,0x54,0xff,0x72,0x63,0x50,0xfc,0x74,0x65,0x51,0xfc,0x73,0x65,0x51,0xff,0x72,0x64,0x50,0xff,0x72,0x63,0x4f,0xff,0x72,0x64,0x50,0xff,0x71,0x63,0x50,0xff,0x71,0x63,0x50,0xff,0x70,0x63,0x4f,0xff,0x6e,0x61,0x4d,0xff,0x6b,0x5d,0x4b,0xf9,0x69,0x5b,0x4c,0xff,0x72,0x66,0x5b,0xff,0x7a,0x6f,0x67,0xff,0x82,0x79,0x73,0xff,0x90,0x88,0x81,0xff,0x94,0x8b,0x81,0xff,0x79,0x6d,0x5d,0xff,0x66,0x58,0x43,0xfc,0x6d,0x60,0x4b,0xfc,0x6e,0x61,0x4d,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6e,0x61,0x4c,0xff,0x6b,0x5e,0x49,0xff,0x67,0x5a,0x44,0xff,0x86,0x7b,0x6c,0xcf,0xfa,0xfa,0xfa,0x17,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xd5,0xd1,0xcb,0x53,0x76,0x67,0x54,0xff,0x70,0x60,0x4d,0xff,0x76,0x67,0x54,0xff,0x76,0x67,0x54,0xff,0x75,0x66,0x53,0xff,0x74,0x66,0x52,0xff,0x75,0x66,0x53,0xff,0x75,0x66,0x52,0xff,0x6f,0x5f,0x4d,0xfc,0x68,0x5b,0x55,0xff,0x7f,0x76,0x77,0xff,0xb8,0xb4,0xb4,0x66,0xd6,0xd4,0xd1,0x3a,0xcd,0xc9,0xc4,0x50,0xa5,0x9c,0x91,0xaf,0x78,0x6b,0x58,0xff,0x70,0x63,0x4e,0xff,0x72,0x64,0x50,0xff,0x71,0x63,0x50,0xff,0x70,0x63,0x4f,0xff,0x71,0x63,0x4f,0xff,0x70,0x63,0x4f,0xff,0x70,0x63,0x4f,0xff,0x6e,0x60,0x4d,0xff,0x67,0x5a,0x4b,0xf9,0x6e,0x64,0x5a,0xff,0x81,0x78,0x74,0xff,0xbd,0xb8,0xb7,0x58,0xd3,0xcf,0xd0,0x40,0xcf,0xcc,0xce,0x4e,0xe4,0xe2,0xe4,0x3f,0xf2,0xf1,0xf1,0x2e,0xa9,0xa2,0x97,0x7f,0x6c,0x5f,0x4b,0xff,0x6b,0x5e,0x4a,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4c,0xff,0x6c,0x5f,0x4a,0xff,0x65,0x57,0x40,0xff,0x7d,0x72,0x60,0xff,0xc6,0xc2,0xbc,0x7b,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x08,0xa1,0x97,0x8a,0xff,0x74,0x65,0x52,0xff,0x6e,0x5e,0x4a,0xf9,0x75,0x66,0x54,0xff,0x75,0x66,0x53,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x72,0x63,0x4e,0xfc,0x6e,0x60,0x51,0xff,0x78,0x6f,0x6e,0xff,0xca,0xc7,0xcb,0x59,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf4,0xf3,0xf1,0x24,0x83,0x78,0x66,0xff,0x70,0x64,0x50,0xff,0x6f,0x61,0x4d,0xff,0x71,0x63,0x4f,0xff,0x70,0x63,0x4f,0xff,0x6f,0x62,0x4f,0xff,0x6f,0x62,0x4f,0xff,0x70,0x62,0x4e,0xff,0x6b,0x5d,0x4b,0xff,0x65,0x5a,0x51,0xff,0x7f,0x78,0x77,0xff,0xd9,0xd7,0xd8,0x46,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xed,0xec,0xe9,0x29,0x8c,0x82,0x72,0xff,0x69,0x5c,0x47,0xff,0x6a,0x5c,0x47,0xff,0x6e,0x61,0x4c,0xff,0x6d,0x60,0x4b,0xff,0x6d,0x60,0x4b,0xff,0x6b,0x5e,0x48,0xff,0x66,0x59,0x41,0xfa,0x76,0x6a,0x59,0xff,0x9b,0x93,0x8d,0xc2,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x05,0xb2,0xaa,0xa0,0xc1,0x73,0x63,0x51,0xff,0x6b,0x5a,0x47,0xff,0x73,0x64,0x51,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x74,0x65,0x52,0xff,0x73,0x64,0x50,0xff,0x6d,0x5f,0x4c,0xff,0x77,0x6c,0x63,0xff,0xae,0xaa,0xab,0xa0,0xfe,0xff,0xff,0x05,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xfb,0xfb,0xfa,0x0c,0x8b,0x81,0x71,0xf9,0x74,0x67,0x54,0xff,0x6d,0x5f,0x4a,0xff,0x70,0x62,0x4e,0xff,0x6f,0x62,0x4f,0xff,0x6e,0x62,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6f,0x61,0x4d,0xff,0x69,0x5c,0x4a,0xff,0x6e,0x65,0x5d,0xff,0xa2,0x9d,0x9d,0xce,0xff,0xff,0xff,0x05,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x09,0xb6,0xb0,0xa5,0x82,0x6f,0x62,0x4d,0xff,0x65,0x57,0x40,0xff,0x6d,0x60,0x4b,0xff,0x6c,0x5f,0x49,0xff,0x6b,0x5d,0x48,0xff,0x68,0x5a,0x44,0xff,0x66,0x59,0x43,0xff,0x7e,0x73,0x65,0xff,0xd5,0xd1,0xd0,0x54,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf0,0xef,0xed,0x28,0x92,0x86,0x78,0xff,0x7a,0x6c,0x5b,0xff,0x6d,0x5d,0x4a,0xff,0x6b,0x5c,0x47,0xff,0x6e,0x5f,0x4a,0xff,0x70,0x61,0x4c,0xfc,0x6d,0x5d,0x47,0xff,0x70,0x63,0x55,0xff,0x8c,0x85,0x83,0xff,0xf1,0xf0,0xf0,0x29,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfb,0xfb,0xfa,0x10,0x9b,0x91,0x84,0xff,0x77,0x6a,0x57,0xff,0x69,0x5c,0x48,0xff,0x6e,0x61,0x4d,0xff,0x6e,0x62,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4e,0xff,0x6d,0x5f,0x4b,0xff,0x6a,0x5d,0x4b,0xff,0x75,0x6b,0x63,0xff,0xdb,0xd8,0xd8,0x52,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xeb,0xe9,0xe6,0x2f,0x8c,0x81,0x71,0xff,0x65,0x57,0x41,0xff,0x63,0x55,0x3f,0xff,0x67,0x59,0x44,0xff,0x6c,0x5f,0x4d,0xff,0x74,0x68,0x5b,0xff,0x86,0x7d,0x73,0xff,0xcc,0xc9,0xc4,0x68,0xff,0xff,0xff,0x07,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xf3,0xf2,0xf1,0x23,0xbe,0xb7,0xaf,0x95,0x92,0x88,0x7a,0xff,0x84,0x77,0x66,0xff,0x78,0x6b,0x58,0xff,0x72,0x64,0x51,0xff,0x7a,0x6c,0x5a,0xff,0x90,0x87,0x7e,0xff,0xd2,0xd0,0xd0,0x50,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfb,0xfb,0xfa,0x12,0xa5,0x9d,0x91,0xff,0x78,0x6c,0x5a,0xff,0x67,0x5a,0x46,0xfc,0x6e,0x61,0x4e,0xff,0x6e,0x61,0x4f,0xff,0x6e,0x61,0x4f,0xff,0x6e,0x62,0x4f,0xff,0x6d,0x60,0x4a,0xff,0x6e,0x60,0x4e,0xff,0x77,0x6c,0x66,0xff,0xf7,0xf6,0xf7,0x16,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfe,0xfe,0xfe,0x08,0xd1,0xcd,0xc7,0x68,0x93,0x89,0x7a,0xff,0x81,0x75,0x64,0xff,0x8c,0x81,0x73,0xff,0x9b,0x93,0x89,0xff,0xc9,0xc6,0xc3,0x6a,0xf1,0xf0,0xf1,0x25,0xff,0xff,0xff,0x07,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x0a,0xf8,0xf8,0xf7,0x16,0xe7,0xe4,0xe1,0x39,0xa4,0x9b,0x90,0xeb,0x8b,0x80,0x72,0xff,0xc1,0xbb,0xb3,0x63,0xf8,0xf8,0xf8,0x17,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfd,0xfd,0xfc,0x0f,0xab,0xa2,0x97,0xee,0x75,0x68,0x56,0xff,0x64,0x56,0x41,0xff,0x6b,0x5e,0x4a,0xff,0x6b,0x5e,0x4a,0xff,0x6b,0x5e,0x4a,0xff,0x6c,0x5f,0x4a,0xff,0x69,0x5b,0x44,0xfc,0x6d,0x60,0x4e,0xff,0x81,0x78,0x73,0xff,0xf9,0xf9,0xf9,0x11,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x04,0xf7,0xf6,0xf5,0x1e,0xf4,0xf3,0xf2,0x1e,0xf5,0xf4,0xf3,0x1f,0xf9,0xf9,0xf8,0x1c,0xff,0xff,0xff,0x06,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xfb,0xfb,0xfa,0x12,0xf4,0xf4,0xf2,0x1a,0xfe,0xfe,0xfe,0x04,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xe7,0xe6,0xe2,0x2f,0x7b,0x6f,0x5c,0xff,0x67,0x5a,0x44,0xff,0x6b,0x5e,0x49,0xff,0x6b,0x5e,0x4a,0xff,0x6b,0x5e,0x4a,0xff,0x6b,0x5d,0x48,0xff,0x67,0x59,0x44,0xff,0x74,0x68,0x59,0xff,0x97,0x90,0x8c,0xff,0xfb,0xfb,0xfc,0x10,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x02,0xff,0xff,0xff,0x00,0xfd,0xfd,0xfd,0x0a,0xb1,0xab,0xa0,0xb8,0x8a,0x80,0x6f,0xff,0x89,0x7e,0x6f,0xe7,0x89,0x7f,0x6f,0xe2,0x89,0x7e,0x6f,0xe4,0x87,0x7b,0x6d,0xe7,0x83,0x78,0x6a,0xff,0x94,0x8b,0x81,0xf7,0xee,0xec,0xec,0x28,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x03,0xfe,0xfe,0xfe,0x09,0xfc,0xfc,0xfc,0x0c,0xfc,0xfc,0xfc,0x0c,0xfc,0xfc,0xfc,0x0b,0xfb,0xfb,0xfb,0x10,0xfa,0xf9,0xf9,0x18,0xfb,0xfa,0xfa,0x12,0xfd,0xfd,0xfd,0x0b,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
|
||||
};
|
||||
|
||||
const lv_img_dsc_t img_benchmark_cogwheel_argb = {
|
||||
.header.magic = LV_IMAGE_HEADER_MAGIC,
|
||||
.header.cf = LV_COLOR_FORMAT_ARGB8888,
|
||||
.header.flags = 0,
|
||||
.header.w = 100,
|
||||
.header.h = 100,
|
||||
.header.stride = 448,
|
||||
.data_size = 44800,
|
||||
.data = img_benchmark_cogwheel_argb_map,
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,148 @@
|
||||
#ifdef __has_include
|
||||
#if __has_include("lvgl.h")
|
||||
#ifndef LV_LVGL_H_INCLUDE_SIMPLE
|
||||
#define LV_LVGL_H_INCLUDE_SIMPLE
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
|
||||
#include "lvgl.h"
|
||||
#else
|
||||
#include "lvgl/lvgl.h"
|
||||
#endif
|
||||
|
||||
#if LV_USE_DEMO_BENCHMARK
|
||||
|
||||
#ifndef LV_ATTRIBUTE_MEM_ALIGN
|
||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||
#endif
|
||||
|
||||
#ifndef LV_ATTRIBUTE_IMAGE_IMG_BENCHMARK_COGWHEEL_INDEXED16
|
||||
#define LV_ATTRIBUTE_IMAGE_IMG_BENCHMARK_COGWHEEL_INDEXED16
|
||||
#endif
|
||||
|
||||
static const
|
||||
LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMAGE_IMG_BENCHMARK_COGWHEEL_INDEXED16
|
||||
uint8_t img_benchmark_cogwheel_indexed16_map[] = {
|
||||
|
||||
0x4c,0x70,0x47,0x00,0x72,0x64,0x50,0xff,0x82,0x70,0x60,0xff,0x7b,0x6b,0x58,0xff,
|
||||
0x98,0x81,0x6e,0xff,0x6c,0x5e,0x4a,0xff,0x8e,0x78,0x67,0xff,0xa7,0x8e,0x7c,0xff,
|
||||
0x8c,0x81,0x76,0xff,0xa3,0x96,0x8b,0xff,0x81,0x75,0x68,0xff,0xbe,0xb2,0xa8,0xff,
|
||||
0xb3,0x9e,0x8e,0xff,0x6c,0x65,0x5f,0xff,0x7d,0x74,0x72,0xff,0x9d,0x96,0x92,0xff,
|
||||
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc4,0x66,0x66,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x64,0x66,0x67,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x64,0x66,0x24,0x00,0x00,0x00,0x00,0x00,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc7,0xc0,0x00,0x00,0x00,0x00,0x00,0x76,0x44,0x44,0x64,0x00,0x00,0x00,0x00,0x02,0x22,0x49,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xc7,0x44,0x7b,0x00,0x00,0x00,0x00,0x0b,0x44,0x44,0x44,0x64,0x90,0x00,0x00,0x00,0x72,0x32,0x2a,0x49,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb7,0x44,0x77,0x47,0x00,0x00,0x00,0x00,0x0c,0x46,0x44,0x64,0x66,0x80,0x00,0x00,0x09,0x26,0x62,0x22,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc7,0x74,0x74,0x74,0x00,0x00,0x00,0x00,0x09,0x44,0x64,0x64,0x46,0x40,0x00,0x00,0x08,0x26,0xa6,0x26,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc4,0x77,0x47,0x74,0x70,0x00,0x00,0x00,0x07,0x44,0x44,0x44,0x64,0xe0,0x00,0x00,0x04,0x62,0x63,0x62,0x26,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc7,0x77,0x74,0x74,0x4c,0x00,0x00,0x00,0xb4,0x44,0x44,0x44,0x66,0x47,0x00,0x00,0x82,0x66,0x62,0x26,0x36,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc7,0x47,0x77,0x74,0x77,0xc0,0x00,0xb9,0x46,0x44,0x46,0x44,0x44,0x66,0x4b,0x07,0x26,0x6a,0x6a,0x22,0x2e,0xb0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x74,0x74,0x77,0x44,0x74,0x74,0x64,0x44,0x44,0x84,0x46,0x64,0x64,0x62,0xa6,0x64,0x66,0x66,0xa6,0x2e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x77,0x77,0x74,0x77,0x44,0x44,0x44,0x44,0x64,0x46,0x44,0x44,0x66,0x66,0x66,0x26,0x66,0x62,0x63,0x2e,0x00,0x00,0x00,0x00,0x00,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x74,0x74,0x77,0x47,0x74,0x74,0x74,0x44,0x44,0x44,0x46,0x48,0x66,0x64,0x66,0xa6,0x26,0x6a,0x62,0xaa,0x00,0x00,0x00,0x00,0xb8,0x28,0xb0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xbc,0xc0,0x00,0x00,0x00,0x00,0x0c,0x77,0x77,0x47,0x44,0x47,0x44,0x47,0x44,0x44,0x44,0x48,0x64,0x64,0x66,0xa4,0x66,0x42,0x66,0x26,0x62,0xb0,0x00,0x00,0x09,0x23,0x35,0xa9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x77,0x7c,0x00,0x00,0x00,0x00,0xb7,0x77,0x47,0x74,0x77,0x47,0x74,0x44,0x74,0x44,0x46,0x44,0x64,0x64,0x64,0x66,0xa6,0x62,0x66,0x32,0x22,0x49,0x00,0x00,0x8a,0x33,0x33,0x33,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xbc,0x77,0x77,0x7b,0x00,0x00,0x07,0x77,0x77,0x74,0x77,0x44,0x74,0x47,0x44,0x66,0x64,0x44,0x44,0x46,0xa6,0x66,0x64,0x66,0xa6,0x26,0x6a,0x22,0x22,0x40,0x08,0x63,0x33,0x23,0x31,0x2f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x77,0x7c,0x77,0x77,0xc0,0x00,0xc7,0x77,0x47,0x77,0x47,0x77,0x44,0x62,0x2d,0x32,0x64,0x44,0x44,0x66,0x13,0x33,0x32,0x66,0x46,0x66,0x62,0x22,0x23,0x24,0x83,0x33,0x63,0x23,0x23,0x37,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x7c,0x77,0x77,0xc7,0x77,0x77,0x47,0x77,0x77,0x47,0x77,0x64,0x62,0x31,0x55,0x51,0x64,0x44,0x64,0x83,0x55,0x55,0x13,0x32,0x2a,0x22,0x6a,0xa2,0x22,0x33,0x33,0x33,0x32,0x33,0x31,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x77,0xc7,0xc7,0x77,0x77,0x77,0x77,0x77,0x77,0x74,0x46,0x21,0x51,0x15,0x55,0x5d,0x64,0x44,0x44,0x42,0x55,0x55,0x55,0x55,0x32,0x63,0x66,0x22,0x22,0x23,0x36,0x32,0x32,0x33,0x33,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x77,0x77,0x77,0x77,0xc7,0x77,0x77,0x77,0x77,0x76,0x23,0x15,0x55,0x51,0x11,0x51,0x64,0x44,0x64,0x62,0x15,0x55,0x55,0x11,0x11,0x33,0x32,0x22,0x22,0x32,0x23,0x23,0x33,0x23,0x33,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb7,0x77,0x7c,0x77,0x77,0x77,0x77,0x77,0x44,0x21,0x55,0x55,0x11,0x55,0x55,0x3e,0x64,0x44,0x44,0x63,0x55,0x31,0x55,0x55,0x11,0x13,0x32,0x22,0x26,0x33,0x23,0x23,0x23,0x23,0x32,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x77,0x77,0x77,0x77,0x77,0x77,0x74,0x43,0x55,0x15,0x15,0x55,0xda,0x8f,0x00,0x74,0x44,0x44,0x65,0xd0,0x00,0x08,0x21,0x55,0x33,0x33,0x22,0x22,0x22,0x36,0x32,0x33,0x31,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc7,0xc7,0x77,0x77,0x77,0x77,0x72,0x11,0x55,0x55,0x15,0xda,0x80,0x00,0x00,0xc4,0x64,0x44,0x2e,0xf0,0x00,0x00,0x09,0x23,0x11,0x33,0x33,0x22,0x23,0x33,0x32,0x32,0x35,0xef,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x77,0x77,0x77,0x77,0x74,0x21,0x55,0x11,0x55,0xd8,0x00,0x00,0x00,0x00,0x94,0x44,0x64,0x66,0x00,0x00,0x00,0x00,0x00,0x61,0x13,0x22,0x32,0x32,0x62,0x23,0x33,0x23,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x77,0x77,0x77,0x77,0x72,0x55,0x51,0x55,0xda,0x00,0x00,0x00,0x00,0x00,0x94,0x44,0x64,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0xa1,0x33,0x36,0x33,0x33,0x33,0x32,0x33,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb7,0x77,0x77,0x77,0x74,0x35,0x55,0x15,0x1d,0x80,0x00,0x00,0x00,0x00,0x00,0xc4,0x64,0x44,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x33,0x22,0x22,0x63,0x62,0x33,0x31,0xa9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc7,0x77,0x77,0xc7,0x73,0x55,0xd1,0x55,0xeb,0x00,0x00,0x00,0x00,0x00,0x00,0xc4,0x64,0x44,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x92,0x32,0x22,0x33,0x33,0x32,0x63,0x12,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x77,0x77,0x77,0x74,0x21,0x51,0x55,0xd8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x94,0x46,0x46,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x26,0x66,0x23,0x33,0x33,0x31,0x9b,0xb0,0x98,0x31,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0xcc,0x00,0x00,0x00,0xb7,0x77,0x77,0x77,0x72,0x55,0x51,0x55,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc4,0x44,0x44,0xe6,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x22,0x62,0x23,0x33,0x32,0x33,0x1a,0xa3,0x15,0x31,0x13,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x07,0x77,0x77,0x7c,0xbb,0xc7,0x77,0x77,0x77,0x65,0x51,0x15,0xd8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x94,0x64,0x66,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x64,0x62,0x23,0x33,0x33,0x31,0x55,0x53,0x13,0x15,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x07,0x47,0x77,0x77,0x77,0x77,0x77,0x77,0x76,0x15,0xd1,0x55,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc4,0x64,0x46,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x66,0x46,0x23,0x33,0x31,0x33,0x33,0x31,0x13,0x15,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x77,0x77,0x74,0x77,0x77,0x77,0x77,0x77,0x43,0x51,0x51,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x94,0x46,0x66,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x66,0x46,0x63,0x33,0x12,0x33,0x35,0x21,0x31,0x35,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x44,0x74,0x77,0x74,0x74,0x74,0x77,0x77,0x21,0x51,0x15,0xdb,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x94,0x48,0x46,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x76,0x44,0x42,0x33,0x33,0x11,0x31,0x35,0x11,0x35,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x44,0x77,0x47,0x47,0x77,0x77,0x74,0x74,0x35,0x11,0x5d,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x94,0x66,0x66,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x46,0x23,0x13,0x32,0x13,0x13,0x31,0x11,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x74,0x47,0x77,0x47,0x47,0x47,0x77,0x42,0x15,0x15,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x94,0x44,0x46,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x44,0x23,0x33,0x11,0x35,0x25,0x31,0x53,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0xb7,0x44,0x47,0x74,0x74,0x74,0x47,0x43,0x51,0x11,0xd0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x94,0x66,0x66,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x76,0x47,0x62,0x31,0x21,0x31,0x31,0x35,0xdf,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0xc7,0x44,0x74,0x74,0x77,0x74,0x25,0x51,0x13,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x66,0x64,0x66,0x26,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb4,0x47,0x42,0x13,0x53,0x52,0x55,0x52,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x77,0x47,0x47,0x44,0x74,0x21,0x11,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x46,0x46,0x46,0x66,0x64,0x24,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x74,0x76,0x21,0x21,0x31,0x25,0xdf,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x74,0x47,0x74,0x72,0x11,0x15,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x46,0x66,0x4a,0x46,0x46,0xa6,0x62,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x47,0x74,0x21,0x12,0x53,0x11,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x74,0x74,0x47,0x42,0x11,0x13,0xdf,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x96,0x26,0x44,0x64,0x68,0x66,0x66,0xa6,0x63,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x77,0x74,0x63,0x31,0x31,0x31,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x74,0x47,0x47,0x43,0x51,0x15,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x23,0x64,0x66,0x66,0x22,0x26,0x66,0x63,0x23,0x32,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x77,0x77,0x63,0x52,0x53,0x35,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x44,0x74,0x44,0x63,0x51,0x13,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb6,0x13,0xff,0x7a,0x62,0x36,0xa6,0x26,0x2a,0x88,0x33,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x77,0x43,0x31,0x31,0x15,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x44,0x44,0x74,0x21,0x51,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x38,0x00,0x08,0x89,0xf9,0x9b,0x94,0x4f,0x00,0x7a,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x7c,0x72,0x52,0x52,0x15,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x0c,0x64,0x74,0x44,0x21,0x15,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x46,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x93,0x22,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x77,0x76,0x25,0x11,0x31,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x07,0x44,0x44,0x44,0x33,0x13,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x42,0x23,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x77,0x76,0x25,0x31,0x25,0x33,0x11,0x33,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x0b,0x94,0x44,0x74,0x44,0x23,0x23,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb6,0x46,0x66,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x22,0x22,0x39,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x77,0x76,0x21,0x31,0x53,0x15,0x55,0x55,0x11,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0xbc,0xc7,0x74,0x44,0x44,0x44,0x44,0x66,0x66,0x64,0x9b,0x0b,0xbb,0xbb,0xbb,0xb0,0xb9,0x46,0x46,0x43,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x32,0x63,0x36,0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x72,0x26,0x22,0x11,0x31,0x11,0x11,0x11,0x15,0x55,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x04,0x66,0x46,0x46,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x47,0x77,0x77,0x74,0x44,0x66,0x64,0x64,0x22,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x62,0x32,0x23,0x32,0x32,0x33,0x33,0x33,0x33,0x33,0x11,0x31,0x13,0x53,0x11,0x31,0x11,0x15,0xd1,0x55,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x04,0x66,0x44,0x44,0x64,0x44,0x44,0x44,0x44,0x44,0x46,0x44,0x66,0x66,0x66,0x46,0x66,0x46,0xa4,0x66,0x63,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x43,0x22,0x22,0x32,0x33,0x33,0x33,0x31,0x11,0x11,0x11,0x11,0x13,0x52,0x53,0x51,0x11,0x15,0x5d,0x55,0x5b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x04,0x64,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x84,0x84,0x44,0x64,0x66,0x46,0x46,0x42,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x43,0x22,0x23,0x33,0x32,0x32,0x33,0x33,0x33,0x33,0x33,0x21,0x35,0x21,0x31,0x31,0x15,0x11,0x55,0x55,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x08,0x66,0x46,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x64,0x44,0x46,0x46,0x64,0x64,0x46,0x66,0x66,0x62,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x43,0x22,0x22,0x22,0x23,0x33,0x33,0x33,0x23,0x33,0x13,0x53,0x13,0x53,0x51,0x11,0x15,0x51,0x55,0x55,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x04,0x68,0x44,0x46,0x46,0x44,0x44,0x46,0x44,0x44,0x44,0x44,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x86,0xa2,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x62,0x22,0x23,0x32,0x33,0x31,0x33,0x13,0x55,0x55,0x52,0x13,0x55,0x25,0x31,0x11,0x11,0x15,0x55,0x55,0xdb,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x04,0x66,0x66,0x64,0x46,0x46,0x46,0x44,0x46,0x46,0x44,0x66,0x44,0x48,0x46,0x64,0x66,0x64,0x66,0x66,0x62,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x23,0x33,0x33,0x32,0x33,0x33,0x33,0x32,0x23,0x23,0x35,0x31,0x25,0x35,0x11,0x51,0x11,0x55,0x5d,0xd3,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x04,0x66,0x64,0x66,0x64,0x64,0x64,0x46,0x22,0x22,0x23,0xe9,0xb0,0x00,0x00,0x00,0x00,0xb9,0x82,0x46,0x62,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x32,0x23,0x63,0x32,0x49,0xb0,0xbb,0xbb,0xb0,0xb9,0x62,0x23,0x22,0x13,0x11,0x15,0xd5,0xdd,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0xbc,0x97,0x78,0x46,0x64,0x66,0x46,0x35,0x55,0x5d,0xb0,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x66,0x62,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x32,0x32,0x32,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x62,0x63,0x35,0x13,0x11,0x55,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x0b,0x94,0x46,0x46,0x42,0x35,0x55,0x5f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x26,0x26,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x43,0x23,0x2e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x66,0x62,0x31,0x51,0x55,0x5d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x04,0xa6,0x64,0x46,0x35,0x55,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x62,0x38,0x00,0x00,0x90,0x00,0x00,0x0b,0x00,0x00,0x93,0x31,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x26,0x63,0x13,0x51,0x55,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x64,0x66,0x66,0x21,0x55,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x86,0x28,0x00,0x04,0x44,0xbc,0xbc,0x94,0x40,0x00,0xc6,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x66,0x23,0x51,0x11,0x15,0x5f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x66,0x68,0x66,0x21,0x55,0x5a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x36,0x79,0x83,0x22,0xa6,0x44,0x63,0x38,0x9c,0x72,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc6,0x44,0x23,0x51,0x11,0x15,0xd0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x46,0x66,0x64,0x61,0x55,0x55,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x62,0xa6,0x62,0x22,0x22,0x33,0x32,0x32,0xa2,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x66,0x21,0x11,0x51,0x55,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x92,0x6a,0x66,0x63,0x55,0x55,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc6,0x23,0x22,0x62,0x22,0x23,0x22,0x23,0x33,0x69,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x46,0x21,0x11,0x5d,0x55,0xd0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x96,0xa6,0x66,0x83,0x15,0x55,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x32,0x32,0x22,0x22,0x32,0x22,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x46,0x11,0x11,0x15,0x55,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x09,0x86,0x66,0x66,0x66,0x35,0x55,0x5f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x88,0x22,0x22,0x23,0x23,0x33,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x64,0x46,0x51,0x11,0x1d,0x55,0x15,0x5a,0xb0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x0b,0x76,0x66,0x66,0x66,0x62,0x35,0x55,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x63,0x23,0x36,0x31,0x2e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc6,0x74,0x43,0x15,0x15,0x55,0x11,0x55,0x55,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x92,0x22,0x66,0x6a,0x66,0x6a,0x21,0x55,0x53,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x22,0x32,0x31,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x74,0x61,0x15,0x11,0x15,0x51,0x55,0x55,0x55,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0xb6,0x32,0x66,0x26,0x26,0x26,0x66,0x63,0x15,0x51,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x92,0x33,0x23,0x2d,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x44,0x44,0x35,0x11,0x11,0x55,0x15,0x55,0x55,0x55,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0xa2,0x22,0x26,0x36,0x26,0x3a,0x63,0x82,0x31,0x15,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x92,0x32,0x22,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x77,0x46,0x35,0x15,0x51,0x15,0x1d,0x55,0x55,0x55,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x42,0x26,0x22,0x6a,0x62,0x66,0x62,0x62,0x31,0x11,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x73,0x33,0x33,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x77,0x43,0x51,0x51,0x15,0x5d,0x55,0x55,0x55,0x51,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0xb4,0x32,0x22,0x22,0x22,0x22,0x63,0x2a,0x23,0x31,0x15,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x93,0x32,0x23,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x47,0x74,0x21,0x51,0x55,0x55,0x55,0x55,0x55,0x55,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x08,0x2a,0x2a,0x62,0x22,0x22,0x22,0x26,0x22,0x33,0x33,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x76,0x13,0x32,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc7,0x77,0x74,0x11,0x15,0xd5,0xd5,0x5d,0x3a,0xd5,0x55,0xdf,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x09,0x63,0x23,0x22,0x22,0x22,0x22,0x22,0x22,0x21,0x33,0x13,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x73,0x32,0x32,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x77,0x77,0x43,0x55,0x15,0x15,0x55,0xd8,0x00,0xfa,0x11,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x42,0x36,0x28,0x8f,0x82,0x2a,0x22,0x22,0x23,0x33,0x33,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x93,0x33,0x33,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc7,0x77,0x74,0x21,0x1d,0x11,0x55,0x5d,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x0c,0x9b,0x9b,0x00,0x07,0x32,0x22,0x22,0x22,0x33,0x32,0x32,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x72,0x33,0x23,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xc7,0x77,0x72,0x15,0x55,0x51,0x55,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x83,0x22,0x23,0x22,0x23,0x33,0x23,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x92,0x13,0x33,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc7,0x7c,0x77,0x65,0xd5,0x15,0xd5,0x55,0xd0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb6,0x33,0x22,0x23,0x22,0x33,0x22,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x33,0x31,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0xbc,0x77,0x7c,0x76,0x15,0x15,0x15,0x1d,0x5d,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x33,0x33,0x32,0x23,0x23,0x22,0x23,0x34,0x90,0x00,0x00,0x00,0x00,0x00,0x72,0x13,0x33,0x3e,0x00,0x00,0x00,0x00,0x00,0x0c,0x77,0x7c,0x77,0x61,0x11,0x5d,0x51,0x55,0x5d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x22,0x26,0x33,0x23,0x23,0x22,0x22,0x2a,0x66,0xb0,0x00,0x00,0x00,0x00,0x93,0x12,0x13,0x5a,0x00,0x00,0x00,0x00,0x0b,0x77,0x77,0xc7,0x72,0x15,0x51,0x51,0xd5,0x55,0x51,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x33,0x33,0x23,0x36,0x33,0x32,0x26,0xa6,0x62,0x64,0x70,0x00,0x00,0x00,0x82,0x11,0x33,0x1e,0x00,0x00,0x00,0x0c,0x77,0x77,0xc7,0x74,0x35,0x55,0x15,0x55,0x55,0x55,0x51,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb3,0x33,0x33,0x63,0x33,0x36,0x33,0x22,0x66,0x46,0x26,0x67,0xc0,0x00,0x00,0x43,0x33,0x13,0x52,0xb0,0x00,0xbc,0x74,0x77,0x77,0x77,0x62,0x15,0x11,0x11,0x55,0x15,0x55,0x55,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0x32,0x33,0x32,0x32,0x33,0x33,0x33,0x22,0x64,0x44,0x46,0x66,0x47,0xbb,0x21,0x13,0x13,0x1a,0x79,0x94,0x64,0x47,0x77,0x77,0x42,0x35,0x5d,0x5d,0x5d,0x11,0x51,0x55,0x15,0x51,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x33,0x33,0x33,0x33,0x33,0x32,0x23,0x23,0x33,0x36,0x64,0x44,0x44,0x44,0x44,0x23,0x35,0x25,0x23,0x64,0x44,0x47,0x74,0x74,0x62,0x15,0x11,0x51,0x55,0x55,0x5d,0x51,0x15,0x55,0x55,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x93,0x33,0x23,0x23,0x23,0x23,0x23,0x33,0x33,0x33,0x33,0x22,0x44,0x47,0x47,0x74,0x33,0x13,0x15,0x32,0x44,0x44,0x44,0x44,0x62,0x31,0x11,0x55,0x15,0x15,0x55,0x55,0x55,0x51,0x55,0x55,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x83,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x22,0x24,0x44,0x74,0x21,0x12,0x13,0x32,0x64,0x44,0x66,0x23,0x35,0x51,0x5d,0x15,0x55,0x15,0x55,0xd5,0x55,0x51,0x55,0x55,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x92,0x53,0x33,0x33,0x31,0x52,0x33,0x13,0x33,0x33,0x31,0x33,0x33,0x32,0x26,0x66,0x23,0x53,0x11,0x52,0x66,0x62,0x23,0x55,0x51,0x15,0x15,0x51,0xd1,0x55,0xde,0xb0,0x85,0x55,0x55,0x5e,0xb0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x31,0x33,0x31,0x32,0xe8,0x98,0x23,0x13,0x33,0x33,0x11,0x33,0x13,0x33,0x13,0x53,0x51,0x23,0x35,0x11,0x51,0x51,0x11,0x11,0x11,0x11,0x55,0x55,0x5d,0xf0,0x00,0x08,0x15,0x55,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x51,0x53,0xa8,0x00,0x00,0xba,0x11,0x13,0x13,0x33,0x11,0x31,0x11,0x15,0x25,0x25,0x15,0x13,0x15,0x11,0x11,0x11,0x11,0x55,0x5d,0x15,0x5d,0xd0,0x00,0x00,0x00,0x05,0x5a,0xb0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x22,0x29,0x00,0x00,0x00,0x00,0x73,0x13,0x13,0x13,0x31,0x31,0x12,0x31,0x25,0x25,0x33,0x53,0x11,0x11,0x11,0x11,0x51,0x1d,0x55,0x15,0x5d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb9,0xb0,0x00,0x00,0x00,0x00,0xb2,0x51,0x31,0x11,0x11,0x31,0x35,0x35,0x31,0x13,0x11,0x11,0x11,0x11,0x11,0x5d,0x5d,0x55,0x55,0xd5,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x93,0x51,0x33,0x13,0x31,0x35,0x35,0x25,0x35,0x35,0x31,0x35,0x11,0x15,0x51,0x55,0x55,0x51,0x55,0x55,0xd8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x13,0x15,0x21,0x13,0x53,0x51,0x53,0x53,0x53,0x55,0x11,0x11,0x51,0x55,0x55,0x55,0x15,0x15,0x55,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x35,0x31,0x25,0x35,0x35,0x52,0x22,0x35,0x35,0x53,0x51,0x11,0x55,0x5d,0xd8,0x88,0xa5,0x55,0x55,0x55,0x5a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x35,0x31,0x13,0x52,0x55,0xe0,0x00,0x92,0x53,0x15,0x15,0x15,0x5d,0xe0,0x00,0x00,0x05,0x55,0x15,0x55,0x5a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x15,0x35,0x33,0x55,0x5e,0x00,0x00,0x0a,0x15,0x11,0x15,0x15,0x5e,0x00,0x00,0x00,0x08,0x55,0x11,0x55,0x51,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x55,0x31,0x35,0x35,0xdb,0x00,0x00,0x08,0x15,0x11,0x5d,0x55,0xdf,0x00,0x00,0x00,0x0b,0x55,0x55,0x55,0x5a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x43,0x55,0x55,0x53,0x80,0x00,0x00,0x09,0x35,0x51,0x51,0x55,0xe0,0x00,0x00,0x00,0x00,0x85,0x55,0x55,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x46,0x31,0x38,0x00,0x00,0x00,0x0f,0x35,0x15,0x15,0x55,0x30,0x00,0x00,0x00,0x00,0x08,0x3a,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x98,0x00,0x00,0x00,0x00,0x0f,0x35,0x55,0x55,0x55,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x15,0x55,0x55,0x5d,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xba,0xa8,0xaa,0xa8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
|
||||
};
|
||||
|
||||
const lv_img_dsc_t img_benchmark_cogwheel_indexed16 = {
|
||||
.header.magic = LV_IMAGE_HEADER_MAGIC,
|
||||
.header.cf = LV_COLOR_FORMAT_I4,
|
||||
.header.flags = 0,
|
||||
.header.w = 100,
|
||||
.header.h = 100,
|
||||
.header.stride = 64,
|
||||
.data_size = 6464,
|
||||
.data = img_benchmark_cogwheel_indexed16_map,
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,142 @@
|
||||
#ifdef __has_include
|
||||
#if __has_include("lvgl.h")
|
||||
#ifndef LV_LVGL_H_INCLUDE_SIMPLE
|
||||
#define LV_LVGL_H_INCLUDE_SIMPLE
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
|
||||
#include "lvgl.h"
|
||||
#else
|
||||
#include "lvgl/lvgl.h"
|
||||
#endif
|
||||
|
||||
#if LV_USE_DEMO_BENCHMARK
|
||||
#ifndef LV_ATTRIBUTE_MEM_ALIGN
|
||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||
#endif
|
||||
|
||||
#ifndef LV_ATTRIBUTE_IMAGE_IMG_BENCHMARK_COGWHEEL_RGB
|
||||
#define LV_ATTRIBUTE_IMAGE_IMG_BENCHMARK_COGWHEEL_RGB
|
||||
#endif
|
||||
|
||||
static const
|
||||
LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMAGE_IMG_BENCHMARK_COGWHEEL_RGB
|
||||
uint8_t img_benchmark_cogwheel_rgb_map[] = {
|
||||
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xd5,0x8c,0xf2,0x6b,0xd1,0x63,0xd2,0x6b,0xd2,0x6b,0xb1,0x63,0x12,0x74,0x9a,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x53,0x7c,0xb1,0x63,0xd1,0x63,0xd2,0x63,0xd1,0x63,0xb1,0x63,0xb1,0x63,0x53,0x7c,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x33,0x74,0xd1,0x63,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xb1,0x63,0xf2,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x9a,0xd6,0x15,0x95,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xd5,0x8c,0x33,0x74,0xd8,0xb5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xde,0x33,0x74,0xd2,0x63,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xb1,0x63,0xf2,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x9a,0xce,0x90,0x63,0x90,0x5b,0x70,0x5b,0xf1,0x6b,0xd4,0x8c,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x7a,0xc6,0xb5,0x84,0x74,0x7c,0x54,0x74,0x13,0x74,0x53,0x74,0x19,0xbe,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x19,0xbe,0x33,0x74,0xd2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x63,0xf2,0x6b,0x93,0x8c,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x53,0x7c,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x90,0x63,0xb1,0x63,0xf1,0x6b,0x73,0x7c,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf9,0xbd,0x74,0x7c,0x13,0x6c,0x33,0x74,0x33,0x74,0x53,0x74,0x13,0x6c,0x74,0x7c,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xd5,0x8c,0x13,0x74,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xd2,0x6b,0x12,0x7c,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x56,0xa5,0xb1,0x63,0x90,0x63,0xb0,0x63,0xb0,0x63,0x90,0x63,0x70,0x5b,0x4f,0x53,0x70,0x5b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x1c,0xdf,0xd5,0x8c,0x13,0x74,0x54,0x74,0x54,0x7c,0x54,0x74,0x54,0x74,0x33,0x74,0x33,0x74,0x5a,0xc6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x94,0x84,0x13,0x74,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd1,0x6b,0xf1,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x12,0x74,0x70,0x5b,0xb1,0x63,0xb1,0x63,0xb0,0x63,0x90,0x63,0x90,0x63,0x4f,0x5b,0x70,0x5b,0x9a,0xce,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x77,0xa5,0x34,0x74,0x54,0x7c,0x54,0x7c,0x54,0x74,0x54,0x74,0x34,0x74,0x33,0x74,0x53,0x74,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x54,0x7c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd1,0x63,0xf1,0x73,0xbb,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x59,0xc6,0xf1,0x6b,0x90,0x5b,0xb1,0x63,0xb1,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x70,0x5b,0xb0,0x63,0x56,0xa5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xd8,0xb5,0x54,0x7c,0x54,0x74,0x54,0x7c,0x54,0x74,0x54,0x74,0x54,0x74,0x33,0x74,0x13,0x6c,0x97,0xa5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x39,0xbe,0x13,0x74,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd1,0x6b,0xd1,0x6b,0x53,0x7c,0xbb,0xd6,0xfb,0xde,0xfb,0xde,0xdb,0xde,0xf2,0x6b,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x70,0x5b,0xb0,0x6b,0x35,0xa5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xb8,0xad,0x54,0x74,0x54,0x74,0x54,0x7c,0x54,0x74,0x54,0x74,0x34,0x74,0x33,0x74,0x33,0x74,0x54,0x7c,0xb8,0xad,0xdb,0xd6,0xdb,0xd6,0xba,0xd6,0xd8,0xb5,0x94,0x84,0x13,0x74,0xf2,0x6b,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xf2,0x6b,0xd1,0x63,0x53,0x7c,0xb8,0xad,0x9a,0xce,0x73,0x7c,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb0,0x63,0x90,0x63,0x90,0x5b,0x70,0x5b,0xb0,0x6b,0x76,0xad,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x7a,0xce,0x75,0x7c,0x34,0x74,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x34,0x74,0x34,0x74,0x53,0x74,0x33,0x74,0x13,0x74,0x33,0x74,0x33,0x74,0x13,0x6c,0xf2,0x6b,0x13,0x74,0x13,0x74,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xf1,0x6b,0xd1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb0,0x63,0x90,0x63,0x90,0x5b,0x70,0x5b,0xb0,0x73,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x37,0x9d,0x54,0x7c,0x54,0x74,0x54,0x7c,0x54,0x74,0x54,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x13,0x74,0x13,0x6c,0x13,0x74,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xd1,0x6b,0xd1,0x63,0xd1,0x6b,0xd1,0x6b,0xb1,0x63,0xd1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb0,0x63,0x90,0x63,0x90,0x5b,0x90,0x63,0xf1,0x7b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xb7,0xad,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfc,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x5a,0xc6,0x74,0x7c,0x34,0x74,0x54,0x7c,0x54,0x7c,0x54,0x74,0x53,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x13,0x74,0x13,0x74,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xd1,0x6b,0xd1,0x6b,0xd1,0x6b,0xd1,0x6b,0xd1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb0,0x63,0x90,0x63,0x90,0x5b,0x90,0x63,0xf0,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x18,0xbe,0x32,0x74,0xb0,0x63,0xd1,0x6b,0xf8,0xb5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf9,0xb5,0xf6,0x8c,0x37,0x95,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x77,0xa5,0x54,0x7c,0x54,0x74,0x54,0x7c,0x54,0x74,0x54,0x74,0x34,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x13,0x74,0x13,0x74,0x13,0x74,0x13,0x74,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd1,0x6b,0xd1,0x6b,0xd1,0x63,0xd1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb0,0x63,0x90,0x63,0x90,0x63,0x70,0x5b,0xb0,0x6b,0x18,0xbe,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xd4,0x8c,0xd1,0x63,0x4f,0x53,0xd1,0x6b,0x0e,0x4b,0x90,0x63,0x76,0xad,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x98,0xa5,0xb6,0x84,0x55,0x7c,0x75,0x7c,0xb6,0x84,0xdb,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x19,0xbe,0x74,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x74,0x54,0x74,0x54,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x13,0x74,0x13,0x74,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd1,0x6b,0xd1,0x63,0xd1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0x90,0x63,0x90,0x63,0xb0,0x63,0x70,0x5b,0xf1,0x6b,0xf8,0xbd,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x52,0x7c,0x90,0x5b,0x2f,0x53,0x4f,0x53,0x6f,0x5b,0x6f,0x5b,0x0e,0x4b,0x6f,0x5b,0x35,0x9d,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xb8,0xad,0xb6,0x84,0x95,0x7c,0x95,0x84,0x75,0x7c,0x75,0x7c,0x95,0x84,0xf9,0xb5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x7a,0xce,0xb5,0x84,0x74,0x7c,0x54,0x7c,0x74,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x74,0x34,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x13,0x74,0xf2,0x6b,0xd1,0x6b,0xd1,0x63,0xf2,0x6b,0x12,0x6c,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xd1,0x6b,0xd1,0x6b,0xd1,0x63,0xd1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0xb0,0x63,0x70,0x5b,0x90,0x63,0xf1,0x6b,0x9a,0xce,0xfb,0xde,0x11,0x74,0x6f,0x5b,0x2f,0x53,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x0e,0x4b,0x6f,0x5b,0xb7,0xad,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x19,0xbe,0xb6,0x84,0x75,0x7c,0x96,0x84,0x95,0x84,0x95,0x84,0x95,0x84,0x75,0x7c,0x95,0x84,0x78,0xa5,0xfb,0xde,0xfb,0xde,0x7a,0xc6,0xb5,0x84,0x54,0x74,0x54,0x7c,0x74,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x74,0x54,0x74,0x54,0x74,0x54,0x74,0x33,0x74,0x12,0x6c,0xd1,0x63,0x90,0x63,0x6f,0x5b,0x4f,0x53,0x2e,0x53,0x4f,0x53,0xd1,0x6b,0x12,0x6c,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0x90,0x63,0x4e,0x53,0x2e,0x53,0x2e,0x53,0x4f,0x53,0x70,0x5b,0x90,0x63,0xb1,0x63,0xd1,0x63,0xd1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0xb0,0x63,0x4f,0x53,0x6f,0x5b,0x12,0x74,0x11,0x74,0x4f,0x5b,0x4f,0x53,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x6f,0x5b,0x4f,0x53,0x2e,0x53,0x93,0x84,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x57,0x9d,0x75,0x7c,0x95,0x84,0x95,0x84,0x95,0x84,0x95,0x84,0x95,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x95,0x84,0x95,0x7c,0x75,0x7c,0x54,0x7c,0x74,0x7c,0x74,0x7c,0x74,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x74,0x13,0x74,0xf2,0x6b,0xb1,0x63,0x70,0x5b,0x4f,0x53,0x0e,0x4b,0xed,0x4a,0xed,0x4a,0xcc,0x42,0x0e,0x53,0xd1,0x63,0x13,0x6c,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0x70,0x5b,0x0d,0x4b,0xcc,0x42,0xed,0x4a,0xed,0x4a,0x0e,0x4b,0x2e,0x53,0x4f,0x53,0x6f,0x5b,0x90,0x5b,0xb1,0x63,0xb1,0x63,0xb1,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x5b,0x90,0x5b,0x90,0x5b,0x70,0x5b,0x4f,0x53,0x4f,0x53,0x6f,0x5b,0x70,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x4f,0x5b,0x2e,0x53,0x4f,0x5b,0x35,0x9d,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x78,0xa5,0x75,0x7c,0x95,0x7c,0x95,0x84,0x95,0x7c,0x95,0x7c,0x75,0x7c,0x75,0x7c,0x95,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x74,0x7c,0x74,0x7c,0x74,0x7c,0x74,0x7c,0x74,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x74,0x33,0x74,0xf2,0x6b,0x90,0x5b,0x2e,0x53,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0x2e,0x53,0xd1,0x63,0x12,0x6c,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0x90,0x5b,0x0e,0x4b,0xed,0x42,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x2e,0x53,0x6f,0x5b,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x5b,0x90,0x5b,0x90,0x5b,0x70,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x4f,0x53,0x2e,0x53,0x8f,0x63,0x96,0xad,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x9b,0xce,0x95,0x84,0x75,0x7c,0x95,0x84,0x95,0x7c,0x95,0x7c,0x75,0x7c,0x95,0x7c,0x95,0x7c,0x95,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x74,0x7c,0x74,0x7c,0x74,0x7c,0x74,0x7c,0x74,0x7c,0x34,0x74,0xd2,0x6b,0x6f,0x5b,0x2e,0x53,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0x2e,0x53,0xd1,0x63,0x12,0x6c,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0x90,0x5b,0x0e,0x4b,0xed,0x42,0xed,0x42,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0x0e,0x4b,0x2e,0x53,0x2e,0x53,0x4f,0x5b,0x90,0x5b,0x90,0x63,0x90,0x63,0x90,0x5b,0x90,0x5b,0x90,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x4f,0x53,0x2e,0x53,0xd0,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x5a,0xc6,0x75,0x7c,0x75,0x7c,0x95,0x84,0x95,0x7c,0x95,0x7c,0x95,0x7c,0x95,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x74,0x7c,0x74,0x7c,0x75,0x7c,0x54,0x7c,0xf2,0x6b,0x90,0x5b,0x2e,0x53,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xcd,0x4a,0x0d,0x53,0x4e,0x5b,0x6f,0x63,0xd1,0x6b,0x13,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd1,0x6b,0x2f,0x5b,0xac,0x4a,0xed,0x52,0x4e,0x5b,0x2e,0x53,0xed,0x4a,0xac,0x42,0xed,0x42,0x0d,0x4b,0x0e,0x53,0x0e,0x53,0x0e,0x53,0x2e,0x53,0x4f,0x53,0x6f,0x5b,0x90,0x5b,0x90,0x63,0x90,0x63,0x90,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x53,0x2e,0x53,0x6f,0x63,0x15,0xa5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x5a,0xc6,0x75,0x7c,0x75,0x7c,0x95,0x7c,0x95,0x7c,0x95,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x74,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x33,0x74,0xd1,0x6b,0x4f,0x53,0xed,0x4a,0xec,0x4a,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xed,0x4a,0x0d,0x53,0x8f,0x63,0x32,0x7c,0xd7,0xb5,0xfb,0xde,0xdb,0xde,0x33,0x7c,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0x12,0x6c,0xb1,0x63,0x0e,0x5b,0x2e,0x63,0x39,0xc6,0xfb,0xde,0xfb,0xde,0xba,0xd6,0x52,0x7c,0xd0,0x63,0x0e,0x4b,0xed,0x4a,0xee,0x4a,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2f,0x53,0x6f,0x5b,0x90,0x5b,0x90,0x63,0x90,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x53,0x0e,0x5b,0xaf,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xd6,0x8c,0x75,0x7c,0x95,0x7c,0x95,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x74,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x34,0x74,0x90,0x63,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0x0d,0x53,0x2e,0x5b,0xaf,0x73,0x31,0x84,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf5,0x8c,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0x90,0x63,0x6f,0x63,0x97,0xb5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xde,0x72,0x84,0xb0,0x63,0x4f,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x5b,0x70,0x5b,0x90,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0xee,0x52,0x4e,0x63,0xd7,0xbd,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf6,0x8c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x95,0x7c,0x75,0x7c,0x13,0x74,0x70,0x5b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0x2d,0x5b,0xd0,0x7b,0x9a,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x16,0x95,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0x90,0x63,0xb0,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x7a,0xce,0xb0,0x63,0x2e,0x53,0x2e,0x53,0x4f,0x5b,0x4f,0x5b,0x4f,0x5b,0x6f,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x53,0x0e,0x53,0xd0,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf6,0x8c,0x74,0x7c,0x74,0x7c,0x75,0x7c,0x75,0x7c,0x74,0x7c,0x75,0x7c,0x95,0x7c,0x75,0x7c,0x13,0x6c,0x70,0x5b,0x0d,0x4b,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0x0d,0x53,0xaf,0x73,0x9a,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf5,0x94,0x12,0x74,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xb1,0x63,0xd0,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x59,0xc6,0xd1,0x6b,0x0e,0x53,0x4f,0x53,0x70,0x5b,0x6f,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x53,0x2e,0x53,0xf1,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x39,0xbe,0x95,0x84,0x74,0x7c,0x75,0x7c,0x75,0x7c,0x74,0x7c,0x75,0x7c,0x75,0x7c,0x75,0x7c,0x13,0x6c,0x6f,0x5b,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0e,0x4b,0xed,0x4a,0x4e,0x63,0x31,0x84,0xba,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf5,0x94,0x12,0x74,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xb1,0x63,0xd1,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x7a,0xce,0x12,0x74,0x6f,0x5b,0x4f,0x53,0x90,0x63,0x90,0x5b,0x90,0x5b,0x90,0x5b,0x70,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x2e,0x53,0x90,0x63,0x97,0xad,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xb5,0x84,0x54,0x7c,0x74,0x7c,0x74,0x7c,0x74,0x7c,0x74,0x7c,0x75,0x7c,0x75,0x7c,0x13,0x74,0x6f,0x5b,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0x0e,0x4b,0x2e,0x53,0xed,0x52,0x6e,0x6b,0xf7,0xbd,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf5,0x94,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xb1,0x63,0xd1,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x15,0x9d,0x70,0x5b,0x70,0x5b,0xb0,0x63,0x90,0x63,0xb0,0x63,0x90,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x2e,0x53,0x90,0x5b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xde,0xf8,0xb5,0xd7,0xb5,0x76,0xa5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xb8,0xad,0x74,0x7c,0x54,0x7c,0x74,0x7c,0x74,0x7c,0x74,0x7c,0x75,0x7c,0x75,0x7c,0x33,0x74,0x6f,0x5b,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0x0e,0x4b,0x0e,0x53,0xed,0x52,0xd0,0x7b,0x9a,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf5,0x94,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xb1,0x63,0xf1,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x39,0xbe,0xf1,0x6b,0x70,0x5b,0xb0,0x63,0xb1,0x63,0xb1,0x63,0x90,0x63,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x4f,0x5b,0x4f,0x5b,0x2e,0x53,0x2e,0x53,0x56,0x9d,0x39,0xc6,0x39,0xc6,0x18,0xbe,0x96,0xad,0xf1,0x6b,0x6f,0x5b,0x0e,0x4b,0xed,0x4a,0x11,0x74,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf6,0x94,0x36,0x95,0xbb,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x39,0xbe,0x54,0x7c,0x54,0x74,0x75,0x7c,0x74,0x7c,0x74,0x7c,0x74,0x7c,0x75,0x7c,0x33,0x74,0x90,0x5b,0x0d,0x4b,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0d,0x53,0xed,0x52,0xd0,0x7b,0x9a,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf5,0x94,0x12,0x6c,0xd2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xb1,0x63,0xf1,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x39,0xc6,0xf1,0x6b,0x90,0x5b,0xd1,0x63,0xd1,0x63,0xb1,0x63,0x90,0x5b,0x6f,0x5b,0x4f,0x5b,0x6f,0x5b,0x4f,0x5b,0x4f,0x53,0x4f,0x5b,0x4f,0x53,0x4f,0x5b,0x90,0x63,0xb0,0x63,0x4f,0x5b,0x0e,0x4b,0x0e,0x4b,0x8f,0x63,0x8f,0x63,0x6f,0x5b,0x4e,0x53,0x73,0x84,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xb5,0x84,0x34,0x74,0x54,0x7c,0x95,0x7c,0xb5,0x8c,0xf6,0x94,0x57,0x9d,0x19,0xbe,0xb8,0xad,0xb5,0x84,0x54,0x7c,0x74,0x7c,0x74,0x7c,0x74,0x7c,0x74,0x7c,0x74,0x7c,0x54,0x74,0xb1,0x63,0x0d,0x4b,0xed,0x4a,0x0d,0x4b,0x0e,0x4b,0x2e,0x53,0xed,0x52,0xf0,0x7b,0xba,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf5,0x94,0x12,0x6c,0xd2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xb1,0x63,0xf1,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x39,0xbe,0x12,0x6c,0xb1,0x63,0xd1,0x6b,0xd1,0x6b,0xd1,0x63,0x90,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x2e,0x53,0x0e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0xed,0x4a,0xb0,0x63,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xd6,0x74,0x7c,0x33,0x74,0x54,0x7c,0x34,0x74,0x54,0x74,0x54,0x7c,0x74,0x7c,0x95,0x84,0x95,0x84,0x54,0x7c,0x74,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x74,0x7c,0x54,0x7c,0xd1,0x6b,0x2e,0x53,0xed,0x4a,0x0d,0x4b,0x0e,0x4b,0x0e,0x4b,0xed,0x52,0xd0,0x7b,0xba,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf5,0x94,0x12,0x6c,0xd2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xb1,0x63,0xf1,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x39,0xc6,0xf2,0x6b,0xb1,0x63,0xd2,0x6b,0xd2,0x6b,0xb1,0x63,0x90,0x5b,0x4f,0x5b,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0xed,0x4a,0x2e,0x53,0x39,0xc6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xb5,0x84,0x54,0x74,0x54,0x74,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x74,0x34,0x74,0x54,0x74,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x33,0x74,0x6f,0x5b,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0e,0x4b,0xed,0x52,0x6f,0x6b,0x9a,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf5,0x94,0x12,0x6c,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x63,0xb1,0x63,0xd1,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xd5,0x8c,0xb1,0x63,0xd2,0x63,0xf2,0x6b,0xf2,0x6b,0xb1,0x63,0x4f,0x5b,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x4b,0x0e,0x53,0xd0,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x33,0x74,0x33,0x74,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x74,0x7c,0x34,0x74,0xb1,0x63,0x0e,0x53,0xed,0x4a,0x0d,0x4b,0x0e,0x4b,0xed,0x4a,0x4e,0x63,0xf8,0xc5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf5,0x94,0xf2,0x6b,0xd2,0x6b,0xf2,0x6b,0xd2,0x6b,0xd2,0x63,0xb1,0x63,0xd1,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x74,0x7c,0xd2,0x63,0xf2,0x6b,0x13,0x74,0xf2,0x6b,0x90,0x5b,0x4f,0x5b,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x4b,0x0e,0x4b,0x4e,0x5b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0x9a,0xce,0x13,0x74,0x13,0x74,0x54,0x74,0x54,0x74,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0xf2,0x6b,0x2e,0x53,0xed,0x4a,0x0d,0x4b,0x0e,0x4b,0xed,0x4a,0x2d,0x5b,0x52,0x8c,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf5,0x94,0xf2,0x6b,0xd1,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x63,0x91,0x63,0xd1,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xbb,0xd6,0x12,0x6c,0xf2,0x6b,0x13,0x74,0x13,0x74,0xd1,0x6b,0x6f,0x5b,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0xed,0x4a,0x0e,0x53,0x31,0x7c,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0x9a,0xce,0x33,0x74,0x13,0x74,0x33,0x74,0x34,0x74,0x54,0x74,0x54,0x74,0x54,0x74,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x7c,0x54,0x74,0x54,0x74,0x54,0x7c,0x33,0x74,0xb1,0x63,0x0d,0x4b,0xed,0x4a,0x0e,0x4b,0x0d,0x4b,0xed,0x52,0x11,0x7c,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf5,0x94,0xf2,0x6b,0xd1,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x63,0x90,0x63,0xd1,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf5,0x94,0x13,0x74,0xf2,0x6b,0x33,0x74,0x13,0x6c,0x90,0x63,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x53,0x11,0x7c,0xbb,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x19,0xbe,0x33,0x74,0xf3,0x6b,0x33,0x74,0x53,0x74,0x54,0x74,0x54,0x74,0x54,0x74,0x34,0x74,0x54,0x74,0x54,0x74,0x33,0x74,0x54,0x74,0x54,0x7c,0xf2,0x6b,0x2e,0x53,0xed,0x4a,0x0d,0x4b,0x0e,0x4b,0xed,0x4a,0x4e,0x63,0x9a,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x94,0x84,0xd2,0x6b,0xd1,0x6b,0xd2,0x6b,0xd2,0x6b,0xd1,0x63,0x90,0x63,0xd1,0x6b,0xdb,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x74,0x7c,0xd2,0x6b,0x33,0x74,0x33,0x74,0xd2,0x6b,0x6f,0x5b,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0xed,0x4a,0x4e,0x63,0x55,0xa5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xde,0x57,0xa5,0x74,0x7c,0x13,0x6c,0x13,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x54,0x74,0x34,0x74,0x90,0x63,0xed,0x4a,0xed,0x4a,0x0e,0x4b,0x0d,0x4b,0x2e,0x5b,0x11,0x84,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xbb,0xd6,0xd5,0x8c,0xf2,0x6b,0xd1,0x63,0xd2,0x6b,0xd2,0x6b,0xd1,0x6b,0xd1,0x63,0xb1,0x63,0xd1,0x6b,0x53,0x7c,0xbb,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf9,0xb5,0x13,0x6c,0x33,0x74,0x33,0x74,0x13,0x74,0x90,0x63,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0xed,0x52,0x6f,0x6b,0xd7,0xbd,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x5a,0xc6,0x94,0x84,0x33,0x74,0x53,0x7c,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x34,0x74,0x33,0x74,0x12,0x6c,0x6f,0x5b,0x0d,0x4b,0x0d,0x4b,0x2e,0x4b,0xed,0x4a,0x6f,0x6b,0xba,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xde,0x74,0x7c,0x33,0x74,0xd2,0x6b,0xf2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd1,0x6b,0xd1,0x63,0xd1,0x63,0xd1,0x6b,0xb1,0x63,0x12,0x74,0x94,0x84,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xb5,0x84,0x33,0x74,0x54,0x74,0x54,0x7c,0xd1,0x6b,0x4f,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x4e,0x53,0xed,0x52,0x0d,0x63,0xf7,0xbd,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x5a,0xc6,0x74,0x7c,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x54,0x74,0x33,0x74,0xb1,0x63,0x2e,0x53,0x0d,0x4b,0x0e,0x4b,0x0e,0x4b,0x0d,0x53,0x10,0x84,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x19,0xbe,0x13,0x74,0xb1,0x63,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd1,0x6b,0xd1,0x6b,0xd1,0x63,0xd1,0x63,0xd1,0x63,0xb1,0x63,0x90,0x63,0x90,0x5b,0xf2,0x6b,0x7a,0xce,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x7a,0xce,0x33,0x74,0x54,0x74,0x74,0x7c,0x13,0x6c,0x90,0x5b,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x4f,0x53,0xed,0x52,0x76,0xb5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xde,0x94,0x84,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x34,0x74,0x33,0x74,0x70,0x5b,0x0d,0x4b,0x0e,0x4b,0x2e,0x4b,0x0d,0x4b,0x2e,0x5b,0x96,0xb5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xb4,0x84,0xb1,0x63,0x90,0x63,0xd2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd1,0x6b,0xd1,0x6b,0xd1,0x63,0xd1,0x63,0xb1,0x63,0xd1,0x63,0xd1,0x63,0xd1,0x6b,0x4f,0x5b,0xb0,0x63,0x94,0x84,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x54,0x74,0x54,0x74,0x75,0x7c,0x54,0x74,0xd1,0x63,0x4f,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x6f,0x5b,0x2e,0x5b,0xba,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xbb,0xd6,0x53,0x74,0x53,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x12,0x6c,0x4f,0x53,0xed,0x4a,0x0e,0x4b,0x0e,0x4b,0xed,0x52,0xb0,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf6,0x94,0x90,0x5b,0xd0,0x6b,0xb0,0x63,0xf2,0x6b,0xf2,0x6b,0xd1,0x63,0xd1,0x63,0xb1,0x63,0x90,0x63,0x90,0x63,0x90,0x5b,0x91,0x5b,0xb1,0x63,0xb1,0x63,0xd1,0x63,0x90,0x63,0x90,0x63,0x4f,0x53,0xb0,0x63,0x70,0x5b,0x76,0xa5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xb5,0x84,0x74,0x7c,0x75,0x7c,0x75,0x7c,0xf2,0x6b,0x4f,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x4f,0x53,0x0e,0x53,0xb7,0xb5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x9a,0xd6,0x13,0x6c,0x53,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0xd1,0x63,0x2e,0x53,0xed,0x4a,0x0e,0x4b,0x0e,0x4b,0xed,0x52,0x35,0xa5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x19,0xbe,0xd2,0x6b,0x4f,0x53,0x4e,0x5b,0xf4,0x94,0x76,0xa5,0x53,0x7c,0xb1,0x63,0x70,0x5b,0x70,0x5b,0x90,0x5b,0x90,0x5b,0xb0,0x63,0xb1,0x63,0xb1,0x63,0x90,0x5b,0x90,0x5b,0xd1,0x6b,0x11,0x7c,0x72,0x84,0x6f,0x5b,0x4f,0x53,0xb1,0x63,0xbb,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xd6,0x95,0x84,0x75,0x7c,0xb5,0x84,0x33,0x74,0x4f,0x53,0x0e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0xed,0x4a,0x11,0x74,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x39,0xc6,0xf2,0x6b,0x33,0x74,0x13,0x74,0x13,0x74,0x33,0x74,0x12,0x6c,0xb1,0x63,0x2e,0x53,0x0d,0x4b,0x0e,0x4b,0x0e,0x53,0x2e,0x63,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xde,0x33,0x74,0xb1,0x63,0x6f,0x5b,0x92,0x84,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x73,0x7c,0x32,0x74,0xb3,0x8c,0x76,0xad,0x56,0xa5,0x97,0xad,0xb7,0xad,0xf5,0x8c,0x12,0x74,0x32,0x7c,0x96,0xad,0xfb,0xde,0xfb,0xde,0xf5,0x94,0x70,0x5b,0x4f,0x5b,0x12,0x74,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xb6,0x84,0x75,0x7c,0xb6,0x84,0x54,0x7c,0x90,0x5b,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x4b,0xb0,0x63,0xbb,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x16,0x95,0xd2,0x63,0x13,0x74,0x13,0x74,0x13,0x74,0x33,0x74,0xf2,0x6b,0x90,0x5b,0x2e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x53,0x8f,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x74,0x7c,0xd2,0x6b,0xd2,0x6b,0x90,0x5b,0xd4,0x8c,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x7a,0xce,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x7a,0xce,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x15,0x95,0x90,0x5b,0x70,0x5b,0x70,0x5b,0x56,0xa5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xd6,0x8c,0x75,0x7c,0xb6,0x84,0x75,0x7c,0xd1,0x6b,0x4f,0x53,0x0e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x4b,0x2e,0x53,0x52,0x7c,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xde,0x94,0x84,0xd2,0x6b,0x13,0x74,0x13,0x74,0x13,0x74,0x33,0x74,0xf2,0x6b,0x4f,0x5b,0x0e,0x4b,0x2e,0x53,0x0e,0x53,0x0e,0x53,0xf0,0x7b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xd6,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xb1,0x63,0x33,0x74,0xba,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x39,0xc6,0x12,0x74,0x70,0x5b,0x90,0x5b,0x90,0x5b,0xd1,0x6b,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf6,0x8c,0x55,0x7c,0xb6,0x84,0x95,0x7c,0xf2,0x6b,0x4f,0x5b,0x0e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0xd0,0x6b,0xd0,0x6b,0xd0,0x6b,0x6f,0x5b,0x72,0x7c,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf8,0xb5,0x94,0x84,0x13,0x74,0x12,0x6c,0x13,0x74,0x13,0x74,0x13,0x74,0x13,0x74,0xf2,0x6b,0x70,0x5b,0x4f,0x53,0x4f,0x5b,0x4f,0x53,0x4f,0x5b,0x11,0x7c,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x39,0xbe,0xd1,0x63,0xd1,0x6b,0xf2,0x6b,0xd2,0x6b,0xb1,0x63,0x12,0x74,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x33,0x7c,0x90,0x5b,0x90,0x5b,0x90,0x63,0x90,0x5b,0x4f,0x53,0x76,0xa5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xde,0x74,0x7c,0x13,0x74,0x54,0x7c,0x34,0x74,0xd2,0x6b,0x4f,0x5b,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x2e,0x53,0x2e,0x4b,0x0e,0x4b,0xcd,0x42,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0x2e,0x53,0x31,0x74,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0x77,0xa5,0xf5,0x8c,0xd5,0x8c,0x74,0x7c,0x33,0x74,0x13,0x74,0xf2,0x6b,0xf2,0x6b,0x13,0x74,0x13,0x74,0x13,0x74,0x12,0x6c,0x13,0x74,0xf2,0x6b,0xd1,0x63,0xd1,0x63,0xd1,0x63,0xd1,0x63,0xb1,0x6b,0xf2,0x73,0x94,0x8c,0x39,0xc6,0xbb,0xd6,0x7a,0xce,0x7a,0xce,0x7a,0xce,0x7a,0xce,0x7a,0xce,0x7a,0xce,0x7a,0xce,0x7a,0xce,0x9a,0xce,0xf8,0xb5,0xb4,0x84,0x32,0x74,0xd1,0x6b,0xd2,0x6b,0xd2,0x6b,0xf2,0x6b,0x4f,0x53,0x6f,0x5b,0x9a,0xce,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf2,0x6b,0x70,0x5b,0x90,0x5b,0x90,0x63,0x90,0x5b,0x6f,0x5b,0xb0,0x63,0x73,0x7c,0xd4,0x8c,0xd4,0x8c,0xb4,0x8c,0xb4,0x8c,0xb4,0x8c,0xb4,0x8c,0xb4,0x8c,0xb4,0x8c,0xb4,0x8c,0xb4,0x8c,0xb4,0x8c,0xb4,0x8c,0xd4,0x8c,0x52,0x7c,0x90,0x63,0x90,0x5b,0xb0,0x63,0x90,0x63,0x70,0x5b,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x2e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xac,0x42,0x0d,0x4b,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0x12,0x6c,0xd2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x13,0x74,0x13,0x74,0x13,0x74,0x13,0x74,0x13,0x74,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd1,0x6b,0xf2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0x4f,0x53,0x8f,0x63,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x36,0x9d,0xb1,0x63,0x6f,0x5b,0x90,0x5b,0x90,0x5b,0x90,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x4f,0x5b,0x4f,0x5b,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x2f,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x0e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xac,0x42,0x6f,0x5b,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xf2,0x6b,0xb1,0x63,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x63,0xd2,0x63,0xd1,0x63,0xd1,0x63,0xd1,0x63,0xd1,0x63,0xd1,0x63,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd1,0x63,0x4f,0x5b,0xaf,0x63,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x98,0xa5,0xd2,0x6b,0x6f,0x5b,0x90,0x5b,0x90,0x5b,0x70,0x5b,0x6f,0x5b,0x4f,0x5b,0x4f,0x53,0x4f,0x53,0x2f,0x53,0x2f,0x53,0x2f,0x53,0x2f,0x53,0x2f,0x53,0x2f,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x0e,0x53,0x0e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xac,0x42,0x0e,0x53,0xf8,0xbd,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xdb,0xde,0x33,0x74,0xd1,0x63,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd1,0x6b,0xd1,0x6b,0xd1,0x6b,0xd1,0x63,0x4f,0x5b,0xb0,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xb8,0xad,0xf2,0x6b,0x4f,0x5b,0x70,0x5b,0x90,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xcd,0x42,0x0d,0x4b,0x52,0x84,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfc,0xde,0x53,0x7c,0xd1,0x63,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd1,0x6b,0xd1,0x6b,0xd1,0x6b,0xd1,0x63,0xb1,0x63,0x70,0x5b,0xd0,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x98,0xad,0xf2,0x6b,0x4f,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x4f,0x5b,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x0e,0x53,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xcc,0x42,0xed,0x4a,0x31,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfc,0xde,0x33,0x74,0xb1,0x63,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0x12,0x6c,0xf2,0x6b,0x12,0x6c,0x12,0x6c,0x12,0x6c,0xf2,0x6b,0xf2,0x6b,0xd1,0x63,0xd1,0x63,0xd1,0x63,0xd1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xd1,0x63,0xd1,0x6b,0xd1,0x63,0xd1,0x63,0xd1,0x63,0x70,0x5b,0xd1,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x77,0xa5,0xb1,0x63,0x4f,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x4f,0x53,0x2f,0x53,0x2f,0x53,0x2f,0x53,0x2f,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x0e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x0e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0xed,0x4a,0xcd,0x42,0xcc,0x42,0xed,0x42,0xcc,0x42,0x2e,0x53,0x39,0xc6,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfc,0xde,0xf2,0x6b,0x91,0x63,0xd1,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xd2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd1,0x6b,0xd1,0x63,0xd1,0x6b,0xd1,0x63,0xd1,0x63,0xd1,0x63,0x70,0x5b,0xf1,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xb4,0x84,0x90,0x5b,0x6f,0x5b,0x70,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x4f,0x5b,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0d,0x53,0x6f,0x63,0x31,0x7c,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0x53,0x7c,0xd1,0x63,0xb1,0x63,0xd1,0x6b,0xd1,0x6b,0xd1,0x63,0xb1,0x63,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd1,0x6b,0x90,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x4f,0x5b,0x2f,0x5b,0x90,0x6b,0x53,0x84,0x39,0xc6,0xdb,0xde,0xdb,0xd6,0xdb,0xd6,0xbb,0xd6,0xbb,0xd6,0xdb,0xd6,0xdb,0xd6,0xbb,0xd6,0xdb,0xde,0x59,0xc6,0xb4,0x8c,0xf2,0x73,0xb1,0x63,0xd1,0x63,0xd1,0x63,0xb1,0x63,0x70,0x5b,0xf2,0x6b,0x9a,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xde,0xf1,0x6b,0x2f,0x53,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x70,0x5b,0x4f,0x5b,0x2e,0x5b,0x8f,0x6b,0x32,0x7c,0xb3,0x8c,0xf8,0xbd,0x79,0xce,0x59,0xc6,0x59,0xc6,0x59,0xc6,0x59,0xc6,0x59,0xc6,0x59,0xc6,0x39,0xc6,0x35,0x9d,0x12,0x74,0x6f,0x5b,0x4f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x53,0x2e,0x53,0x0e,0x53,0x0e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0xcc,0x4a,0xcc,0x52,0x8f,0x6b,0x52,0x84,0x9a,0xce,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0x39,0xbe,0xb4,0x8c,0x94,0x84,0x74,0x84,0x73,0x7c,0x32,0x74,0xf1,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0xd2,0x6b,0xf2,0x6b,0xf2,0x6b,0xb1,0x63,0x2e,0x53,0xed,0x4a,0x0d,0x4b,0xed,0x4a,0xcc,0x4a,0x4e,0x6b,0x18,0xc6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x59,0xc6,0x90,0x63,0xb1,0x63,0xd1,0x63,0xb1,0x63,0x90,0x5b,0x12,0x74,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x32,0x7c,0x70,0x5b,0x6f,0x5b,0x70,0x5b,0x70,0x5b,0x90,0x5b,0x4f,0x63,0xd0,0x7b,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xd6,0xf2,0x6b,0x90,0x5b,0xb1,0x63,0x90,0x63,0x70,0x5b,0x2e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x2e,0x4b,0xed,0x4a,0x8b,0x4a,0xaf,0x7b,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x59,0xc6,0x73,0x84,0xf2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xd2,0x6b,0xf2,0x6b,0xb1,0x63,0x4f,0x53,0xed,0x4a,0xed,0x4a,0xcc,0x42,0xcc,0x4a,0x72,0x8c,0x1c,0xe7,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xd6,0xf2,0x6b,0xb1,0x63,0xb1,0x63,0x90,0x5b,0xd1,0x6b,0x76,0xad,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x11,0x74,0x2f,0x53,0x6f,0x5b,0x70,0x5b,0x6f,0x5b,0xf1,0x7b,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x33,0x74,0x90,0x5b,0xd1,0x6b,0xb1,0x63,0x70,0x5b,0x2e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0x0e,0x4b,0xcd,0x4a,0x4e,0x6b,0xba,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xde,0x53,0x7c,0x91,0x63,0xd2,0x6b,0xd1,0x6b,0xd2,0x6b,0xd2,0x6b,0xb1,0x63,0x6f,0x5b,0x0d,0x4b,0xed,0x4a,0xcd,0x42,0xed,0x4a,0x52,0x84,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x94,0x84,0xb1,0x63,0xb1,0x63,0x6f,0x5b,0xf1,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x9a,0xce,0x15,0x95,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfc,0xde,0x39,0xbe,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf5,0x94,0x6f,0x5b,0x4f,0x53,0x2f,0x53,0xb0,0x6b,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x32,0x74,0x91,0x63,0xd2,0x6b,0xb1,0x63,0x4f,0x5b,0x2e,0x53,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xf0,0x7b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x19,0xbe,0x91,0x63,0xf2,0x6b,0xd1,0x6b,0xd1,0x6b,0xd2,0x6b,0xd1,0x63,0x70,0x5b,0x0e,0x4b,0xed,0x4a,0xed,0x42,0xed,0x42,0xd0,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xde,0x12,0x74,0x70,0x5b,0x4f,0x5b,0xf1,0x6b,0xdb,0xde,0xfb,0xde,0xfb,0xde,0x32,0x74,0xd1,0x6b,0x53,0x7c,0x97,0xad,0x97,0xa5,0x97,0xad,0xb8,0xad,0x95,0x84,0xf2,0x6b,0x32,0x74,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x36,0x9d,0xb1,0x63,0x0e,0x53,0xb0,0x6b,0xba,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xbb,0xd6,0x12,0x6c,0xb1,0x63,0xf2,0x6b,0xb1,0x63,0x4e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x52,0x72,0x8c,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x9a,0xd6,0xb1,0x63,0xf2,0x6b,0xd1,0x6b,0xd1,0x6b,0xd1,0x6b,0xd1,0x6b,0x90,0x63,0x2e,0x4b,0xed,0x4a,0xed,0x42,0xed,0x4a,0x6f,0x63,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x9a,0xce,0x90,0x63,0x4f,0x53,0xb1,0x63,0x73,0x7c,0xf5,0x94,0x32,0x74,0x6f,0x5b,0x70,0x5b,0x90,0x63,0xd1,0x63,0xd1,0x6b,0xf2,0x6b,0xf2,0x6b,0xb1,0x63,0x4f,0x53,0x2f,0x53,0x11,0x74,0x15,0x9d,0x16,0x95,0x74,0x7c,0x91,0x63,0x4f,0x5b,0x39,0xc6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xd5,0x8c,0xf2,0x6b,0xd2,0x6b,0xf2,0x6b,0xb1,0x63,0x2e,0x53,0x0e,0x4b,0x0e,0x53,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0xed,0x4a,0x4e,0x5b,0x9a,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x9a,0xd6,0x12,0x74,0xf1,0x6b,0xd1,0x63,0xd1,0x63,0xd1,0x63,0xd1,0x6b,0xb1,0x63,0x2e,0x53,0xed,0x4a,0xed,0x4a,0xed,0x4a,0x0d,0x53,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x19,0xbe,0x90,0x63,0xd1,0x6b,0xb1,0x63,0xd1,0x63,0x90,0x63,0x90,0x5b,0x90,0x63,0x90,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x6f,0x5b,0x70,0x5b,0x4f,0x5b,0x4f,0x5b,0xb0,0x63,0xd1,0x63,0xb1,0x63,0xb0,0x63,0x59,0xc6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x12,0x74,0xf2,0x6b,0xf2,0x6b,0xd2,0x6b,0x90,0x5b,0x2e,0x53,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0x8f,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xb4,0x84,0x90,0x63,0xb1,0x63,0xd1,0x63,0xd1,0x63,0xd1,0x6b,0xd1,0x63,0x4f,0x53,0xed,0x4a,0xed,0x4a,0xed,0x42,0xcc,0x42,0xb7,0xb5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x36,0x95,0xb1,0x63,0x70,0x5b,0xb0,0x63,0x90,0x5b,0x90,0x63,0x90,0x63,0x90,0x5b,0x90,0x5b,0x90,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x70,0x5b,0x70,0x5b,0x4f,0x5b,0x6f,0x5b,0x4f,0x53,0x90,0x63,0x36,0x9d,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xde,0xd2,0x6b,0xf2,0x6b,0x12,0x6c,0xd1,0x63,0x6f,0x5b,0x2e,0x53,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0x4e,0x5b,0x59,0xc6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfc,0xde,0x94,0x84,0x90,0x63,0xd1,0x63,0xd1,0x63,0xb1,0x63,0xd1,0x63,0xd1,0x63,0x70,0x5b,0x2e,0x53,0xed,0x4a,0xed,0x42,0xcc,0x42,0xd0,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfc,0xde,0x7a,0xce,0x12,0x74,0x90,0x5b,0x2f,0x53,0x70,0x5b,0x90,0x5b,0x90,0x63,0x90,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x4f,0x53,0x90,0x63,0x39,0xc6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf5,0x8c,0xf2,0x6b,0xf2,0x6b,0x13,0x6c,0xb1,0x63,0x2e,0x53,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0x0d,0x4b,0xb0,0x63,0x79,0xce,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf8,0xb5,0xd1,0x6b,0xd1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb0,0x63,0x4f,0x53,0xed,0x4a,0xed,0x4a,0xed,0x4a,0x0d,0x53,0xf4,0x94,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xb7,0xad,0x32,0x74,0xf1,0x6b,0x90,0x5b,0x90,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0xd0,0x6b,0xba,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xde,0x53,0x7c,0xf2,0x6b,0x13,0x6c,0x12,0x6c,0x90,0x5b,0x0d,0x4b,0x0d,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x42,0x6f,0x5b,0x18,0xbe,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x18,0xbe,0x53,0x7c,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0x6f,0x5b,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xcc,0x42,0xd0,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x7a,0xce,0xd1,0x63,0x6f,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x4f,0x5b,0x2e,0x5b,0xd0,0x73,0xbb,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xd5,0x8c,0xf2,0x6b,0x13,0x6c,0x13,0x74,0xd2,0x6b,0x6f,0x5b,0x0d,0x4b,0x0d,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xcc,0x42,0xcd,0x42,0x2e,0x53,0xd0,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xbb,0xd6,0x73,0x84,0xd1,0x63,0x70,0x5b,0x90,0x5b,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0x90,0x5b,0x2e,0x53,0x0d,0x4b,0xed,0x4a,0xcd,0x42,0x6f,0x5b,0x7a,0xce,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x53,0x7c,0x70,0x5b,0x6f,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x4f,0x5b,0x0e,0x5b,0x8f,0x73,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xbb,0xd6,0x54,0x7c,0x13,0x6c,0x33,0x74,0x13,0x74,0x90,0x63,0x2e,0x53,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0x0d,0x4b,0xed,0x4a,0xac,0x3a,0xac,0x42,0x79,0xce,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x19,0xbe,0xd1,0x6b,0x4f,0x53,0x90,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb0,0x63,0x6f,0x5b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0e,0x53,0xf1,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x94,0x84,0x90,0x5b,0x4f,0x5b,0x70,0x5b,0x6f,0x5b,0x70,0x5b,0x2e,0x53,0x4e,0x63,0x56,0xad,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x94,0x84,0x33,0x74,0x33,0x74,0x33,0x74,0x12,0x6c,0x4f,0x53,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0xcd,0x42,0xcd,0x42,0x93,0x84,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xd1,0x6b,0x70,0x5b,0x90,0x63,0x90,0x63,0x90,0x63,0xb0,0x63,0xb0,0x63,0xb0,0x63,0xb0,0x63,0xb0,0x63,0xb0,0x63,0xb0,0x63,0xb0,0x63,0xb0,0x63,0xb1,0x63,0x90,0x5b,0x2e,0x53,0x0d,0x4b,0x0e,0x4b,0x0d,0x4b,0x2e,0x53,0x39,0xc6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x93,0x84,0x70,0x5b,0x4f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x2e,0x53,0x8f,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x9a,0xce,0x54,0x74,0x33,0x74,0x54,0x74,0x33,0x74,0xb1,0x63,0x2e,0x53,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xcd,0x42,0x0d,0x4b,0x55,0xa5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x12,0x74,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0xb0,0x63,0x90,0x63,0x6f,0x5b,0x2e,0x53,0x0e,0x53,0x2e,0x53,0x0e,0x4b,0x90,0x63,0x39,0xc6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x93,0x84,0x70,0x5b,0x4f,0x53,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x8f,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xd6,0x95,0x84,0x34,0x74,0x54,0x7c,0x54,0x7c,0xf2,0x6b,0x4f,0x53,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xcd,0x42,0x2e,0x53,0xba,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x7a,0xce,0xb1,0x63,0x6f,0x5b,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x5b,0x4f,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0xed,0x4a,0xf1,0x6b,0x7a,0xce,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x93,0x84,0x70,0x5b,0x4f,0x53,0x4f,0x5b,0x4f,0x5b,0x4f,0x5b,0x4f,0x5b,0x8f,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xd6,0x8c,0x13,0x74,0x54,0x7c,0x74,0x7c,0x33,0x74,0x90,0x63,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x42,0xac,0x42,0xac,0x42,0xcc,0x42,0xed,0x42,0xed,0x4a,0xed,0x42,0xcd,0x42,0x8f,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x12,0x74,0x4f,0x5b,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x5b,0x90,0x5b,0x90,0x5b,0x70,0x5b,0x90,0x5b,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x63,0x6f,0x5b,0x2f,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x4f,0x53,0xf1,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x93,0x84,0x70,0x5b,0x4f,0x53,0x4f,0x5b,0x4f,0x5b,0x4f,0x53,0x4f,0x53,0xaf,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf6,0x94,0x54,0x74,0x54,0x7c,0x75,0x7c,0x74,0x7c,0xd1,0x63,0x2e,0x53,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xcc,0x4a,0x2e,0x53,0x8f,0x63,0xaf,0x63,0x6f,0x5b,0x0d,0x4b,0xcd,0x42,0xcc,0x42,0x4e,0x5b,0x72,0x8c,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x73,0x84,0x70,0x5b,0x6f,0x5b,0x6f,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x70,0x5b,0x90,0x63,0x70,0x5b,0x90,0x63,0x90,0x5b,0x90,0x63,0x90,0x63,0x90,0x63,0x90,0x5b,0x90,0x5b,0x6f,0x5b,0x2e,0x53,0x2e,0x53,0x4f,0x53,0x2e,0x53,0x4f,0x53,0xb7,0xb5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x93,0x84,0x6f,0x5b,0x4f,0x53,0x6f,0x5b,0x6f,0x5b,0x4f,0x53,0x2e,0x53,0xaf,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x19,0xbe,0x54,0x7c,0x74,0x7c,0x95,0x7c,0x75,0x7c,0x13,0x6c,0x6f,0x5b,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xac,0x4a,0xcc,0x52,0x51,0x8c,0xba,0xd6,0xfb,0xde,0x35,0x9d,0x32,0x7c,0xf1,0x73,0xb0,0x6b,0x11,0x7c,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf2,0x73,0x6f,0x5b,0x90,0x5b,0x90,0x63,0xb0,0x6b,0xf1,0x73,0x72,0x84,0x15,0x9d,0xf1,0x73,0x70,0x5b,0x90,0x5b,0x90,0x63,0x90,0x5b,0x90,0x5b,0x90,0x5b,0x90,0x5b,0x90,0x5b,0x6f,0x5b,0x4f,0x53,0x4f,0x53,0x6f,0x5b,0x4f,0x53,0x70,0x5b,0x36,0x9d,0x1c,0xe7,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x73,0x84,0x6f,0x5b,0x4f,0x53,0x6f,0x5b,0x6f,0x5b,0x4f,0x53,0x2e,0x53,0x8f,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x98,0xa5,0x75,0x7c,0x75,0x7c,0x95,0x84,0x95,0x7c,0x33,0x74,0x6f,0x5b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0x0d,0x5b,0x35,0xad,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x56,0xa5,0xb7,0xb5,0xd8,0xb5,0xd7,0xb5,0x39,0xc6,0xfc,0xe6,0xfb,0xde,0x7a,0xce,0x73,0x84,0x90,0x5b,0x6f,0x5b,0x90,0x5b,0x90,0x5b,0x90,0x5b,0x90,0x5b,0x90,0x5b,0x70,0x5b,0x4f,0x5b,0x4f,0x53,0x4f,0x5b,0x6f,0x5b,0x2f,0x53,0x90,0x5b,0x15,0x95,0xfc,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x73,0x84,0x6f,0x5b,0x4f,0x53,0x4f,0x5b,0x4f,0x5b,0x4f,0x53,0x2e,0x53,0x8f,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xd9,0xad,0x95,0x7c,0x75,0x7c,0x95,0x84,0x95,0x84,0x54,0x74,0x90,0x63,0x0d,0x4b,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xcc,0x4a,0xd0,0x7b,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf1,0x6b,0x4f,0x53,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x4f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x4f,0x5b,0x12,0x74,0x7a,0xce,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x73,0x84,0x6f,0x5b,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x2e,0x53,0x8f,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xde,0xd6,0x8c,0x55,0x7c,0x95,0x84,0xb5,0x84,0x96,0x84,0x54,0x7c,0xb1,0x63,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xcc,0x4a,0x2e,0x63,0x39,0xce,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x18,0xbe,0xb0,0x63,0x4f,0x5b,0x6f,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x6f,0x5b,0x70,0x5b,0x90,0x5b,0x70,0x5b,0x70,0x5b,0xf1,0x6b,0x39,0xc6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x73,0x84,0x6f,0x5b,0x2f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x2e,0x53,0x8f,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x3a,0xc6,0xb6,0x84,0x95,0x7c,0x95,0x84,0xb6,0x84,0xb6,0x84,0x74,0x7c,0xb1,0x63,0x0e,0x53,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xec,0x52,0xd0,0x7b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x56,0xa5,0x6f,0x5b,0x4f,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x70,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x70,0x5b,0x90,0x5b,0x90,0x63,0x90,0x63,0x4f,0x5b,0xd1,0x6b,0x76,0xa5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x73,0x84,0x4f,0x5b,0x2e,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x2e,0x53,0x8f,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x37,0x9d,0x95,0x7c,0x55,0x7c,0x95,0x7c,0xb6,0x84,0xb6,0x84,0x54,0x7c,0xb1,0x63,0x0e,0x53,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xac,0x42,0x2e,0x5b,0x59,0xce,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x18,0xbe,0x6f,0x5b,0x4f,0x53,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x90,0x5b,0x90,0x63,0xb0,0x63,0xb1,0x63,0xb0,0x63,0x90,0x5b,0xd1,0x63,0xd8,0xb5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x73,0x84,0x4f,0x5b,0x2e,0x53,0x4f,0x53,0x4f,0x53,0x2f,0x53,0x2e,0x53,0x8f,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x5a,0xc6,0x74,0x7c,0x54,0x74,0x75,0x7c,0x95,0x84,0xb6,0x84,0x95,0x84,0x34,0x74,0x90,0x63,0x0d,0x4b,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xcc,0x42,0x4e,0x53,0xba,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x1c,0xdf,0x53,0x7c,0x2f,0x53,0x4f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x90,0x5b,0xb0,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xb1,0x63,0xd1,0x6b,0xf2,0x6b,0x74,0x7c,0xbb,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x73,0x7c,0x6f,0x5b,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x8f,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x9b,0xce,0xb5,0x84,0x74,0x7c,0x74,0x7c,0x74,0x7c,0x75,0x7c,0x95,0x84,0x95,0x84,0x75,0x7c,0x13,0x74,0x6f,0x5b,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xed,0x42,0x0d,0x4b,0xd0,0x6b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xd8,0xb5,0x90,0x63,0x4f,0x53,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x90,0x5b,0xb1,0x63,0xd1,0x63,0xd1,0x63,0xd1,0x6b,0xb1,0x63,0xb1,0x63,0xd1,0x63,0x53,0x7c,0xd5,0x8c,0x7a,0xc6,0xdb,0xde,0xfb,0xde,0xfb,0xde,0x1c,0xdf,0x12,0x74,0x4f,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x6f,0x63,0x39,0xc6,0xfb,0xde,0xfb,0xde,0xdb,0xde,0xf8,0xb5,0xd5,0x8c,0x74,0x7c,0x33,0x74,0x34,0x74,0x54,0x7c,0x75,0x7c,0x95,0x7c,0x75,0x7c,0x34,0x74,0xb1,0x63,0x4f,0x53,0x0d,0x4b,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0x32,0x7c,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xbb,0xd6,0x70,0x5b,0x2e,0x53,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x6f,0x5b,0x70,0x5b,0x90,0x63,0xb1,0x63,0xd2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xf2,0x6b,0xd2,0x63,0xb2,0x63,0xf2,0x6b,0x94,0x84,0xd8,0xb5,0xd8,0xb5,0xb0,0x63,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x70,0x5b,0x53,0x7c,0xb5,0x8c,0x74,0x7c,0x13,0x6c,0xd2,0x6b,0x13,0x6c,0x33,0x74,0x54,0x7c,0x74,0x7c,0x75,0x7c,0x74,0x7c,0x33,0x74,0xd2,0x6b,0x70,0x5b,0x2e,0x53,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0xed,0x4a,0xcd,0x42,0x2e,0x53,0x55,0x9d,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xde,0x12,0x74,0x4f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x4f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x6f,0x5b,0x90,0x5b,0xb1,0x63,0xd1,0x63,0xf2,0x6b,0x12,0x6c,0x13,0x74,0x13,0x74,0x13,0x74,0x13,0x74,0x13,0x6c,0x13,0x74,0xf2,0x6b,0x6f,0x5b,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x90,0x5b,0xd2,0x6b,0xf2,0x6b,0x12,0x6c,0x13,0x74,0x33,0x74,0x34,0x74,0x54,0x74,0x54,0x74,0x33,0x74,0x33,0x74,0xf2,0x6b,0x90,0x5b,0x2e,0x53,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0xed,0x4a,0xac,0x3a,0x93,0x84,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xd4,0x8c,0x6f,0x5b,0x4f,0x53,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x5b,0x6f,0x5b,0x6f,0x5b,0x4f,0x53,0x4f,0x5b,0x6f,0x5b,0x4f,0x5b,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x70,0x5b,0xb1,0x63,0xf2,0x6b,0x12,0x6c,0x13,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0x54,0x74,0x13,0x6c,0x6f,0x5b,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x2e,0x53,0x90,0x5b,0xf2,0x6b,0x13,0x6c,0x13,0x74,0x13,0x74,0x33,0x74,0x33,0x74,0x33,0x74,0xf2,0x6b,0xd1,0x63,0x6f,0x5b,0x2e,0x53,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xcd,0x42,0xcc,0x42,0xcd,0x42,0xed,0x4a,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0xed,0x4a,0x8b,0x3a,0x8f,0x5b,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x52,0x7c,0x2e,0x53,0x4f,0x53,0x4f,0x5b,0x4f,0x5b,0x4f,0x5b,0x4f,0x5b,0x4f,0x5b,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x2f,0x53,0x2f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x2e,0x53,0x4f,0x53,0x6f,0x5b,0x6f,0x5b,0x90,0x5b,0xb1,0x63,0xf2,0x6b,0x12,0x6c,0x33,0x74,0x74,0x7c,0x33,0x74,0x70,0x5b,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x2e,0x53,0x90,0x5b,0xf2,0x6b,0x13,0x74,0xf2,0x6b,0xf2,0x6b,0xd1,0x6b,0xb1,0x63,0x6f,0x5b,0x4f,0x53,0x2e,0x53,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xcc,0x4a,0x2d,0x5b,0x0d,0x53,0xcc,0x42,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x42,0xcd,0x4a,0x31,0x7c,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x35,0x9d,0x6f,0x5b,0x0e,0x4b,0x4f,0x5b,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x2e,0x53,0x0e,0x53,0x4f,0x63,0x6f,0x5b,0x2e,0x53,0x0e,0x4b,0x4f,0x5b,0x4f,0x5b,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x4f,0x5b,0x70,0x5b,0x90,0x63,0xb1,0x63,0xd1,0x6b,0xb1,0x63,0x4f,0x5b,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x4f,0x5b,0x90,0x5b,0xb0,0x63,0x90,0x5b,0x6f,0x5b,0x4f,0x5b,0x2e,0x53,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xcd,0x4a,0x2d,0x5b,0xd0,0x73,0x18,0xc6,0x7a,0xce,0x11,0x6c,0xed,0x4a,0xac,0x42,0x0d,0x4b,0xed,0x4a,0xed,0x42,0xac,0x42,0x8f,0x6b,0x18,0xbe,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x52,0x7c,0x6f,0x5b,0x0e,0x4b,0x4f,0x53,0x4f,0x5b,0x4f,0x53,0x2f,0x53,0x2e,0x53,0x4e,0x63,0x8f,0x73,0xb3,0x94,0x15,0x95,0x52,0x7c,0x90,0x63,0x2e,0x53,0x2e,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x4f,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x4b,0x0e,0x4b,0x2e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x53,0xcd,0x4a,0x2e,0x63,0x31,0x8c,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x31,0x74,0x2e,0x53,0xcd,0x42,0xac,0x42,0xed,0x4a,0xaf,0x63,0x56,0xad,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x53,0x7c,0x6f,0x5b,0x0e,0x4b,0x2e,0x53,0x0e,0x4b,0x4f,0x5b,0xb0,0x6b,0x72,0x8c,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x18,0xbe,0xf1,0x6b,0x0e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xac,0x4a,0x6e,0x6b,0x39,0xc6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x59,0xc6,0x2e,0x53,0xb0,0x63,0xf1,0x73,0x39,0xc6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x35,0x9d,0xb0,0x63,0x2f,0x53,0xb0,0x6b,0x72,0x84,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x52,0x7c,0x4f,0x53,0x0e,0x4b,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xac,0x42,0x2d,0x63,0x39,0xce,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf8,0xb5,0xb7,0xad,0x39,0xc6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x77,0xad,0x8f,0x5b,0xed,0x4a,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x42,0xcc,0x4a,0x93,0x94,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x15,0x95,0x6f,0x5b,0xed,0x4a,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x0e,0x53,0x0e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x42,0x0d,0x4b,0x35,0xa5,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x11,0x74,0x4f,0x53,0x0e,0x4b,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xed,0x42,0xed,0x4a,0x15,0x9d,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x6f,0x5b,0x0e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0d,0x53,0xcc,0x4a,0x4e,0x63,0xb0,0x6b,0x8f,0x63,0x2e,0x53,0x0e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xcd,0x4a,0x2e,0x5b,0x6f,0x63,0xd0,0x73,0x31,0x84,0x52,0x84,0x6f,0x5b,0xcc,0x42,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0x0d,0x4b,0xed,0x4a,0xcc,0x42,0x72,0x84,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xdb,0xd6,0x2e,0x53,0xed,0x4a,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0xed,0x4a,0xcc,0x52,0xaf,0x73,0x79,0xce,0xdb,0xde,0xba,0xd6,0x76,0xad,0x4e,0x53,0x0d,0x4b,0x0e,0x4b,0x0e,0x4b,0x0d,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0x0d,0x5b,0xb0,0x73,0x7a,0xce,0xdb,0xde,0xbb,0xde,0xfb,0xde,0x1c,0xe7,0xf8,0xbd,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xac,0x3a,0x8f,0x5b,0x7a,0xce,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xb4,0x8c,0x2e,0x53,0x0d,0x4b,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x4b,0xed,0x52,0x6e,0x6b,0xba,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfc,0xde,0xb0,0x63,0x0d,0x4b,0x0d,0x4b,0x0e,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xcc,0x52,0xaf,0x73,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x11,0x74,0xcd,0x42,0xcd,0x42,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0xed,0x42,0xcc,0x42,0x4e,0x5b,0x15,0x9d,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xb7,0xad,0x0e,0x53,0xcd,0x42,0x0e,0x53,0x2e,0x53,0x2e,0x53,0x2e,0x53,0x0e,0x4b,0xed,0x4a,0x4e,0x63,0xf7,0xbd,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x11,0x74,0x2e,0x53,0xed,0x4a,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xcd,0x4a,0x2d,0x5b,0x55,0xad,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x39,0xbe,0x0d,0x4b,0xac,0x3a,0xed,0x4a,0xed,0x4a,0xed,0x42,0xcc,0x42,0xcc,0x42,0x8f,0x63,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x32,0x74,0x4f,0x5b,0xed,0x4a,0xcd,0x42,0xed,0x4a,0x0e,0x4b,0xed,0x42,0x0d,0x53,0x31,0x84,0xfc,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x93,0x84,0x4e,0x53,0xcd,0x42,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0x4e,0x63,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x11,0x74,0xac,0x42,0xac,0x3a,0xcc,0x42,0xed,0x4a,0x2e,0x5b,0xf0,0x73,0xba,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x39,0xc6,0x32,0x7c,0xb0,0x63,0x4e,0x53,0x0e,0x53,0x4f,0x5b,0x31,0x7c,0xdb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf4,0x94,0x4e,0x5b,0xcc,0x42,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0x0d,0x4b,0xed,0x4a,0xed,0x4a,0x4e,0x63,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xba,0xd6,0x52,0x7c,0xb0,0x63,0x11,0x74,0x93,0x8c,0x9a,0xd6,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xf4,0x94,0xf1,0x73,0x7a,0xce,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x35,0x9d,0x2e,0x53,0xac,0x42,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xcd,0x42,0xed,0x4a,0xb0,0x73,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x6f,0x5b,0xcc,0x42,0xed,0x4a,0xed,0x4a,0xed,0x4a,0xed,0x42,0xcc,0x42,0x2e,0x5b,0x72,0x8c,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xd7,0xb5,0xf1,0x6b,0x32,0x7c,0x52,0x7c,0x32,0x7c,0x11,0x74,0xb0,0x6b,0x72,0x84,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0xfb,0xde,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
|
||||
};
|
||||
|
||||
const lv_img_dsc_t img_benchmark_cogwheel_rgb = {
|
||||
.header.magic = LV_IMAGE_HEADER_MAGIC,
|
||||
.header.cf = LV_COLOR_FORMAT_RGB565,
|
||||
.header.flags = 0,
|
||||
.header.w = 100,
|
||||
.header.h = 100,
|
||||
.header.stride = 256,
|
||||
.data_size = 25600,
|
||||
.data = img_benchmark_cogwheel_rgb_map,
|
||||
};
|
||||
|
||||
#endif
|
||||
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 11 KiB |
@@ -0,0 +1,318 @@
|
||||
#include "../../../lvgl.h"
|
||||
|
||||
#if LV_USE_DEMO_BENCHMARK
|
||||
|
||||
/*******************************************************************************
|
||||
* Size: 12 px
|
||||
* Bpp: 4
|
||||
* Opts:
|
||||
******************************************************************************/
|
||||
|
||||
#ifndef LV_FONT_BENCHMARK_MONTSERRAT_12_COMPR_AZ
|
||||
#define LV_FONT_BENCHMARK_MONTSERRAT_12_COMPR_AZ 1
|
||||
#endif
|
||||
|
||||
#if LV_FONT_BENCHMARK_MONTSERRAT_12_COMPR_AZ
|
||||
|
||||
/*-----------------
|
||||
* BITMAPS
|
||||
*----------------*/
|
||||
|
||||
/*Store the image of the glyphs*/
|
||||
static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
|
||||
/* U+20 " " */
|
||||
|
||||
/* U+61 "a" */
|
||||
0x8, 0xdf, 0xc3, 0x0, 0x14, 0xea, 0xf0, 0x2,
|
||||
0x90, 0xa0, 0x84, 0x23, 0x7b, 0xc0, 0xd1, 0xb3,
|
||||
0xb8, 0x1, 0x84, 0x1c, 0x0, 0x8f, 0xdb, 0xe0,
|
||||
0x0,
|
||||
|
||||
/* U+62 "b" */
|
||||
0xe4, 0x0, 0xff, 0xe4, 0x1e, 0x7e, 0x20, 0x2,
|
||||
0x27, 0x52, 0xc8, 0x25, 0x4a, 0x12, 0x80, 0x80,
|
||||
0x23, 0x20, 0x20, 0x8, 0xc8, 0x25, 0x4a, 0x12,
|
||||
0x82, 0x63, 0x52, 0xc8,
|
||||
|
||||
/* U+63 "c" */
|
||||
0x2, 0xbf, 0xe8, 0x0, 0x78, 0xed, 0x21, 0xa8,
|
||||
0x51, 0x26, 0x19, 0x30, 0x7, 0x13, 0x0, 0x72,
|
||||
0x85, 0x12, 0x69, 0x87, 0x8e, 0xd2, 0x98,
|
||||
|
||||
/* U+64 "d" */
|
||||
0x0, 0xe1, 0xf1, 0x0, 0xff, 0xe2, 0x95, 0xfe,
|
||||
0xb8, 0x5, 0x85, 0xbd, 0x60, 0x5, 0x39, 0x23,
|
||||
0x90, 0x1, 0x30, 0x4, 0xa0, 0x2, 0x60, 0x8,
|
||||
0x80, 0xa, 0x72, 0x25, 0xc0, 0x16, 0x17, 0x65,
|
||||
0x80, 0x0,
|
||||
|
||||
/* U+65 "e" */
|
||||
0x2, 0xbf, 0xd5, 0x0, 0x61, 0xf4, 0xda, 0x29,
|
||||
0x40, 0xa4, 0x79, 0x1f, 0x75, 0xe, 0x44, 0xee,
|
||||
0xd8, 0xa7, 0x24, 0x74, 0x41, 0x85, 0xba, 0x32,
|
||||
|
||||
/* U+66 "f" */
|
||||
0x1, 0xcf, 0x60, 0x86, 0xe7, 0x2, 0xc1, 0x16,
|
||||
0xa4, 0xf9, 0xea, 0x4f, 0x98, 0x7, 0xff, 0x34,
|
||||
|
||||
/* U+67 "g" */
|
||||
0x2, 0xbf, 0xe6, 0xe2, 0xc, 0x1d, 0xd5, 0x8,
|
||||
0x29, 0xd1, 0x1f, 0x0, 0x9, 0x80, 0x22, 0x0,
|
||||
0x13, 0x0, 0x44, 0x0, 0x53, 0xa2, 0x3f, 0x0,
|
||||
0xb0, 0x77, 0x50, 0x1, 0x15, 0xff, 0x38, 0x10,
|
||||
0x63, 0x11, 0xca, 0x80, 0x2a, 0xf7, 0x43, 0x60,
|
||||
|
||||
/* U+68 "h" */
|
||||
0xe4, 0x0, 0xff, 0xe4, 0x1e, 0xfe, 0x10, 0x2,
|
||||
0x65, 0xad, 0xc0, 0x8, 0x42, 0x83, 0x0, 0x10,
|
||||
0x0, 0x80, 0x40, 0x3c, 0x60, 0x1f, 0xfc, 0x20,
|
||||
|
||||
/* U+69 "i" */
|
||||
0xd, 0x40, 0x56, 0x8, 0x20, 0xe4, 0x0, 0xff,
|
||||
0xe3, 0x0,
|
||||
|
||||
/* U+6A "j" */
|
||||
0x0, 0xb5, 0x40, 0x2a, 0x70, 0x9, 0xc8, 0x2,
|
||||
0xd4, 0x0, 0xff, 0xec, 0x11, 0x4c, 0x1f, 0xae,
|
||||
0x40,
|
||||
|
||||
/* U+6B "k" */
|
||||
0xe4, 0x0, 0xff, 0xe5, 0xdd, 0x0, 0x6b, 0xa,
|
||||
0x0, 0xad, 0xec, 0x2, 0xa4, 0x10, 0xc, 0x5c,
|
||||
0x12, 0x1, 0x40, 0xfb, 0x20, 0x6, 0x29, 0xa1,
|
||||
|
||||
/* U+6C "l" */
|
||||
0xe4, 0x0, 0xff, 0xe3, 0x0,
|
||||
|
||||
/* U+6D "m" */
|
||||
0xe7, 0xdf, 0xb2, 0x9e, 0xe4, 0x0, 0x2b, 0xb5,
|
||||
0xf4, 0xb3, 0x59, 0x42, 0xcc, 0xa0, 0x28, 0x8d,
|
||||
0xf0, 0x8, 0x0, 0xe0, 0x20, 0x1, 0x30, 0xf,
|
||||
0xfe, 0xa8,
|
||||
|
||||
/* U+6E "n" */
|
||||
0xe6, 0xdf, 0xc2, 0x0, 0x44, 0xf3, 0x70, 0x2,
|
||||
0x10, 0x6c, 0xc0, 0x4, 0x0, 0x10, 0x10, 0xf,
|
||||
0x18, 0x7, 0xff, 0x8,
|
||||
|
||||
/* U+6F "o" */
|
||||
0x2, 0xbf, 0xe8, 0x0, 0xb0, 0x77, 0x4d, 0x0,
|
||||
0xa7, 0x44, 0x74, 0xe0, 0x4c, 0x1, 0x28, 0x9,
|
||||
0x30, 0x4, 0xa0, 0x2a, 0x14, 0x47, 0x4e, 0x0,
|
||||
0xf1, 0xdd, 0x34, 0x0,
|
||||
|
||||
/* U+70 "p" */
|
||||
0xe7, 0xdf, 0xc4, 0x0, 0x44, 0xf5, 0x59, 0x4,
|
||||
0xa0, 0xb2, 0xd0, 0x10, 0x4, 0x44, 0x3, 0x0,
|
||||
0x8c, 0x82, 0x14, 0xa1, 0x28, 0x26, 0x5a, 0x96,
|
||||
0x40, 0x59, 0xf8, 0x80, 0x1f, 0xfc, 0x30,
|
||||
|
||||
/* U+71 "q" */
|
||||
0x2, 0xbf, 0xd5, 0xf1, 0xc, 0x1d, 0xeb, 0x0,
|
||||
0x29, 0xd1, 0x1d, 0x0, 0x9, 0x80, 0x25, 0x0,
|
||||
0x13, 0x0, 0x4a, 0x0, 0x53, 0xa2, 0x3a, 0x0,
|
||||
0xb0, 0x77, 0xac, 0x2, 0x2b, 0xfd, 0x40, 0xf,
|
||||
0xfe, 0x30,
|
||||
|
||||
/* U+72 "r" */
|
||||
0xe6, 0xd8, 0x8, 0xb9, 0x9, 0x61, 0x3, 0x0,
|
||||
0xff, 0xe1, 0x0,
|
||||
|
||||
/* U+73 "s" */
|
||||
0x9, 0xef, 0xc2, 0x64, 0xcd, 0xa3, 0x10, 0x1,
|
||||
0x30, 0xba, 0x6f, 0x48, 0x84, 0xfe, 0x2c, 0x2b,
|
||||
0x10, 0x38, 0x8a, 0xb7, 0x6, 0x0,
|
||||
|
||||
/* U+74 "t" */
|
||||
0x5, 0x30, 0xb, 0x94, 0x1, 0xa9, 0x3e, 0x7a,
|
||||
0x93, 0xe6, 0x1, 0xff, 0xc4, 0x1c, 0x11, 0x4,
|
||||
0x3f, 0x38,
|
||||
|
||||
/* U+75 "u" */
|
||||
0xf3, 0x0, 0x17, 0x80, 0x7f, 0xf2, 0x85, 0xc0,
|
||||
0xc, 0x0, 0x4f, 0x22, 0x40, 0x2, 0xc3, 0x72,
|
||||
0x80, 0x0,
|
||||
|
||||
/* U+76 "v" */
|
||||
0xd, 0x50, 0xa, 0x60, 0x2e, 0x40, 0x26, 0xa0,
|
||||
0x73, 0x20, 0x64, 0x20, 0x15, 0xa0, 0xae, 0x0,
|
||||
0xa5, 0x8c, 0x94, 0x2, 0x33, 0x73, 0x0, 0x75,
|
||||
0x95, 0x0, 0x0,
|
||||
|
||||
/* U+77 "w" */
|
||||
0xc5, 0x0, 0x1f, 0x88, 0x1, 0xe2, 0xbc, 0x1,
|
||||
0x40, 0xe0, 0xa, 0xb7, 0x50, 0x3, 0xc6, 0x81,
|
||||
0x1, 0x8a, 0x2a, 0x13, 0xa8, 0xd2, 0x80, 0x37,
|
||||
0xf6, 0x81, 0x1d, 0x6c, 0x0, 0xea, 0xee, 0xe,
|
||||
0x80, 0x30, 0x0, 0xa2, 0x88, 0x20, 0x28, 0x0,
|
||||
|
||||
/* U+78 "x" */
|
||||
0x5d, 0x0, 0x27, 0xa, 0xbc, 0x8d, 0x50, 0x42,
|
||||
0xdf, 0x1d, 0x0, 0x2, 0xc5, 0x0, 0x11, 0x32,
|
||||
0x58, 0x5, 0xd3, 0x6e, 0xc0, 0xe0, 0xe1, 0xd2,
|
||||
0x40,
|
||||
|
||||
/* U+79 "y" */
|
||||
0xd, 0x50, 0xa, 0x60, 0x2b, 0x80, 0x27, 0xa0,
|
||||
0x64, 0x20, 0x52, 0x20, 0xa, 0xa8, 0x3a, 0x40,
|
||||
0x2e, 0xa1, 0x55, 0x0, 0x48, 0x74, 0xe0, 0x1c,
|
||||
0xc9, 0x40, 0x1d, 0xa4, 0x60, 0x12, 0x94, 0xd8,
|
||||
0x4, 0x33, 0xaa, 0xc0, 0x10,
|
||||
|
||||
/* U+7A "z" */
|
||||
0x7f, 0xfd, 0x6f, 0xfe, 0xd0, 0x80, 0xb, 0xa0,
|
||||
0xc0, 0x12, 0xee, 0x0, 0x23, 0xd0, 0x0, 0x6a,
|
||||
0xc4, 0x1, 0x23, 0x5f, 0xed
|
||||
};
|
||||
|
||||
|
||||
/*---------------------
|
||||
* 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 = 52, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 0, .adv_w = 115, .box_w = 7, .box_h = 7, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 25, .adv_w = 131, .box_w = 7, .box_h = 10, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 53, .adv_w = 110, .box_w = 7, .box_h = 7, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 76, .adv_w = 131, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 110, .adv_w = 118, .box_w = 7, .box_h = 7, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 134, .adv_w = 68, .box_w = 5, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 150, .adv_w = 132, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -3},
|
||||
{.bitmap_index = 190, .adv_w = 131, .box_w = 7, .box_h = 10, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 214, .adv_w = 54, .box_w = 3, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 224, .adv_w = 55, .box_w = 5, .box_h = 13, .ofs_x = -2, .ofs_y = -3},
|
||||
{.bitmap_index = 241, .adv_w = 118, .box_w = 7, .box_h = 10, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 265, .adv_w = 54, .box_w = 2, .box_h = 10, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 270, .adv_w = 203, .box_w = 11, .box_h = 7, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 296, .adv_w = 131, .box_w = 7, .box_h = 7, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 316, .adv_w = 122, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 344, .adv_w = 131, .box_w = 7, .box_h = 10, .ofs_x = 1, .ofs_y = -3},
|
||||
{.bitmap_index = 375, .adv_w = 131, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -3},
|
||||
{.bitmap_index = 409, .adv_w = 79, .box_w = 4, .box_h = 7, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 420, .adv_w = 96, .box_w = 6, .box_h = 7, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 442, .adv_w = 79, .box_w = 5, .box_h = 9, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 460, .adv_w = 130, .box_w = 7, .box_h = 7, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 478, .adv_w = 107, .box_w = 8, .box_h = 7, .ofs_x = -1, .ofs_y = 0},
|
||||
{.bitmap_index = 505, .adv_w = 173, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 545, .adv_w = 106, .box_w = 7, .box_h = 7, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 570, .adv_w = 107, .box_w = 8, .box_h = 10, .ofs_x = -1, .ofs_y = -3},
|
||||
{.bitmap_index = 607, .adv_w = 100, .box_w = 6, .box_h = 7, .ofs_x = 0, .ofs_y = 0}
|
||||
};
|
||||
|
||||
/*---------------------
|
||||
* CHARACTER MAPPING
|
||||
*--------------------*/
|
||||
|
||||
|
||||
|
||||
/*Collect the unicode lists and glyph_id offsets*/
|
||||
static const lv_font_fmt_txt_cmap_t cmaps[] =
|
||||
{
|
||||
{
|
||||
.range_start = 32, .range_length = 1, .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 = 97, .range_length = 26, .glyph_id_start = 2,
|
||||
.unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
|
||||
}
|
||||
};
|
||||
|
||||
/*-----------------
|
||||
* KERNING
|
||||
*----------------*/
|
||||
|
||||
|
||||
/*Map glyph_ids to kern left classes*/
|
||||
static const uint8_t kern_left_class_mapping[] =
|
||||
{
|
||||
0, 0, 1, 2, 3, 4, 5, 6,
|
||||
0, 1, 0, 0, 7, 4, 1, 1,
|
||||
2, 2, 8, 9, 10, 11, 0, 12,
|
||||
12, 13, 12, 14
|
||||
};
|
||||
|
||||
/*Map glyph_ids to kern right classes*/
|
||||
static const uint8_t kern_right_class_mapping[] =
|
||||
{
|
||||
0, 0, 1, 2, 3, 3, 3, 0,
|
||||
3, 2, 4, 5, 2, 2, 4, 4,
|
||||
3, 4, 3, 4, 6, 7, 8, 9,
|
||||
9, 10, 9, 11
|
||||
};
|
||||
|
||||
/*Kern values between classes*/
|
||||
static const int8_t kern_class_values[] =
|
||||
{
|
||||
0, 0, 1, 0, 0, 0, 0, 0,
|
||||
-2, 0, 0, -1, 0, 0, 0, 0,
|
||||
0, 0, 0, -3, -3, -2, 0, -1,
|
||||
-2, 0, 0, 0, 1, 0, -1, -3,
|
||||
-1, 0, 0, 0, 0, 0, 0, 2,
|
||||
0, 0, 0, 0, -3, 0, 0, 0,
|
||||
0, 0, 0, 0, -2, -3, -1, -2,
|
||||
0, -2, 15, 8, 0, 0, 0, 2,
|
||||
0, 0, -2, 0, -4, -1, 0, -3,
|
||||
0, -2, -5, -4, -2, 0, 0, 0,
|
||||
0, 10, 0, 0, 0, 0, 0, 0,
|
||||
-2, -1, -2, -1, 0, -1, 3, 0,
|
||||
3, -1, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, -2, -2, 0, 0, 0,
|
||||
-3, 0, 0, 0, -2, 0, -2, 0,
|
||||
0, -3, 0, -3, 0, -3, -1, 3,
|
||||
0, -2, -6, -2, -2, 0, -3, 0,
|
||||
1, -2, 0, -2, -6, 0, -2, 0,
|
||||
0, -2, 0, 0, 0, 0, 0, -2,
|
||||
-2, 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 = 14,
|
||||
.right_class_cnt = 11,
|
||||
};
|
||||
|
||||
/*--------------------
|
||||
* ALL CUSTOM DATA
|
||||
*--------------------*/
|
||||
|
||||
/*Store all the custom data of the font*/
|
||||
static lv_font_fmt_txt_dsc_t font_dsc = {
|
||||
.glyph_bitmap = glyph_bitmap,
|
||||
.glyph_dsc = glyph_dsc,
|
||||
.cmaps = cmaps,
|
||||
.kern_dsc = &kern_classes,
|
||||
.kern_scale = 16,
|
||||
.cmap_num = 2,
|
||||
.bpp = 4,
|
||||
.kern_classes = 1,
|
||||
.bitmap_format = 1
|
||||
};
|
||||
|
||||
|
||||
/*-----------------
|
||||
* PUBLIC FONT
|
||||
*----------------*/
|
||||
|
||||
/*Initialize a public general font descriptor*/
|
||||
lv_font_t lv_font_benchmark_montserrat_12_compr_az = {
|
||||
.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 = 13, /*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
|
||||
.dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */
|
||||
};
|
||||
|
||||
#endif /*#if LV_FONT_BENCHMARK_MONTSERRAT_12_COMPR_AZ*/
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,357 @@
|
||||
#include "../../../lvgl.h"
|
||||
|
||||
#if LV_USE_DEMO_BENCHMARK
|
||||
|
||||
/*******************************************************************************
|
||||
* Size: 16 px
|
||||
* Bpp: 4
|
||||
* Opts:
|
||||
******************************************************************************/
|
||||
|
||||
#ifndef LV_FONT_BENCHMARK_MONTSERRAT_16_COMPR_AZ
|
||||
#define LV_FONT_BENCHMARK_MONTSERRAT_16_COMPR_AZ 1
|
||||
#endif
|
||||
|
||||
#if LV_FONT_BENCHMARK_MONTSERRAT_16_COMPR_AZ
|
||||
|
||||
/*-----------------
|
||||
* BITMAPS
|
||||
*----------------*/
|
||||
|
||||
/*Store the image of the glyphs*/
|
||||
static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
|
||||
/* U+20 " " */
|
||||
|
||||
/* U+61 "a" */
|
||||
0x1, 0x9e, 0xfd, 0x80, 0xb, 0x5d, 0xa1, 0xdd,
|
||||
0x20, 0xe, 0xe4, 0x3d, 0x2b, 0x0, 0x8, 0x3,
|
||||
0x60, 0x10, 0x15, 0xf7, 0xfa, 0x40, 0x2c, 0x7a,
|
||||
0xdd, 0x40, 0x0, 0x86, 0x50, 0x88, 0x1, 0x10,
|
||||
0xca, 0x13, 0xc0, 0x5, 0x8f, 0x7b, 0x92, 0x0,
|
||||
|
||||
/* U+62 "b" */
|
||||
0x8f, 0x0, 0xff, 0xe9, 0x15, 0xff, 0x59, 0x80,
|
||||
0x6c, 0x78, 0x65, 0xc3, 0x0, 0x93, 0x1e, 0x3c,
|
||||
0x7c, 0x2, 0x80, 0x8, 0x64, 0xc4, 0x0, 0x40,
|
||||
0x18, 0x80, 0x80, 0x4, 0x1, 0x88, 0x8, 0x1,
|
||||
0x0, 0x10, 0xc9, 0x8, 0x1, 0x31, 0xe3, 0xc7,
|
||||
0x80, 0x3, 0x8f, 0xc, 0xb8, 0x60,
|
||||
|
||||
/* U+63 "c" */
|
||||
0x0, 0x1d, 0x77, 0xe2, 0x0, 0x13, 0x1d, 0xa0,
|
||||
0x2d, 0x2, 0x4b, 0x61, 0xf2, 0x14, 0xca, 0xc0,
|
||||
0x33, 0x8b, 0x82, 0x80, 0x79, 0xc1, 0x40, 0x3c,
|
||||
0x65, 0x60, 0x19, 0x84, 0x24, 0xb5, 0xdd, 0x92,
|
||||
0xa0, 0x98, 0xf3, 0x1, 0x68,
|
||||
|
||||
/* U+64 "d" */
|
||||
0x0, 0xf8, 0x7d, 0xc0, 0x3f, 0xf9, 0x47, 0x7f,
|
||||
0xea, 0x20, 0x9, 0x31, 0x9e, 0x1b, 0x40, 0x2a,
|
||||
0x2d, 0x87, 0xc5, 0x0, 0x18, 0xd8, 0x6, 0x80,
|
||||
0x3, 0x82, 0x80, 0x62, 0x0, 0x38, 0x30, 0x6,
|
||||
0x20, 0x1, 0x8c, 0x80, 0x69, 0x0, 0xa8, 0xf1,
|
||||
0x96, 0xd0, 0x2, 0x4c, 0x79, 0xa0, 0xc0, 0x0,
|
||||
|
||||
/* U+65 "e" */
|
||||
0x0, 0x1d, 0xff, 0x51, 0x0, 0x49, 0x8f, 0x32,
|
||||
0x4c, 0x20, 0x5, 0x1e, 0x33, 0xf8, 0x40, 0x18,
|
||||
0xc8, 0x4, 0x32, 0xa0, 0xe1, 0x5f, 0xfa, 0x0,
|
||||
0x5c, 0x23, 0x77, 0xc2, 0x63, 0x64, 0x58, 0x8,
|
||||
0x1, 0x47, 0xb0, 0xf5, 0xaa, 0x0, 0x4c, 0x76,
|
||||
0x87, 0x95, 0x0,
|
||||
|
||||
/* U+66 "f" */
|
||||
0x0, 0x2e, 0xfe, 0x0, 0xa, 0x9a, 0xac, 0x0,
|
||||
0xc1, 0xa, 0xe1, 0x96, 0x19, 0xf4, 0x10, 0xe1,
|
||||
0x15, 0x20, 0x9a, 0x8, 0xa6, 0x1, 0xff, 0xdf,
|
||||
|
||||
/* U+67 "g" */
|
||||
0x0, 0x1d, 0xff, 0xac, 0xba, 0x41, 0x31, 0x5e,
|
||||
0x1f, 0x44, 0x1, 0x45, 0xf0, 0xf8, 0xa0, 0x3,
|
||||
0x1b, 0x10, 0xa, 0xc0, 0xe, 0x4, 0x1, 0x84,
|
||||
0x0, 0xe0, 0x40, 0x18, 0x40, 0x6, 0x36, 0x1,
|
||||
0xa0, 0x2, 0xa2, 0xd8, 0x7c, 0x60, 0x10, 0x4c,
|
||||
0x67, 0x87, 0xc0, 0xf0, 0x1, 0xdf, 0xfa, 0xd8,
|
||||
0xc, 0x27, 0xa5, 0xdd, 0x54, 0x44, 0x4, 0x4a,
|
||||
0xc4, 0x1d, 0xd6, 0x0,
|
||||
|
||||
/* U+68 "h" */
|
||||
0x8f, 0x0, 0xff, 0xe7, 0x95, 0xff, 0x50, 0x80,
|
||||
0x5a, 0xe, 0xe5, 0xc0, 0x9, 0xee, 0x26, 0x44,
|
||||
0x80, 0x9, 0x0, 0x9c, 0xc, 0x0, 0x20, 0x10,
|
||||
0x87, 0x80, 0x7f, 0xf6, 0x0,
|
||||
|
||||
/* U+69 "i" */
|
||||
0x9e, 0x13, 0x13, 0xaf, 0x28, 0xf0, 0xf, 0xfe,
|
||||
0x68,
|
||||
|
||||
/* U+6A "j" */
|
||||
0x0, 0x9f, 0x88, 0x2, 0xe1, 0x10, 0x5, 0x3e,
|
||||
0x60, 0x13, 0xf8, 0x80, 0x7f, 0xf9, 0xfc, 0x4,
|
||||
0x50, 0xcc, 0x30, 0x26, 0x92, 0xe0,
|
||||
|
||||
/* U+6B "k" */
|
||||
0x8f, 0x0, 0xff, 0xe9, 0xe, 0xe8, 0x40, 0x30,
|
||||
0xe1, 0xf8, 0x80, 0x43, 0x87, 0x84, 0x1, 0x16,
|
||||
0x16, 0x90, 0x6, 0xc2, 0x4, 0x0, 0xf6, 0xa4,
|
||||
0x18, 0x6, 0xc2, 0xa1, 0xd1, 0x0, 0x88, 0x7,
|
||||
0x46, 0x80, 0x3c, 0x70, 0x8e,
|
||||
|
||||
/* U+6C "l" */
|
||||
0x8f, 0x0, 0xff, 0xe5, 0x0,
|
||||
|
||||
/* U+6D "m" */
|
||||
0x8e, 0x3c, 0xfe, 0x91, 0x3b, 0xfe, 0xa2, 0x0,
|
||||
0xe, 0x2c, 0xbb, 0x6e, 0x3c, 0xb2, 0xf8, 0x5,
|
||||
0x12, 0xd2, 0xc6, 0x6c, 0x68, 0xa2, 0x50, 0x3,
|
||||
0x0, 0x58, 0x14, 0x1, 0x20, 0x10, 0x0, 0x40,
|
||||
0x21, 0x2, 0x0, 0x84, 0x3c, 0x3, 0xff, 0xe0,
|
||||
|
||||
/* U+6E "n" */
|
||||
0x8e, 0x3b, 0xfe, 0xa1, 0x0, 0xe, 0xc, 0xb2,
|
||||
0xe0, 0x4, 0xf4, 0xd1, 0x24, 0x80, 0x9, 0x0,
|
||||
0x9c, 0xc, 0x0, 0x20, 0x10, 0x87, 0x80, 0x7f,
|
||||
0xf6, 0x0,
|
||||
|
||||
/* U+6F "o" */
|
||||
0x0, 0x1d, 0xf7, 0xe2, 0x0, 0x49, 0x8c, 0xc8,
|
||||
0xb, 0x60, 0x5, 0x16, 0xc3, 0xe2, 0x48, 0x98,
|
||||
0xd8, 0x6, 0x80, 0x47, 0x5, 0x0, 0xc4, 0x4,
|
||||
0xe0, 0xa0, 0x18, 0x80, 0x8c, 0x6c, 0x3, 0x40,
|
||||
0x20, 0x51, 0x6b, 0xbb, 0x12, 0x44, 0x13, 0x1a,
|
||||
0x60, 0x2d, 0x80,
|
||||
|
||||
/* U+70 "p" */
|
||||
0x8e, 0x3b, 0xfe, 0xb3, 0x0, 0x87, 0x2, 0xa5,
|
||||
0xb0, 0xc0, 0x26, 0xb5, 0x7d, 0x2f, 0x0, 0xa0,
|
||||
0x3, 0x51, 0x88, 0x0, 0x40, 0x31, 0x1, 0x0,
|
||||
0x8, 0x3, 0x10, 0x10, 0x2, 0x0, 0x21, 0x92,
|
||||
0x10, 0x2, 0x63, 0xc7, 0x8f, 0x0, 0x58, 0xf0,
|
||||
0xcb, 0x86, 0x1, 0x15, 0xff, 0x59, 0x80, 0x7f,
|
||||
0xf2, 0x80,
|
||||
|
||||
/* U+71 "q" */
|
||||
0x0, 0x1d, 0xff, 0xa8, 0xbd, 0xc1, 0x31, 0x9e,
|
||||
0x1f, 0x0, 0x2a, 0x2d, 0x87, 0xd5, 0x0, 0x18,
|
||||
0xd8, 0x6, 0x80, 0x3, 0x82, 0x80, 0x62, 0x0,
|
||||
0x38, 0x28, 0x6, 0x20, 0x1, 0x8d, 0x80, 0x68,
|
||||
0x0, 0xa8, 0xb5, 0xdd, 0x8a, 0x1, 0x26, 0x34,
|
||||
0x41, 0xb4, 0x3, 0x1d, 0xff, 0xa8, 0x80, 0x3f,
|
||||
0xf9, 0x40,
|
||||
|
||||
/* U+72 "r" */
|
||||
0x8e, 0x2b, 0xf0, 0x0, 0xe3, 0x30, 0x2, 0x4d,
|
||||
0x90, 0xa, 0x0, 0x38, 0x80, 0x3f, 0xf9, 0xe0,
|
||||
|
||||
/* U+73 "s" */
|
||||
0x2, 0xae, 0xfd, 0x91, 0x16, 0x3c, 0xc9, 0x10,
|
||||
0x2a, 0x3c, 0xed, 0x3a, 0xc, 0x10, 0x82, 0x1,
|
||||
0x14, 0xad, 0xf6, 0xb0, 0x1, 0xbb, 0x94, 0xd2,
|
||||
0xa0, 0x20, 0x2b, 0x60, 0x4b, 0xd4, 0xed, 0x60,
|
||||
0x88, 0x67, 0x88, 0x3d, 0x98,
|
||||
|
||||
/* U+74 "t" */
|
||||
0x5, 0xf3, 0x0, 0xff, 0x65, 0x6, 0x7d, 0x4,
|
||||
0x38, 0x45, 0x48, 0x26, 0x82, 0x29, 0x80, 0x7f,
|
||||
0xf2, 0xc4, 0x1c, 0x3, 0x28, 0x43, 0x40, 0x0,
|
||||
0x68, 0x65, 0x4,
|
||||
|
||||
/* U+75 "u" */
|
||||
0xae, 0x0, 0xc5, 0xea, 0x1, 0xff, 0xd8, 0x31,
|
||||
0x0, 0xcc, 0x0, 0xf0, 0x30, 0xb, 0x80, 0xe,
|
||||
0x3a, 0xed, 0x6a, 0x0, 0x1c, 0x59, 0x90, 0x60,
|
||||
0x0,
|
||||
|
||||
/* U+76 "v" */
|
||||
0xd, 0xc0, 0xe, 0xcb, 0xb, 0x32, 0x0, 0x88,
|
||||
0xf8, 0x18, 0x2c, 0x2, 0xb1, 0x50, 0x3, 0x38,
|
||||
0x4, 0xcc, 0x0, 0xac, 0x58, 0x18, 0x24, 0x2,
|
||||
0x23, 0xa0, 0xa4, 0x10, 0xd, 0x26, 0xc7, 0xe0,
|
||||
0x1c, 0xa3, 0x24, 0x80, 0x1e, 0x60, 0xa0, 0x8,
|
||||
|
||||
/* U+77 "w" */
|
||||
0xbb, 0x0, 0x69, 0xf1, 0x0, 0x93, 0xc7, 0x50,
|
||||
0x40, 0x27, 0x7, 0x0, 0xb4, 0xc5, 0x81, 0xc0,
|
||||
0xa, 0x27, 0xa0, 0x13, 0x50, 0x1, 0x68, 0x1,
|
||||
0xe9, 0x28, 0x20, 0xa0, 0xe0, 0xf, 0x31, 0x5,
|
||||
0xe5, 0x6, 0xf, 0x41, 0x0, 0x28, 0x33, 0x1,
|
||||
0x41, 0xac, 0x17, 0x80, 0x32, 0xde, 0xa8, 0x3,
|
||||
0x4e, 0x1, 0x40, 0x37, 0x1a, 0x70, 0x1, 0x5,
|
||||
0xd4, 0x3, 0x90, 0x44, 0x80, 0x13, 0x7, 0x0,
|
||||
0x40,
|
||||
|
||||
/* U+78 "x" */
|
||||
0x4f, 0x70, 0xa, 0x7c, 0x91, 0xe0, 0xc1, 0x5a,
|
||||
0x88, 0x20, 0xf8, 0xad, 0x94, 0x2, 0xe2, 0xd3,
|
||||
0x90, 0xc, 0x4a, 0x16, 0x1, 0xc8, 0xa5, 0x2,
|
||||
0x1, 0xd, 0x26, 0x9e, 0x80, 0x54, 0x14, 0x1c,
|
||||
0x70, 0xc, 0x94, 0x20, 0x70, 0xe8,
|
||||
|
||||
/* U+79 "y" */
|
||||
0xd, 0xc0, 0xe, 0xcb, 0xb, 0x33, 0x0, 0x44,
|
||||
0x7e, 0xc, 0x32, 0x1, 0x59, 0x20, 0x1, 0x94,
|
||||
0x40, 0x5a, 0x80, 0x29, 0x6, 0x6, 0x6, 0x0,
|
||||
0x85, 0x64, 0x29, 0x84, 0x3, 0x48, 0xc9, 0x58,
|
||||
0x7, 0x19, 0x99, 0x8, 0x3, 0xd4, 0x1e, 0x1,
|
||||
0xf6, 0x12, 0x0, 0x43, 0x8f, 0x2b, 0x0, 0x1c,
|
||||
0xd2, 0xf0, 0xa0, 0x18,
|
||||
|
||||
/* U+7A "z" */
|
||||
0x4f, 0xff, 0x4a, 0xd5, 0x64, 0xd, 0x15, 0x58,
|
||||
0x51, 0xd0, 0x2, 0x1a, 0x38, 0x0, 0xd4, 0x1a,
|
||||
0x1, 0xa1, 0x28, 0x40, 0x24, 0x78, 0x40, 0x8,
|
||||
0x68, 0x49, 0x56, 0x34, 0x11, 0x55, 0x6f
|
||||
};
|
||||
|
||||
|
||||
/*---------------------
|
||||
* 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 = 69, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 0, .adv_w = 153, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 40, .adv_w = 175, .box_w = 10, .box_h = 12, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 86, .adv_w = 146, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 123, .adv_w = 175, .box_w = 10, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 171, .adv_w = 157, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 214, .adv_w = 90, .box_w = 7, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 238, .adv_w = 177, .box_w = 10, .box_h = 12, .ofs_x = 0, .ofs_y = -3},
|
||||
{.bitmap_index = 298, .adv_w = 174, .box_w = 9, .box_h = 12, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 327, .adv_w = 71, .box_w = 3, .box_h = 12, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 336, .adv_w = 73, .box_w = 6, .box_h = 15, .ofs_x = -2, .ofs_y = -3},
|
||||
{.bitmap_index = 358, .adv_w = 158, .box_w = 9, .box_h = 12, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 395, .adv_w = 71, .box_w = 2, .box_h = 12, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 400, .adv_w = 271, .box_w = 15, .box_h = 9, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 440, .adv_w = 174, .box_w = 9, .box_h = 9, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 466, .adv_w = 163, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 509, .adv_w = 175, .box_w = 10, .box_h = 12, .ofs_x = 1, .ofs_y = -3},
|
||||
{.bitmap_index = 559, .adv_w = 175, .box_w = 10, .box_h = 12, .ofs_x = 0, .ofs_y = -3},
|
||||
{.bitmap_index = 609, .adv_w = 105, .box_w = 6, .box_h = 9, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 625, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 662, .adv_w = 106, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 689, .adv_w = 173, .box_w = 9, .box_h = 9, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 714, .adv_w = 143, .box_w = 10, .box_h = 9, .ofs_x = -1, .ofs_y = 0},
|
||||
{.bitmap_index = 754, .adv_w = 230, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 819, .adv_w = 141, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 857, .adv_w = 143, .box_w = 10, .box_h = 12, .ofs_x = -1, .ofs_y = -3},
|
||||
{.bitmap_index = 909, .adv_w = 133, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = 0}
|
||||
};
|
||||
|
||||
/*---------------------
|
||||
* CHARACTER MAPPING
|
||||
*--------------------*/
|
||||
|
||||
|
||||
|
||||
/*Collect the unicode lists and glyph_id offsets*/
|
||||
static const lv_font_fmt_txt_cmap_t cmaps[] =
|
||||
{
|
||||
{
|
||||
.range_start = 32, .range_length = 1, .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 = 97, .range_length = 26, .glyph_id_start = 2,
|
||||
.unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
|
||||
}
|
||||
};
|
||||
|
||||
/*-----------------
|
||||
* KERNING
|
||||
*----------------*/
|
||||
|
||||
|
||||
/*Map glyph_ids to kern left classes*/
|
||||
static const uint8_t kern_left_class_mapping[] =
|
||||
{
|
||||
0, 0, 1, 2, 3, 4, 5, 6,
|
||||
0, 1, 0, 0, 7, 4, 1, 1,
|
||||
2, 2, 8, 9, 10, 11, 0, 12,
|
||||
12, 13, 12, 14
|
||||
};
|
||||
|
||||
/*Map glyph_ids to kern right classes*/
|
||||
static const uint8_t kern_right_class_mapping[] =
|
||||
{
|
||||
0, 0, 1, 2, 3, 3, 3, 0,
|
||||
3, 2, 4, 5, 2, 2, 4, 4,
|
||||
3, 4, 3, 4, 6, 7, 8, 9,
|
||||
9, 10, 9, 11
|
||||
};
|
||||
|
||||
/*Kern values between classes*/
|
||||
static const int8_t kern_class_values[] =
|
||||
{
|
||||
0, 0, 1, 0, 0, 0, 0, 0,
|
||||
-3, 0, 0, -1, 0, 0, 0, 0,
|
||||
0, 0, 0, -4, -5, -2, 0, -2,
|
||||
-2, 0, 0, 0, 2, 0, -2, -4,
|
||||
-2, 0, 0, 0, 0, 0, 0, 3,
|
||||
0, 0, 0, 0, -4, 0, 0, 0,
|
||||
0, 0, 0, 0, -3, -4, -1, -3,
|
||||
0, -2, 20, 11, 0, 0, 0, 3,
|
||||
0, 0, -3, 0, -6, -2, 0, -4,
|
||||
0, -3, -7, -5, -3, 0, 0, 0,
|
||||
0, 13, 0, 0, 0, 0, 0, 0,
|
||||
-2, -2, -3, -2, 0, -1, 4, 0,
|
||||
4, -2, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, -3, -3, 0, 0, 0,
|
||||
-5, 0, 0, 0, -3, 0, -3, 0,
|
||||
0, -4, 0, -4, 0, -4, -2, 4,
|
||||
0, -2, -8, -3, -3, 0, -5, 0,
|
||||
2, -3, 0, -3, -8, 0, -3, 0,
|
||||
0, -2, 0, 0, 0, 1, 0, -3,
|
||||
-3, 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 = 14,
|
||||
.right_class_cnt = 11,
|
||||
};
|
||||
|
||||
/*--------------------
|
||||
* ALL CUSTOM DATA
|
||||
*--------------------*/
|
||||
|
||||
/*Store all the custom data of the font*/
|
||||
static lv_font_fmt_txt_dsc_t font_dsc = {
|
||||
.glyph_bitmap = glyph_bitmap,
|
||||
.glyph_dsc = glyph_dsc,
|
||||
.cmaps = cmaps,
|
||||
.kern_dsc = &kern_classes,
|
||||
.kern_scale = 16,
|
||||
.cmap_num = 2,
|
||||
.bpp = 4,
|
||||
.kern_classes = 1,
|
||||
.bitmap_format = 1
|
||||
};
|
||||
|
||||
|
||||
/*-----------------
|
||||
* PUBLIC FONT
|
||||
*----------------*/
|
||||
|
||||
/*Initialize a public general font descriptor*/
|
||||
lv_font_t lv_font_benchmark_montserrat_16_compr_az = {
|
||||
.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 = 15, /*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
|
||||
.dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */
|
||||
};
|
||||
|
||||
#endif /*#if LV_FONT_BENCHMARK_MONTSERRAT_16_COMPR_AZ*/
|
||||
|
||||
#endif
|
||||
|
||||
@@ -0,0 +1,508 @@
|
||||
#include "../../../lvgl.h"
|
||||
|
||||
#if LV_USE_DEMO_BENCHMARK
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
* Size: 28 px
|
||||
* Bpp: 4
|
||||
* Opts:
|
||||
******************************************************************************/
|
||||
|
||||
#ifndef LV_FONT_BENCHMARK_MONTSERRAT_28_COMPR_AZ
|
||||
#define LV_FONT_BENCHMARK_MONTSERRAT_28_COMPR_AZ 1
|
||||
#endif
|
||||
|
||||
#if LV_FONT_BENCHMARK_MONTSERRAT_28_COMPR_AZ
|
||||
|
||||
/*-----------------
|
||||
* BITMAPS
|
||||
*----------------*/
|
||||
|
||||
/*Store the image of the glyphs*/
|
||||
static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
|
||||
/* U+20 " " */
|
||||
|
||||
/* U+61 "a" */
|
||||
0x0, 0xb, 0xdf, 0x7f, 0xb6, 0x90, 0x3, 0x47,
|
||||
0x42, 0x8, 0x0, 0x96, 0xe4, 0x2, 0x50, 0x15,
|
||||
0x9a, 0x95, 0x0, 0x33, 0x0, 0x1d, 0x1d, 0x4c,
|
||||
0xad, 0x5a, 0x0, 0x80, 0x1, 0xb8, 0x7, 0x89,
|
||||
0xc0, 0x48, 0x3, 0xfd, 0xc0, 0x6, 0x0, 0x14,
|
||||
0x67, 0x73, 0xfe, 0x90, 0xc, 0xda, 0xe6, 0x22,
|
||||
0x0, 0xf0, 0x94, 0x80, 0xd7, 0x7f, 0xe9, 0x0,
|
||||
0x94, 0x1, 0x4a, 0x20, 0x1f, 0xb8, 0x0, 0xa0,
|
||||
0x1e, 0xe0, 0xb, 0x80, 0x8, 0x1, 0xc4, 0xe0,
|
||||
0x12, 0x80, 0x2d, 0x40, 0x2, 0xd8, 0x1, 0x8a,
|
||||
0x80, 0x6b, 0xfd, 0xd2, 0x2c, 0x1, 0x97, 0x58,
|
||||
0x40, 0x4, 0xdb, 0x40, 0x10,
|
||||
|
||||
/* U+62 "b" */
|
||||
0x7f, 0xf1, 0x80, 0x7f, 0xff, 0xc0, 0x3f, 0xf9,
|
||||
0x4b, 0x7d, 0xfb, 0x6a, 0x1, 0xf3, 0x65, 0x20,
|
||||
0x81, 0x25, 0x69, 0x0, 0x75, 0x98, 0x2c, 0x4b,
|
||||
0x88, 0x16, 0x90, 0x6, 0x12, 0xda, 0x76, 0x8e,
|
||||
0x60, 0x7, 0x80, 0x77, 0x90, 0x7, 0x4a, 0x81,
|
||||
0x28, 0x4, 0xc4, 0x1, 0xf4, 0x0, 0x3c, 0x2,
|
||||
0xc0, 0xf, 0xc4, 0x20, 0xc0, 0x13, 0x0, 0x7f,
|
||||
0x18, 0x10, 0x4, 0xc0, 0x1f, 0xc6, 0x4, 0x1,
|
||||
0x60, 0x7, 0xe3, 0x10, 0x60, 0x9, 0x88, 0x3,
|
||||
0xe8, 0x0, 0x78, 0x6, 0xf2, 0x0, 0xe9, 0x40,
|
||||
0x25, 0x0, 0x88, 0x9b, 0x4e, 0xd1, 0xcc, 0x0,
|
||||
0xf0, 0xd, 0xc6, 0xb, 0x12, 0xe2, 0x5, 0xa4,
|
||||
0x1, 0x87, 0x29, 0x4, 0x5, 0x2b, 0x48, 0x0,
|
||||
|
||||
/* U+63 "c" */
|
||||
0x0, 0xc7, 0x3b, 0xfe, 0xd9, 0x30, 0xe, 0x1b,
|
||||
0xc6, 0x20, 0x1, 0x36, 0x48, 0x4, 0x38, 0x80,
|
||||
0x2d, 0x32, 0x60, 0x3, 0x40, 0x2, 0x88, 0x17,
|
||||
0xa5, 0x99, 0x3c, 0x60, 0x11, 0xa0, 0x1d, 0x0,
|
||||
0x70, 0xee, 0xa0, 0x2c, 0x1, 0x0, 0x1f, 0x9,
|
||||
0x0, 0xc, 0x0, 0x80, 0x1f, 0xf3, 0x80, 0x80,
|
||||
0x7f, 0xf0, 0x1c, 0x4, 0x3, 0xff, 0x80, 0x60,
|
||||
0x4, 0x0, 0xff, 0xa8, 0x1, 0x0, 0x1f, 0x9,
|
||||
0x0, 0x9, 0x0, 0xe8, 0x3, 0x87, 0x75, 0x0,
|
||||
0xa, 0x20, 0x5e, 0x96, 0x64, 0xf1, 0x80, 0x61,
|
||||
0xc4, 0x1, 0x69, 0x93, 0x0, 0x1e, 0x0, 0x21,
|
||||
0xbc, 0x62, 0x0, 0x13, 0x64, 0x0, 0x0,
|
||||
|
||||
/* U+64 "d" */
|
||||
0x0, 0xff, 0xe0, 0x17, 0xfa, 0x0, 0x3f, 0xff,
|
||||
0xe0, 0x1f, 0xcb, 0x5b, 0xfd, 0x8c, 0x1, 0xf1,
|
||||
0x65, 0x29, 0x0, 0x9c, 0xeb, 0x0, 0x61, 0xc3,
|
||||
0x1, 0x69, 0x92, 0x81, 0x50, 0x6, 0xd1, 0x5,
|
||||
0xe9, 0x66, 0x57, 0x18, 0x80, 0x46, 0x60, 0x3a,
|
||||
0x0, 0xe1, 0xd1, 0x0, 0xa8, 0x1, 0x0, 0x1f,
|
||||
0xb, 0x0, 0x44, 0x0, 0x40, 0xf, 0xd6, 0x1,
|
||||
0x38, 0x8, 0x7, 0xf0, 0x80, 0x4e, 0x2, 0x1,
|
||||
0xfc, 0x20, 0x11, 0x0, 0xc, 0x3, 0xf2, 0x0,
|
||||
0x54, 0x0, 0x80, 0xf, 0xd4, 0x1, 0x19, 0x81,
|
||||
0x20, 0x3, 0xd6, 0x40, 0x1b, 0x44, 0x1f, 0x18,
|
||||
0xd1, 0xf9, 0x4, 0x3, 0xe, 0x18, 0x1c, 0xe5,
|
||||
0xc0, 0x8b, 0x40, 0x38, 0xb2, 0x90, 0x80, 0x4e,
|
||||
0x38, 0xc0, 0x20,
|
||||
|
||||
/* U+65 "e" */
|
||||
0x0, 0xc9, 0x7b, 0xfd, 0x8c, 0x20, 0x1c, 0x39,
|
||||
0x68, 0x40, 0x27, 0x3e, 0x80, 0x10, 0xf9, 0x82,
|
||||
0x4d, 0xd3, 0x0, 0xda, 0x0, 0x28, 0x42, 0xec,
|
||||
0xc8, 0xb3, 0xa4, 0x14, 0x26, 0x81, 0x28, 0x1,
|
||||
0xc5, 0xe0, 0x2f, 0x40, 0x6, 0x0, 0xf8, 0x90,
|
||||
0x34, 0x80, 0x1f, 0xff, 0xc8, 0xc, 0xe0, 0x1f,
|
||||
0xfc, 0x13, 0x70, 0x7, 0xff, 0xfd, 0xc6, 0x0,
|
||||
0x40, 0xf, 0xfa, 0xc0, 0x10, 0x1, 0xf8, 0x40,
|
||||
0x6, 0x80, 0x76, 0x20, 0x1c, 0xbe, 0x60, 0xa,
|
||||
0x20, 0x4e, 0x96, 0x64, 0x65, 0xf, 0x80, 0x7,
|
||||
0x10, 0x0, 0xd3, 0x27, 0x30, 0x2e, 0x0, 0x86,
|
||||
0xf1, 0x88, 0x40, 0x56, 0xb4, 0x80,
|
||||
|
||||
/* U+66 "f" */
|
||||
0x0, 0xc3, 0x1b, 0xfd, 0x68, 0x1, 0xe, 0x39,
|
||||
0x0, 0xa6, 0x80, 0x50, 0x40, 0xb7, 0x66, 0xa0,
|
||||
0x9, 0xc0, 0xa9, 0x11, 0x26, 0x1, 0x8, 0x20,
|
||||
0x7, 0xc2, 0x1, 0xfa, 0x7f, 0x80, 0xd, 0xff,
|
||||
0x70, 0x7, 0xff, 0x2, 0xf2, 0xc0, 0x9, 0x99,
|
||||
0x68, 0x11, 0xa8, 0x0, 0x4c, 0xf0, 0x7, 0xff,
|
||||
0xfc, 0x3, 0xff, 0xc6,
|
||||
|
||||
/* U+67 "g" */
|
||||
0x0, 0xcb, 0x7b, 0xfd, 0x8e, 0x21, 0x9f, 0x80,
|
||||
0x3, 0xda, 0x42, 0x1, 0x38, 0xf4, 0x0, 0xc7,
|
||||
0x84, 0x4, 0xf3, 0x27, 0x11, 0x59, 0x0, 0x5c,
|
||||
0x0, 0x7d, 0x86, 0x64, 0x73, 0x80, 0x80, 0x14,
|
||||
0x81, 0xa0, 0x3, 0xd0, 0xc0, 0x17, 0x80, 0x2c,
|
||||
0x3, 0xf5, 0x80, 0x4c, 0x2, 0x40, 0x1f, 0x88,
|
||||
0x40, 0x30, 0x80, 0x7f, 0x84, 0x0, 0xc0, 0x2,
|
||||
0x0, 0xfc, 0x40, 0x17, 0x80, 0x20, 0x3, 0xf4,
|
||||
0x0, 0x4a, 0x40, 0xb2, 0x1, 0xe9, 0x50, 0xd,
|
||||
0xe0, 0x6, 0xe9, 0x66, 0x4f, 0x30, 0x7, 0x16,
|
||||
0x10, 0xb, 0x4c, 0x98, 0x45, 0x60, 0x7, 0x0,
|
||||
0x1e, 0xd2, 0x10, 0x9, 0xc7, 0xa0, 0x0, 0x40,
|
||||
0x32, 0xde, 0xff, 0x63, 0x89, 0x0, 0xc, 0x3,
|
||||
0xff, 0x81, 0x40, 0xc, 0x3, 0xe6, 0x0, 0xf9,
|
||||
0x5c, 0x5, 0x43, 0xc6, 0x7a, 0x9d, 0x99, 0x19,
|
||||
0x40, 0xb, 0x0, 0x71, 0x80, 0xac, 0x4c, 0x9c,
|
||||
0xc0, 0x12, 0xa0, 0x2, 0xcc, 0x3a, 0x8, 0x0,
|
||||
0x52, 0x39, 0x80, 0x0,
|
||||
|
||||
/* U+68 "h" */
|
||||
0x7f, 0xf1, 0x80, 0x7f, 0xff, 0xc0, 0x3f, 0xf8,
|
||||
0x8d, 0x7d, 0xfd, 0x6a, 0x1, 0xe6, 0xd9, 0x41,
|
||||
0x1, 0x4a, 0xb0, 0xe, 0xa2, 0x16, 0x88, 0x28,
|
||||
0x1, 0x24, 0x3, 0x93, 0xa5, 0xdd, 0x58, 0x0,
|
||||
0x62, 0x0, 0x86, 0xc0, 0x38, 0xe0, 0x0, 0x80,
|
||||
0x14, 0x80, 0x7c, 0x80, 0xe, 0x0, 0x8c, 0x3,
|
||||
0xe2, 0x0, 0x8, 0x4, 0xe0, 0x1f, 0xe3, 0x0,
|
||||
0xff, 0xff, 0x80, 0x7f, 0xf4, 0x80,
|
||||
|
||||
/* U+69 "i" */
|
||||
0x5e, 0xd3, 0x81, 0x29, 0x60, 0x6, 0xdc, 0xd3,
|
||||
0x83, 0x28, 0x7, 0x3f, 0xf8, 0xc0, 0x3f, 0xfd,
|
||||
0x80,
|
||||
|
||||
/* U+6A "j" */
|
||||
0x0, 0xe3, 0xee, 0x20, 0x7, 0x40, 0x8a, 0x0,
|
||||
0x38, 0x80, 0xa, 0x1, 0xd3, 0x38, 0x3, 0xcc,
|
||||
0xc0, 0xf, 0xfe, 0x1a, 0xff, 0x98, 0x3, 0xff,
|
||||
0xfe, 0x1, 0xff, 0xef, 0x30, 0xe, 0xc0, 0x3,
|
||||
0x5, 0xb2, 0xc3, 0x0, 0x9a, 0xa4, 0xd3, 0x80,
|
||||
0x28, 0x1d, 0x48, 0x5, 0x31, 0x0,
|
||||
|
||||
/* U+6B "k" */
|
||||
0x7f, 0xf1, 0x80, 0x7f, 0xff, 0xc0, 0x3f, 0xf9,
|
||||
0xe9, 0xfe, 0xe2, 0x0, 0xff, 0x2d, 0x80, 0xe1,
|
||||
0x0, 0x7f, 0x35, 0x0, 0xe1, 0x0, 0x7f, 0x3c,
|
||||
0x80, 0xe1, 0x0, 0x7f, 0x44, 0x0, 0x70, 0x80,
|
||||
0x3f, 0xa5, 0xc0, 0x70, 0x80, 0x3f, 0x3d, 0x30,
|
||||
0x1, 0xc8, 0x3, 0xfa, 0x94, 0x2, 0x65, 0x0,
|
||||
0xfe, 0x10, 0x3a, 0x0, 0x51, 0x0, 0x7f, 0x26,
|
||||
0x2b, 0x80, 0x3c, 0x3, 0xf2, 0xd8, 0x2, 0x10,
|
||||
0xa, 0x80, 0x3e, 0x90, 0xd, 0x64, 0xa, 0xe0,
|
||||
0x1f, 0xfc, 0xf, 0x0, 0x42, 0x0, 0x7f, 0xc5,
|
||||
0x40, 0xa, 0x10, 0xf, 0xf9, 0x5c, 0x7, 0x40,
|
||||
|
||||
/* U+6C "l" */
|
||||
0x7f, 0xf1, 0x80, 0x7f, 0xff, 0xc0, 0x38,
|
||||
|
||||
/* U+6D "m" */
|
||||
0x7f, 0xf1, 0xc, 0x67, 0x7e, 0xc9, 0x80, 0x45,
|
||||
0x1b, 0xfe, 0xd9, 0x20, 0xf, 0x3f, 0xb9, 0x88,
|
||||
0x13, 0x63, 0x83, 0xeb, 0x90, 0x0, 0x9b, 0x58,
|
||||
0x3, 0xa8, 0x4e, 0x6e, 0x94, 0x1, 0x15, 0x0,
|
||||
0x73, 0x74, 0xa0, 0x9, 0x30, 0xe, 0x7c, 0x64,
|
||||
0x5a, 0x90, 0x2, 0x83, 0xe3, 0x22, 0xd4, 0x0,
|
||||
0x20, 0x3, 0x14, 0x0, 0x73, 0x10, 0x0, 0xe0,
|
||||
0x3, 0x9c, 0x81, 0x0, 0x35, 0x0, 0x7c, 0x80,
|
||||
0xb, 0x0, 0xf9, 0x0, 0x2, 0x1, 0x18, 0x7,
|
||||
0xdc, 0x0, 0x30, 0xf, 0x84, 0x0, 0x60, 0x13,
|
||||
0x80, 0x7f, 0x9c, 0x3, 0xfc, 0x20, 0x1f, 0xff,
|
||||
0xf0, 0xf, 0xff, 0xf8, 0x7, 0xff, 0x50,
|
||||
|
||||
/* U+6E "n" */
|
||||
0x7f, 0xf1, 0x3, 0xe7, 0x7f, 0x5a, 0x80, 0x79,
|
||||
0xfa, 0xc, 0x40, 0x52, 0xac, 0x3, 0xa8, 0x4a,
|
||||
0x2a, 0x8e, 0x20, 0x92, 0x1, 0xcd, 0xae, 0xaa,
|
||||
0x8c, 0x10, 0x62, 0x0, 0x8a, 0x40, 0x38, 0xa4,
|
||||
0x0, 0x80, 0x15, 0x0, 0x7c, 0xa0, 0xe, 0x0,
|
||||
0x8c, 0x3, 0xe3, 0x0, 0x8, 0x4, 0xe0, 0x1f,
|
||||
0xe3, 0x0, 0xff, 0xff, 0x80, 0x7f, 0xf4, 0x80,
|
||||
|
||||
/* U+6F "o" */
|
||||
0x0, 0xc9, 0x5b, 0xfd, 0xb0, 0x40, 0x1e, 0x1b,
|
||||
0xb2, 0x90, 0x9, 0x3e, 0xc0, 0x6, 0x1f, 0x40,
|
||||
0x16, 0x99, 0x28, 0x1, 0xec, 0x2, 0xa1, 0x5,
|
||||
0xe9, 0x66, 0x57, 0x18, 0x23, 0x81, 0xa0, 0x1d,
|
||||
0x0, 0x70, 0xe8, 0x84, 0x85, 0x80, 0x20, 0x3,
|
||||
0xe1, 0x90, 0x15, 0x30, 0x2, 0x0, 0x7e, 0x40,
|
||||
0x1, 0x38, 0x8, 0x7, 0xf0, 0x80, 0x39, 0xc0,
|
||||
0x40, 0x3f, 0x84, 0x1, 0xc6, 0x0, 0x40, 0xf,
|
||||
0xd6, 0x0, 0x2b, 0x0, 0x40, 0x7, 0xc2, 0xc0,
|
||||
0x2a, 0x68, 0x7, 0x40, 0x1c, 0x3a, 0x21, 0x20,
|
||||
0xa, 0x20, 0x5e, 0x96, 0x65, 0x71, 0x82, 0x38,
|
||||
0x0, 0x71, 0x0, 0x5a, 0x64, 0xa0, 0x7, 0xb0,
|
||||
0xc, 0x37, 0x65, 0x20, 0x12, 0x6d, 0x80, 0x8,
|
||||
|
||||
/* U+70 "p" */
|
||||
0x7f, 0xf1, 0x3, 0x5f, 0x7e, 0xda, 0x80, 0x7c,
|
||||
0xdb, 0x28, 0x20, 0x49, 0x5a, 0x40, 0x1d, 0x44,
|
||||
0x2f, 0x76, 0x93, 0x2, 0xd2, 0x0, 0xc2, 0x7f,
|
||||
0x8, 0x86, 0xc8, 0x0, 0x78, 0x6, 0x1d, 0x10,
|
||||
0xe, 0x76, 0x2, 0x50, 0x9, 0x84, 0x3, 0xeb,
|
||||
0x0, 0x78, 0x5, 0x80, 0x1f, 0x88, 0x41, 0x80,
|
||||
0x27, 0x0, 0xfe, 0x30, 0x20, 0x9, 0x80, 0x3f,
|
||||
0x8c, 0x8, 0x2, 0xc0, 0xf, 0xc6, 0x20, 0xc0,
|
||||
0x13, 0x10, 0x7, 0xd0, 0x0, 0xf0, 0xd, 0xe4,
|
||||
0x1, 0xd2, 0x80, 0x4a, 0x1, 0x9, 0x6d, 0x3b,
|
||||
0x47, 0x30, 0x3, 0xc0, 0x35, 0x18, 0x2c, 0x4b,
|
||||
0x88, 0x16, 0x90, 0x6, 0x7c, 0xa4, 0x10, 0x14,
|
||||
0xad, 0x20, 0xf, 0x96, 0xfb, 0xfa, 0xd4, 0x3,
|
||||
0xff, 0xf0,
|
||||
|
||||
/* U+71 "q" */
|
||||
0x0, 0xcb, 0x5b, 0xfd, 0x8c, 0x0, 0xff, 0x40,
|
||||
0x0, 0xb2, 0x94, 0x80, 0x4e, 0x74, 0x80, 0x30,
|
||||
0xe1, 0x80, 0xb4, 0xc9, 0x40, 0xb0, 0x3, 0x68,
|
||||
0x82, 0xf4, 0xb3, 0x2b, 0x4c, 0x40, 0x23, 0x30,
|
||||
0x1d, 0x0, 0x71, 0x68, 0x80, 0x54, 0x0, 0x80,
|
||||
0xf, 0x86, 0x40, 0x22, 0x0, 0x20, 0x7, 0xe4,
|
||||
0x0, 0x9c, 0x4, 0x3, 0xf8, 0x40, 0x27, 0x1,
|
||||
0x0, 0xfe, 0x10, 0x8, 0x80, 0x8, 0x1, 0xfa,
|
||||
0xc0, 0x2a, 0x0, 0x40, 0x7, 0xc2, 0xc0, 0x11,
|
||||
0x98, 0xe, 0x80, 0x38, 0x74, 0x40, 0x36, 0x88,
|
||||
0x2f, 0x4b, 0x32, 0xb8, 0xc4, 0x3, 0xe, 0x18,
|
||||
0xb, 0x4c, 0x94, 0xf, 0x40, 0x38, 0xb2, 0x90,
|
||||
0x80, 0x4e, 0x70, 0x40, 0x3e, 0x5b, 0xdf, 0xec,
|
||||
0x60, 0xf, 0xff, 0xc8,
|
||||
|
||||
/* U+72 "r" */
|
||||
0x7f, 0xf1, 0x3, 0x67, 0x40, 0x4, 0x3b, 0x26,
|
||||
0x20, 0x1b, 0x88, 0xd, 0xb4, 0x2, 0x22, 0x6e,
|
||||
0x4a, 0x80, 0x6c, 0x20, 0xf, 0x38, 0x80, 0x7d,
|
||||
0xa0, 0x1f, 0x98, 0x3, 0xff, 0xf0,
|
||||
|
||||
/* U+73 "s" */
|
||||
0x0, 0x8a, 0x77, 0xfd, 0xd9, 0x6, 0x1, 0xa3,
|
||||
0x58, 0x80, 0x2, 0x6f, 0x90, 0x0, 0x57, 0x1,
|
||||
0x79, 0xa9, 0x61, 0xa, 0x0, 0x70, 0x3, 0x21,
|
||||
0x95, 0xa7, 0xb0, 0x80, 0xc, 0x4, 0x40, 0xf,
|
||||
0x18, 0x4, 0xc0, 0x4e, 0x1, 0xfe, 0x80, 0x4,
|
||||
0x75, 0xc2, 0x88, 0x7, 0x1d, 0x90, 0xa, 0x3d,
|
||||
0x76, 0xa8, 0x6, 0x4d, 0xc9, 0x63, 0x0, 0x15,
|
||||
0x38, 0x7, 0x1b, 0x4e, 0x7d, 0x8, 0x40, 0x7,
|
||||
0xf9, 0x58, 0x0, 0x40, 0xae, 0x1, 0xf1, 0x80,
|
||||
0xc, 0x2e, 0x3e, 0x9d, 0x54, 0xf8, 0x80, 0x82,
|
||||
0x22, 0x0, 0x2c, 0x55, 0x20, 0xc0, 0xe8, 0x7,
|
||||
0x30, 0xe6, 0x20, 0x2, 0x5a, 0xc1, 0x0,
|
||||
|
||||
/* U+74 "t" */
|
||||
0x0, 0xa2, 0xa, 0x1, 0xf0, 0xbb, 0xbc, 0x3,
|
||||
0xff, 0x9f, 0x3f, 0xc0, 0x5, 0xff, 0xb8, 0x3,
|
||||
0xff, 0x81, 0x79, 0x60, 0x4, 0xcc, 0xb4, 0x8,
|
||||
0xd4, 0x0, 0x26, 0x78, 0x3, 0xff, 0xf2, 0x20,
|
||||
0x1f, 0xfc, 0x14, 0x0, 0xfc, 0xa0, 0x36, 0xaa,
|
||||
0xa4, 0x0, 0xa0, 0x41, 0x2a, 0x8b, 0xe0, 0x11,
|
||||
0x7b, 0x8, 0xa, 0xc0,
|
||||
|
||||
/* U+75 "u" */
|
||||
0x9f, 0xf0, 0x80, 0x7c, 0xbf, 0xe6, 0x0, 0xff,
|
||||
0xff, 0x80, 0x7f, 0xf8, 0x44, 0x0, 0x40, 0x1f,
|
||||
0x68, 0x5, 0xa0, 0x4, 0x0, 0xf9, 0x80, 0x24,
|
||||
0x0, 0x49, 0x0, 0x75, 0x8, 0x4, 0x2e, 0x3,
|
||||
0x90, 0x88, 0x6d, 0x50, 0xe, 0x85, 0x1, 0x7b,
|
||||
0xb4, 0x90, 0xd0, 0x7, 0x55, 0xa8, 0x80, 0x9c,
|
||||
0x73, 0x80, 0x40,
|
||||
|
||||
/* U+76 "v" */
|
||||
0xd, 0xfe, 0x0, 0xfe, 0x2f, 0xf3, 0x85, 0x80,
|
||||
0xb0, 0x7, 0xeb, 0x0, 0x30, 0x30, 0x85, 0x0,
|
||||
0x7c, 0x2c, 0xc, 0x20, 0x6, 0x3, 0x30, 0x7,
|
||||
0x98, 0x1, 0x60, 0x15, 0x0, 0x24, 0x3, 0xd2,
|
||||
0x8, 0x40, 0x11, 0x28, 0x28, 0x80, 0x65, 0x10,
|
||||
0xf0, 0xe, 0x90, 0x4, 0x80, 0x69, 0x2, 0x40,
|
||||
0xe, 0x32, 0x6, 0x0, 0x8c, 0xc1, 0x60, 0x1f,
|
||||
0x58, 0xa, 0x80, 0x24, 0x0, 0xc0, 0x1f, 0x30,
|
||||
0x84, 0x80, 0xa8, 0x30, 0x7, 0xf3, 0x1, 0x99,
|
||||
0x80, 0x16, 0x1, 0xfd, 0x20, 0x9, 0x90, 0x21,
|
||||
0x0, 0x7f, 0xa, 0x82, 0x88, 0x78, 0x7, 0xfd,
|
||||
0x20, 0x11, 0x20, 0x7, 0xfc, 0x66, 0x0, 0x58,
|
||||
0x7, 0x80,
|
||||
|
||||
/* U+77 "w" */
|
||||
0xaf, 0xe0, 0xf, 0xd5, 0xfc, 0x1, 0xfa, 0x7f,
|
||||
0x78, 0x5, 0x0, 0x3c, 0x2a, 0x2, 0xa0, 0x1f,
|
||||
0x38, 0x52, 0x8, 0x68, 0x7, 0x9c, 0x2, 0xe0,
|
||||
0xf, 0x28, 0x83, 0x3, 0x3, 0x0, 0x7a, 0x80,
|
||||
0x24, 0x10, 0xe, 0xe0, 0x41, 0xa, 0x0, 0x28,
|
||||
0x6, 0x23, 0xa, 0x0, 0x38, 0x6, 0x14, 0xe,
|
||||
0x0, 0x11, 0x87, 0x0, 0x6a, 0x2, 0x54, 0xa,
|
||||
0x0, 0xce, 0x2, 0xa0, 0x15, 0x82, 0x8, 0x4,
|
||||
0xc1, 0x41, 0xc0, 0x64, 0x1, 0x50, 0x38, 0x6,
|
||||
0x60, 0x3, 0x80, 0x10, 0x41, 0x81, 0x44, 0x28,
|
||||
0x0, 0x46, 0x14, 0x1, 0x85, 0x2, 0x80, 0x1c,
|
||||
0x8, 0x20, 0x7, 0x6, 0x0, 0x50, 0x11, 0x80,
|
||||
0x77, 0x1, 0x90, 0xa8, 0x70, 0x5, 0x40, 0x28,
|
||||
0xc, 0x14, 0x1, 0xe5, 0x10, 0xa7, 0x0, 0x28,
|
||||
0x4, 0x66, 0xd, 0x41, 0x6, 0x0, 0xf9, 0xc1,
|
||||
0x68, 0x18, 0x3, 0xa8, 0x1b, 0x81, 0x4, 0x3,
|
||||
0xea, 0x2, 0x30, 0xa0, 0xe, 0x70, 0x2, 0x86,
|
||||
0x80, 0x7e, 0x32, 0x0, 0x11, 0x80, 0x70, 0xa8,
|
||||
0x4, 0xc0, 0x1f, 0xd4, 0x0, 0xa0, 0xf, 0xb8,
|
||||
0x0, 0xa0, 0x1c,
|
||||
|
||||
/* U+78 "x" */
|
||||
0x1e, 0xfe, 0x10, 0xf, 0x4f, 0xf9, 0x40, 0x74,
|
||||
0x7, 0x40, 0x39, 0x58, 0x19, 0x40, 0x7, 0x20,
|
||||
0x70, 0x1, 0x15, 0x81, 0xc8, 0x6, 0x65, 0x7,
|
||||
0x50, 0x7, 0x8, 0x70, 0x7, 0xa8, 0x82, 0xca,
|
||||
0x4c, 0x28, 0x80, 0x3e, 0xf0, 0x1c, 0x60, 0x75,
|
||||
0x0, 0xfc, 0x52, 0x2, 0x7, 0x0, 0x1f, 0xe6,
|
||||
0x10, 0x4, 0x80, 0x7f, 0xd4, 0x20, 0xb, 0x20,
|
||||
0xf, 0xe6, 0x50, 0x50, 0x1e, 0x0, 0xfc, 0x72,
|
||||
0x7, 0x54, 0x3, 0x90, 0xf, 0xf, 0x0, 0xe8,
|
||||
0x2b, 0x3, 0x28, 0x7, 0x51, 0x5, 0x8, 0x2,
|
||||
0x48, 0x28, 0x80, 0x27, 0x40, 0x74, 0x0, 0xde,
|
||||
0x0, 0xf0, 0x1, 0xc0, 0x1c, 0x0, 0x71, 0x50,
|
||||
0x15, 0x0,
|
||||
|
||||
/* U+79 "y" */
|
||||
0xd, 0xfe, 0x0, 0xfe, 0x2f, 0xf3, 0x85, 0x80,
|
||||
0xb0, 0x7, 0xeb, 0x0, 0x38, 0x30, 0x85, 0x80,
|
||||
0x7c, 0x2c, 0xe, 0x1, 0x48, 0x12, 0x80, 0x7a,
|
||||
0x40, 0x12, 0x1, 0x30, 0x2, 0x40, 0x3c, 0xc0,
|
||||
0xa2, 0x1, 0xb, 0x1, 0x98, 0x3, 0x30, 0x84,
|
||||
0x80, 0x75, 0x80, 0x24, 0x3, 0x58, 0x19, 0x80,
|
||||
0x38, 0x94, 0x14, 0x40, 0x8, 0x41, 0x0, 0x1f,
|
||||
0x48, 0x2, 0x40, 0x1e, 0x4, 0x80, 0x1f, 0x19,
|
||||
0x81, 0xc0, 0x90, 0x2c, 0x3, 0xfa, 0x0, 0xf,
|
||||
0x60, 0x2c, 0x1, 0xfc, 0x84, 0x12, 0xc1, 0x20,
|
||||
0x1f, 0xf5, 0x80, 0x80, 0x18, 0x3, 0xfe, 0x61,
|
||||
0x0, 0x30, 0x80, 0x7f, 0xf0, 0x1c, 0x1, 0x60,
|
||||
0x1f, 0xfc, 0x1, 0x60, 0x42, 0x0, 0xf8, 0x40,
|
||||
0x34, 0x0, 0x20, 0x3, 0xf7, 0xdb, 0x2d, 0x30,
|
||||
0x29, 0x80, 0x7c, 0xc2, 0x93, 0x4a, 0x5, 0x60,
|
||||
0x1f, 0x9a, 0x4c, 0x0, 0x51, 0xa2, 0x1, 0xf8,
|
||||
|
||||
/* U+7A "z" */
|
||||
0xbf, 0xff, 0xf9, 0x40, 0x3f, 0xf8, 0x3, 0x39,
|
||||
0x9f, 0x38, 0x1, 0x10, 0x46, 0x7e, 0x17, 0x2,
|
||||
0xa0, 0xf, 0x87, 0xc0, 0x1c, 0x20, 0x1f, 0x51,
|
||||
0x5, 0x18, 0x7, 0xd0, 0x80, 0xea, 0x1, 0xf2,
|
||||
0x38, 0x24, 0x0, 0x7c, 0x56, 0x3, 0x40, 0x1f,
|
||||
0xbc, 0x1, 0xa2, 0x1, 0xf5, 0x10, 0x49, 0x80,
|
||||
0x7c, 0xea, 0xc, 0xc0, 0xf, 0x92, 0x0, 0x68,
|
||||
0xcf, 0xe1, 0x90, 0x0, 0xe6, 0x7e, 0x93, 0x0,
|
||||
0xff, 0xe0, 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 = 121, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 0, .adv_w = 268, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 93, .adv_w = 306, .box_w = 16, .box_h = 21, .ofs_x = 2, .ofs_y = 0},
|
||||
{.bitmap_index = 197, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 292, .adv_w = 306, .box_w = 16, .box_h = 21, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 399, .adv_w = 274, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 493, .adv_w = 158, .box_w = 11, .box_h = 21, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 545, .adv_w = 309, .box_w = 16, .box_h = 20, .ofs_x = 1, .ofs_y = -5},
|
||||
{.bitmap_index = 685, .adv_w = 305, .box_w = 15, .box_h = 21, .ofs_x = 2, .ofs_y = 0},
|
||||
{.bitmap_index = 747, .adv_w = 125, .box_w = 4, .box_h = 21, .ofs_x = 2, .ofs_y = 0},
|
||||
{.bitmap_index = 764, .adv_w = 127, .box_w = 9, .box_h = 26, .ofs_x = -3, .ofs_y = -5},
|
||||
{.bitmap_index = 810, .adv_w = 276, .box_w = 16, .box_h = 21, .ofs_x = 2, .ofs_y = 0},
|
||||
{.bitmap_index = 898, .adv_w = 125, .box_w = 4, .box_h = 21, .ofs_x = 2, .ofs_y = 0},
|
||||
{.bitmap_index = 905, .adv_w = 474, .box_w = 26, .box_h = 15, .ofs_x = 2, .ofs_y = 0},
|
||||
{.bitmap_index = 1000, .adv_w = 305, .box_w = 15, .box_h = 15, .ofs_x = 2, .ofs_y = 0},
|
||||
{.bitmap_index = 1056, .adv_w = 284, .box_w = 16, .box_h = 15, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 1160, .adv_w = 306, .box_w = 16, .box_h = 20, .ofs_x = 2, .ofs_y = -5},
|
||||
{.bitmap_index = 1266, .adv_w = 306, .box_w = 16, .box_h = 20, .ofs_x = 1, .ofs_y = -5},
|
||||
{.bitmap_index = 1374, .adv_w = 184, .box_w = 9, .box_h = 15, .ofs_x = 2, .ofs_y = 0},
|
||||
{.bitmap_index = 1404, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 1499, .adv_w = 185, .box_w = 11, .box_h = 19, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 1551, .adv_w = 303, .box_w = 15, .box_h = 15, .ofs_x = 2, .ofs_y = 0},
|
||||
{.bitmap_index = 1602, .adv_w = 250, .box_w = 17, .box_h = 15, .ofs_x = -1, .ofs_y = 0},
|
||||
{.bitmap_index = 1700, .adv_w = 403, .box_w = 25, .box_h = 15, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 1855, .adv_w = 247, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 1953, .adv_w = 250, .box_w = 17, .box_h = 20, .ofs_x = -1, .ofs_y = -5},
|
||||
{.bitmap_index = 2081, .adv_w = 233, .box_w = 13, .box_h = 15, .ofs_x = 1, .ofs_y = 0}
|
||||
};
|
||||
|
||||
/*---------------------
|
||||
* CHARACTER MAPPING
|
||||
*--------------------*/
|
||||
|
||||
|
||||
|
||||
/*Collect the unicode lists and glyph_id offsets*/
|
||||
static const lv_font_fmt_txt_cmap_t cmaps[] =
|
||||
{
|
||||
{
|
||||
.range_start = 32, .range_length = 1, .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 = 97, .range_length = 26, .glyph_id_start = 2,
|
||||
.unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
|
||||
}
|
||||
};
|
||||
|
||||
/*-----------------
|
||||
* KERNING
|
||||
*----------------*/
|
||||
|
||||
|
||||
/*Map glyph_ids to kern left classes*/
|
||||
static const uint8_t kern_left_class_mapping[] =
|
||||
{
|
||||
0, 0, 1, 2, 3, 4, 5, 6,
|
||||
0, 1, 0, 0, 7, 4, 1, 1,
|
||||
2, 2, 8, 9, 10, 11, 0, 12,
|
||||
12, 13, 12, 14
|
||||
};
|
||||
|
||||
/*Map glyph_ids to kern right classes*/
|
||||
static const uint8_t kern_right_class_mapping[] =
|
||||
{
|
||||
0, 0, 1, 2, 3, 3, 3, 0,
|
||||
3, 2, 4, 5, 2, 2, 4, 4,
|
||||
3, 4, 3, 4, 6, 7, 8, 9,
|
||||
9, 10, 9, 11
|
||||
};
|
||||
|
||||
/*Kern values between classes*/
|
||||
static const int8_t kern_class_values[] =
|
||||
{
|
||||
0, 0, 1, 0, 0, 0, 0, 0,
|
||||
-4, 0, 0, -2, 0, 0, 0, 0,
|
||||
0, 0, 0, -7, -8, -4, 0, -3,
|
||||
-4, 0, 0, 0, 3, 0, -3, -8,
|
||||
-3, 0, 0, 0, 0, 0, 0, 6,
|
||||
0, 0, 0, 0, -7, 0, 0, 0,
|
||||
0, 0, 0, 0, -4, -7, -2, -4,
|
||||
0, -4, 36, 19, 0, 0, 0, 4,
|
||||
0, 0, -4, 0, -10, -3, 0, -8,
|
||||
0, -4, -13, -9, -5, 0, 0, 0,
|
||||
0, 22, 0, 0, 0, 0, 0, 0,
|
||||
-4, -3, -5, -3, 0, -1, 7, 0,
|
||||
7, -3, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, -4, -4, 0, 0, 0,
|
||||
-8, 0, 0, 0, -6, 0, -4, 0,
|
||||
0, -8, 0, -7, 0, -7, -3, 7,
|
||||
0, -4, -13, -4, -4, 0, -8, 0,
|
||||
3, -4, 0, -4, -13, 0, -4, 0,
|
||||
0, -4, 0, 0, 0, 1, 0, -4,
|
||||
-4, 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 = 14,
|
||||
.right_class_cnt = 11,
|
||||
};
|
||||
|
||||
/*--------------------
|
||||
* ALL CUSTOM DATA
|
||||
*--------------------*/
|
||||
|
||||
/*Store all the custom data of the font*/
|
||||
static lv_font_fmt_txt_dsc_t font_dsc = {
|
||||
.glyph_bitmap = glyph_bitmap,
|
||||
.glyph_dsc = glyph_dsc,
|
||||
.cmaps = cmaps,
|
||||
.kern_dsc = &kern_classes,
|
||||
.kern_scale = 16,
|
||||
.cmap_num = 2,
|
||||
.bpp = 4,
|
||||
.kern_classes = 1,
|
||||
.bitmap_format = 1
|
||||
};
|
||||
|
||||
|
||||
/*-----------------
|
||||
* PUBLIC FONT
|
||||
*----------------*/
|
||||
|
||||
/*Initialize a public general font descriptor*/
|
||||
lv_font_t lv_font_benchmark_montserrat_28_compr_az = {
|
||||
.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 = 26, /*The maximum line height required by the font*/
|
||||
.base_line = 5, /*Baseline measured from the bottom of the line*/
|
||||
#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0)
|
||||
.subpx = LV_FONT_SUBPX_NONE,
|
||||
#endif
|
||||
.dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */
|
||||
};
|
||||
|
||||
#endif /*#if LV_FONT_BENCHMARK_MONTSERRAT_28_COMPR_AZ*/
|
||||
|
||||
#endif
|
||||
|
||||
@@ -0,0 +1,840 @@
|
||||
/**
|
||||
* @file lv_demo_benchmark.c
|
||||
*
|
||||
*/
|
||||
|
||||
/*********************
|
||||
* INCLUDES
|
||||
*********************/
|
||||
#include "lv_demo_benchmark.h"
|
||||
|
||||
#if LV_USE_DEMO_BENCHMARK
|
||||
|
||||
#if LV_FONT_MONTSERRAT_14 == 0
|
||||
#error "LV_FONT_MONTSERRAT_14 is required for lv_demo_benchmark. Enable it in lv_conf.h."
|
||||
#endif
|
||||
|
||||
#if LV_FONT_MONTSERRAT_24 == 0
|
||||
#error "LV_FONT_MONTSERRAT_24 is required for lv_demo_benchmark. Enable it in lv_conf.h."
|
||||
#endif
|
||||
|
||||
#if LV_USE_DEMO_WIDGETS == 0
|
||||
#error "LV_USE_DEMO_WIDGETS needs to be enabled"
|
||||
#endif
|
||||
|
||||
#if LV_USE_STDLIB_MALLOC == LV_STDLIB_BUILTIN && LV_MEM_SIZE < 128 * 1024
|
||||
#warning "It's recommended to have at least 128kB RAM for the benchmark"
|
||||
#endif
|
||||
|
||||
#include "../../src/core/lv_global.h"
|
||||
|
||||
#if LV_USE_PERF_MONITOR
|
||||
#include "../../src/display/lv_display_private.h"
|
||||
#endif
|
||||
|
||||
/**********************
|
||||
* TYPEDEFS
|
||||
**********************/
|
||||
|
||||
typedef struct {
|
||||
const char * name;
|
||||
void (*create_cb)(void);
|
||||
uint32_t scene_time;
|
||||
uint32_t cpu_avg_usage;
|
||||
uint32_t fps_avg;
|
||||
uint32_t render_avg_time;
|
||||
uint32_t flush_avg_time;
|
||||
uint32_t measurement_cnt;
|
||||
} scene_dsc_t;
|
||||
|
||||
/**********************
|
||||
* STATIC PROTOTYPES
|
||||
**********************/
|
||||
|
||||
static void load_scene(uint32_t scene);
|
||||
static void next_scene_timer_cb(lv_timer_t * timer);
|
||||
|
||||
#if LV_USE_PERF_MONITOR
|
||||
static void sysmon_perf_observer_cb(lv_observer_t * observer, lv_subject_t * subject);
|
||||
#endif
|
||||
|
||||
static void summary_create(void);
|
||||
|
||||
static void rnd_reset(void);
|
||||
static int32_t rnd_next(int32_t min, int32_t max);
|
||||
static void shake_anim_y_cb(void * var, int32_t v);
|
||||
static void shake_anim(lv_obj_t * obj, int32_t y_max);
|
||||
static void scroll_anim(lv_obj_t * obj, int32_t y_max);
|
||||
static void scroll_anim_y_cb(void * var, int32_t v);
|
||||
static void color_anim_cb(void * var, int32_t v);
|
||||
static void color_anim(lv_obj_t * obj);
|
||||
static void arc_anim(lv_obj_t * obj);
|
||||
|
||||
static lv_obj_t * card_create(void);
|
||||
|
||||
static void empty_screen_cb(void)
|
||||
{
|
||||
color_anim(lv_screen_active());
|
||||
}
|
||||
|
||||
static void moving_wallpaper_cb(void)
|
||||
{
|
||||
lv_obj_set_style_pad_all(lv_screen_active(), 0, 0);
|
||||
LV_IMAGE_DECLARE(img_benchmark_cogwheel_rgb);
|
||||
|
||||
lv_obj_t * img = lv_image_create(lv_screen_active());
|
||||
lv_obj_set_size(img, lv_pct(150), lv_pct(150));
|
||||
lv_image_set_src(img, &img_benchmark_cogwheel_rgb);
|
||||
lv_image_set_inner_align(img, LV_IMAGE_ALIGN_TILE);
|
||||
shake_anim(img, - lv_display_get_vertical_resolution(NULL) / 3);
|
||||
}
|
||||
|
||||
static void single_rectangle_cb(void)
|
||||
{
|
||||
lv_obj_t * obj = lv_obj_create(lv_screen_active());
|
||||
lv_obj_remove_style_all(obj);
|
||||
lv_obj_set_style_bg_opa(obj, LV_OPA_COVER, 0);
|
||||
lv_obj_center(obj);
|
||||
lv_obj_set_size(obj, lv_pct(30), lv_pct(30));
|
||||
|
||||
color_anim(obj);
|
||||
|
||||
}
|
||||
|
||||
static void multiple_rectangles_cb(void)
|
||||
{
|
||||
lv_obj_set_flex_flow(lv_screen_active(), LV_FLEX_FLOW_ROW_WRAP);
|
||||
lv_obj_set_flex_align(lv_screen_active(), LV_FLEX_ALIGN_SPACE_EVENLY, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_SPACE_EVENLY);
|
||||
|
||||
uint32_t i;
|
||||
for(i = 0; i < 9; i++) {
|
||||
lv_obj_t * obj = lv_obj_create(lv_screen_active());
|
||||
lv_obj_remove_style_all(obj);
|
||||
lv_obj_set_style_bg_opa(obj, LV_OPA_COVER, 0);
|
||||
lv_obj_set_size(obj, lv_pct(25), lv_pct(25));
|
||||
|
||||
color_anim(obj);
|
||||
}
|
||||
}
|
||||
|
||||
static void multiple_rgb_images_cb(void)
|
||||
{
|
||||
lv_obj_set_flex_flow(lv_screen_active(), LV_FLEX_FLOW_ROW_WRAP);
|
||||
lv_obj_set_flex_align(lv_screen_active(), LV_FLEX_ALIGN_SPACE_EVENLY, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
|
||||
lv_obj_set_style_pad_row(lv_screen_active(), 20, 0);
|
||||
|
||||
LV_IMAGE_DECLARE(img_benchmark_cogwheel_rgb);
|
||||
int32_t hor_cnt = ((int32_t)lv_display_get_horizontal_resolution(NULL) - 16) / 116;
|
||||
int32_t ver_cnt = ((int32_t)lv_display_get_vertical_resolution(NULL) - 116) / 116;
|
||||
|
||||
if(hor_cnt < 1) hor_cnt = 1;
|
||||
if(ver_cnt < 1) ver_cnt = 1;
|
||||
|
||||
int32_t y;
|
||||
for(y = 0; y < ver_cnt; y++) {
|
||||
int32_t x;
|
||||
for(x = 0; x < hor_cnt; x++) {
|
||||
lv_obj_t * obj = lv_image_create(lv_screen_active());
|
||||
lv_image_set_src(obj, &img_benchmark_cogwheel_rgb);
|
||||
if(x == 0) lv_obj_add_flag(obj, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK);
|
||||
|
||||
shake_anim(obj, 80);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void multiple_argb_images_cb(void)
|
||||
{
|
||||
lv_obj_set_flex_flow(lv_screen_active(), LV_FLEX_FLOW_ROW_WRAP);
|
||||
lv_obj_set_flex_align(lv_screen_active(), LV_FLEX_ALIGN_SPACE_EVENLY, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
|
||||
lv_obj_set_style_pad_row(lv_screen_active(), 20, 0);
|
||||
|
||||
LV_IMAGE_DECLARE(img_benchmark_cogwheel_argb);
|
||||
int32_t hor_cnt = ((int32_t)lv_display_get_horizontal_resolution(NULL) - 16) / 116;
|
||||
int32_t ver_cnt = ((int32_t)lv_display_get_vertical_resolution(NULL) - 116) / 116;
|
||||
|
||||
if(hor_cnt < 1) hor_cnt = 1;
|
||||
if(ver_cnt < 1) ver_cnt = 1;
|
||||
|
||||
int32_t y;
|
||||
for(y = 0; y < ver_cnt; y++) {
|
||||
int32_t x;
|
||||
for(x = 0; x < hor_cnt; x++) {
|
||||
lv_obj_t * obj = lv_image_create(lv_screen_active());
|
||||
lv_image_set_src(obj, &img_benchmark_cogwheel_argb);
|
||||
if(x == 0) lv_obj_add_flag(obj, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK);
|
||||
|
||||
shake_anim(obj, 80);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void rotated_argb_image_cb(void)
|
||||
{
|
||||
lv_obj_set_flex_flow(lv_screen_active(), LV_FLEX_FLOW_ROW_WRAP);
|
||||
lv_obj_set_flex_align(lv_screen_active(), LV_FLEX_ALIGN_SPACE_EVENLY, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
|
||||
lv_obj_set_style_pad_row(lv_screen_active(), 20, 0);
|
||||
|
||||
LV_IMAGE_DECLARE(img_benchmark_cogwheel_argb);
|
||||
int32_t hor_cnt = ((int32_t)lv_display_get_horizontal_resolution(NULL) - 16) / 116;
|
||||
int32_t ver_cnt = ((int32_t)lv_display_get_vertical_resolution(NULL) - 116) / 116;
|
||||
|
||||
if(hor_cnt < 1) hor_cnt = 1;
|
||||
if(ver_cnt < 1) ver_cnt = 1;
|
||||
|
||||
int32_t y;
|
||||
for(y = 0; y < ver_cnt; y++) {
|
||||
int32_t x;
|
||||
for(x = 0; x < hor_cnt; x++) {
|
||||
lv_obj_t * obj = lv_image_create(lv_screen_active());
|
||||
lv_image_set_src(obj, &img_benchmark_cogwheel_argb);
|
||||
if(x == 0) lv_obj_add_flag(obj, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK);
|
||||
|
||||
lv_image_set_rotation(obj, lv_rand(100, 3500));
|
||||
shake_anim(obj, 80);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void multiple_labels_cb(void)
|
||||
{
|
||||
lv_obj_set_flex_flow(lv_screen_active(), LV_FLEX_FLOW_ROW_WRAP);
|
||||
lv_obj_set_flex_align(lv_screen_active(), LV_FLEX_ALIGN_SPACE_EVENLY, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
|
||||
lv_obj_set_style_pad_row(lv_screen_active(), 80, 0);
|
||||
|
||||
lv_point_t s;
|
||||
lv_text_get_size(&s, "Hello LVGL!", lv_obj_get_style_text_font(lv_screen_active(), 0), 0, 0, LV_COORD_MAX,
|
||||
LV_TEXT_FLAG_NONE);
|
||||
|
||||
int32_t cnt = (lv_display_get_horizontal_resolution(NULL) - 16) / (s.x + 30);
|
||||
cnt = cnt * ((lv_display_get_vertical_resolution(NULL) - 200) / (s.y + 50));
|
||||
|
||||
if(cnt < 1) cnt = 1;
|
||||
|
||||
int32_t i;
|
||||
for(i = 0; i < cnt; i++) {
|
||||
lv_obj_t * obj = lv_label_create(lv_screen_active());
|
||||
lv_label_set_text(obj, "Hello LVGL!");
|
||||
color_anim(obj);
|
||||
}
|
||||
}
|
||||
|
||||
static void screen_sized_text_cb(void)
|
||||
{
|
||||
const char * txt =
|
||||
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla nec rhoncus arcu, in consectetur orci. Sed vitae dolor sed nisi ultrices vehicula quis ac dolor. Vivamus hendrerit hendrerit lectus, sed tempus velit suscipit in. Fusce eu tristique arcu. Sed et molestie leo, in lacinia nunc. Quisque semper lorem sed ante feugiat, at molestie risus blandit. Maecenas lobortis urna in diam feugiat porta. Ut facilisis mauris eget nibh posuere aliquet. Proin facilisis egestas magna, id vulputate massa bibendum a. Etiam gravida metus non egestas suscipit. Sed sollicitudin mollis nisi, eu fringilla leo vestibulum posuere. Donec et ex nulla. Phasellus et ornare justo, vel hendrerit justo. Curabitur pulvinar nunc sed tincidunt dignissim. Praesent eleifend lectus velit, id malesuada ante placerat id. Fusce massa erat, egestas vel venenatis eu, tempus nec est.\n\n"
|
||||
"Phasellus iaculis malesuada molestie. Cras ullamcorper justo a dolor dignissim tincidunt. Mauris euismod risus quis lobortis mollis. Ut vitae placerat massa, aliquet various lectus. Nulla ac ornare purus, quis auctor velit. Donec posuere dolor rhoncus efficitur dictum. Integer venenatis aliquet nunc eu convallis. Nunc quis various velit. Suspendisse enim metus, molestie eget mauris sit amet, euismod volutpat turpis. Duis rhoncus commodo gravida. Pellentesque velit mi, dictum id consequat placerat, condimentum ac elit. Duis aliquet leo eu dolor cursus rhoncus. Quisque aliquam sapien ut purus hendrerit laoreet. Ut venenatis venenatis risus, a vestibulum enim lobortis a. Maecenas auctor tortor lorem, quis laoreet nulla aliquet a. Sed ipsum lorem, facilisis in congue a, dictum ut ligula.\n\n"
|
||||
"Aliquam id tellus in enim hendrerit mattis. Sed ipsum arcu, feugiat sed eros quis, vulputate facilisis turpis. Quisque venenatis risus massa. Proin lacinia, nunc non ultrices commodo, ligula dolor lobortis lectus, iaculis pulvinar metus orci eu elit. Donec tincidunt lacinia semper. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Donec vitae odio risus. Donec sodales sed nulla sit amet iaculis. Duis lacinia mauris dictum, fermentum nibh eget, convallis tellus. Sed congue luctus purus non scelerisque. Etiam fermentum lacus mauris, at bibendum nunc aliquam at. Vivamus accumsan vestibulum pharetra. Proin rhoncus nisi purus, vel blandit metus auctor eget. Fusce dictum sed lectus sed aliquam. Praesent lobortis quam sed pretium tincidunt.\n\n"
|
||||
"Integer vehicula vestibulum eros. Donec facilisis magna a est cursus, sed posuere velit faucibus. In et ultrices lorem. Sed et lacus finibus, vulputate odio et, finibus tellus. Aenean finibus nibh vehicula elementum maximus. Maecenas in luctus tortor, vitae ullamcorper lacus. Ut nulla elit, aliquam at vestibulum ut, pellentesque non justo.\n\n"
|
||||
"Fusce dignissim turpis massa, eget semper purus semper at. Ut et augue vitae metus laoreet auctor. Morbi tincidunt, neque vel tincidunt interdum, sapien nibh finibus lorem, eu eleifend diam ipsum et eros. Duis iaculis vulputate lacinia. Phasellus id mauris sed magna gravida suscipit. Sed aliquet tincidunt ante ac posuere. In vestibulum quam ultricies, ultricies arcu eu, aliquam sapien. Phasellus sollicitudin velit facilisis, dignissim nisi sed, pellentesque magna.";
|
||||
|
||||
lv_obj_t * scr = lv_screen_active();
|
||||
|
||||
lv_obj_t * obj = lv_label_create(scr);
|
||||
lv_obj_set_width(obj, lv_pct(100));
|
||||
lv_label_set_text(obj, txt);
|
||||
|
||||
lv_obj_update_layout(obj);
|
||||
|
||||
scroll_anim(scr, lv_obj_get_scroll_bottom(scr));
|
||||
}
|
||||
|
||||
static void multiple_arcs_cb(void)
|
||||
{
|
||||
lv_obj_set_flex_flow(lv_screen_active(), LV_FLEX_FLOW_ROW_WRAP);
|
||||
lv_obj_set_flex_align(lv_screen_active(), LV_FLEX_ALIGN_SPACE_EVENLY, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
|
||||
|
||||
LV_IMAGE_DECLARE(img_benchmark_cogwheel_argb);
|
||||
int32_t hor_cnt = (lv_display_get_horizontal_resolution(NULL) - 16) / lv_dpx(160);
|
||||
int32_t ver_cnt = (lv_display_get_vertical_resolution(NULL) - 16) / lv_dpx(160);
|
||||
|
||||
if(hor_cnt < 1) hor_cnt = 1;
|
||||
if(ver_cnt < 1) ver_cnt = 1;
|
||||
|
||||
int32_t y;
|
||||
for(y = 0; y < ver_cnt; y++) {
|
||||
int32_t x;
|
||||
for(x = 0; x < hor_cnt; x++) {
|
||||
|
||||
lv_obj_t * obj = lv_arc_create(lv_screen_active());
|
||||
if(x == 0) lv_obj_add_flag(obj, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK);
|
||||
lv_obj_set_size(obj, lv_dpx(100), lv_dpx(100));
|
||||
lv_obj_center(obj);
|
||||
|
||||
lv_arc_set_bg_angles(obj, 0, 360);
|
||||
|
||||
lv_obj_set_style_margin_all(obj, lv_dpx(20), 0);
|
||||
lv_obj_set_style_arc_opa(obj, 0, LV_PART_MAIN);
|
||||
lv_obj_set_style_bg_opa(obj, 0, LV_PART_KNOB);
|
||||
lv_obj_set_style_arc_width(obj, 10, LV_PART_INDICATOR);
|
||||
lv_obj_set_style_arc_rounded(obj, false, LV_PART_INDICATOR);
|
||||
lv_obj_set_style_arc_color(obj, lv_color_hex3(lv_rand(0x00f, 0xff0)), LV_PART_INDICATOR);
|
||||
arc_anim(obj);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void containers_cb(void)
|
||||
{
|
||||
|
||||
lv_obj_set_flex_flow(lv_screen_active(), LV_FLEX_FLOW_ROW_WRAP);
|
||||
lv_obj_set_flex_align(lv_screen_active(), LV_FLEX_ALIGN_SPACE_EVENLY, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
|
||||
|
||||
int32_t hor_cnt = ((int32_t)lv_display_get_horizontal_resolution(NULL) - 16) / 300;
|
||||
int32_t ver_cnt = ((int32_t)lv_display_get_vertical_resolution(NULL) - 16) / 150;
|
||||
|
||||
if(hor_cnt < 1) hor_cnt = 1;
|
||||
if(ver_cnt < 1) ver_cnt = 1;
|
||||
|
||||
int32_t y;
|
||||
for(y = 0; y < ver_cnt; y++) {
|
||||
int32_t x;
|
||||
for(x = 0; x < hor_cnt; x++) {
|
||||
lv_obj_t * card = card_create();
|
||||
if(x == 0) lv_obj_add_flag(card, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK);
|
||||
shake_anim(card, 30);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void containers_with_overlay_cb(void)
|
||||
{
|
||||
lv_obj_set_flex_flow(lv_screen_active(), LV_FLEX_FLOW_ROW_WRAP);
|
||||
lv_obj_set_flex_align(lv_screen_active(), LV_FLEX_ALIGN_SPACE_EVENLY, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
|
||||
|
||||
int32_t hor_cnt = ((int32_t)lv_display_get_horizontal_resolution(NULL) - 16) / 300;
|
||||
int32_t ver_cnt = ((int32_t)lv_display_get_vertical_resolution(NULL) - 16) / 150;
|
||||
|
||||
if(hor_cnt < 1) hor_cnt = 1;
|
||||
if(ver_cnt < 1) ver_cnt = 1;
|
||||
|
||||
int32_t y;
|
||||
for(y = 0; y < ver_cnt; y++) {
|
||||
int32_t x;
|
||||
for(x = 0; x < hor_cnt; x++) {
|
||||
lv_obj_t * card = card_create();
|
||||
if(x == 0) lv_obj_add_flag(card, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK);
|
||||
shake_anim(card, 30);
|
||||
}
|
||||
}
|
||||
|
||||
lv_obj_set_style_bg_opa(lv_layer_top(), LV_OPA_50, 0);
|
||||
color_anim(lv_layer_top());
|
||||
}
|
||||
|
||||
static void containers_with_opa_cb(void)
|
||||
{
|
||||
lv_obj_set_flex_flow(lv_screen_active(), LV_FLEX_FLOW_ROW_WRAP);
|
||||
lv_obj_set_flex_align(lv_screen_active(), LV_FLEX_ALIGN_SPACE_EVENLY, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
|
||||
|
||||
int32_t hor_cnt = ((int32_t)lv_display_get_horizontal_resolution(NULL) - 16) / 300;
|
||||
int32_t ver_cnt = ((int32_t)lv_display_get_vertical_resolution(NULL) - 16) / 150;
|
||||
|
||||
if(hor_cnt < 1) hor_cnt = 1;
|
||||
if(ver_cnt < 1) ver_cnt = 1;
|
||||
|
||||
int32_t y;
|
||||
for(y = 0; y < ver_cnt; y++) {
|
||||
int32_t x;
|
||||
for(x = 0; x < hor_cnt; x++) {
|
||||
lv_obj_t * card = card_create();
|
||||
if(x == 0) lv_obj_add_flag(card, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK);
|
||||
lv_obj_set_style_opa(card, LV_OPA_50, 0);
|
||||
shake_anim(card, 30);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void containers_with_opa_layer_cb(void)
|
||||
{
|
||||
lv_obj_set_flex_flow(lv_screen_active(), LV_FLEX_FLOW_ROW_WRAP);
|
||||
lv_obj_set_flex_align(lv_screen_active(), LV_FLEX_ALIGN_SPACE_EVENLY, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
|
||||
|
||||
int32_t hor_cnt = ((int32_t)lv_display_get_horizontal_resolution(NULL) - 16) / 300;
|
||||
int32_t ver_cnt = ((int32_t)lv_display_get_vertical_resolution(NULL) - 16) / 150;
|
||||
|
||||
if(hor_cnt < 1) hor_cnt = 1;
|
||||
if(ver_cnt < 1) ver_cnt = 1;
|
||||
|
||||
int32_t y;
|
||||
for(y = 0; y < ver_cnt; y++) {
|
||||
int32_t x;
|
||||
for(x = 0; x < hor_cnt; x++) {
|
||||
lv_obj_t * card = card_create();
|
||||
lv_obj_set_style_opa_layered(card, LV_OPA_50, 0);
|
||||
if(x == 0) lv_obj_add_flag(card, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK);
|
||||
shake_anim(card, 30);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void containers_with_scrolling_cb(void)
|
||||
{
|
||||
lv_obj_t * scr = lv_screen_active();
|
||||
|
||||
lv_obj_set_flex_flow(scr, LV_FLEX_FLOW_ROW_WRAP);
|
||||
lv_obj_set_flex_align(scr, LV_FLEX_ALIGN_SPACE_EVENLY, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_START);
|
||||
|
||||
uint32_t i;
|
||||
for(i = 0; i < 50; i++) {
|
||||
card_create();
|
||||
}
|
||||
|
||||
lv_obj_update_layout(scr);
|
||||
scroll_anim(scr, lv_obj_get_scroll_bottom(scr));
|
||||
}
|
||||
|
||||
static void widgets_demo_cb(void)
|
||||
{
|
||||
lv_obj_t * scr = lv_screen_active();
|
||||
lv_obj_set_style_pad_hor(scr, 0, 0);
|
||||
lv_obj_set_style_pad_bottom(scr, 0, 0);
|
||||
lv_demo_widgets();
|
||||
lv_demo_widgets_start_slideshow();
|
||||
|
||||
}
|
||||
|
||||
/**********************
|
||||
* STATIC VARIABLES
|
||||
**********************/
|
||||
|
||||
static scene_dsc_t scenes[] = {
|
||||
{.name = "Empty screen", .scene_time = 3000, .create_cb = empty_screen_cb},
|
||||
{.name = "Moving wallpaper", .scene_time = 3000, .create_cb = moving_wallpaper_cb},
|
||||
{.name = "Single rectangle", .scene_time = 3000, .create_cb = single_rectangle_cb},
|
||||
{.name = "Multiple rectangles", .scene_time = 3000, .create_cb = multiple_rectangles_cb},
|
||||
{.name = "Multiple RGB images", .scene_time = 3000, .create_cb = multiple_rgb_images_cb},
|
||||
{.name = "Multiple ARGB images", .scene_time = 3000, .create_cb = multiple_argb_images_cb},
|
||||
{.name = "Rotated ARGB images", .scene_time = 3000, .create_cb = rotated_argb_image_cb},
|
||||
{.name = "Multiple labels", .scene_time = 3000, .create_cb = multiple_labels_cb},
|
||||
{.name = "Screen sized text", .scene_time = 5000, .create_cb = screen_sized_text_cb},
|
||||
{.name = "Multiple arcs", .scene_time = 3000, .create_cb = multiple_arcs_cb},
|
||||
|
||||
{.name = "Containers", .scene_time = 3000, .create_cb = containers_cb},
|
||||
{.name = "Containers with overlay", .scene_time = 3000, .create_cb = containers_with_overlay_cb},
|
||||
{.name = "Containers with opa", .scene_time = 3000, .create_cb = containers_with_opa_cb},
|
||||
{.name = "Containers with opa_layer", .scene_time = 3000, .create_cb = containers_with_opa_layer_cb},
|
||||
{.name = "Containers with scrolling", .scene_time = 5000, .create_cb = containers_with_scrolling_cb},
|
||||
|
||||
{.name = "Widgets demo", .scene_time = 20000, .create_cb = widgets_demo_cb},
|
||||
|
||||
{.name = "", .create_cb = NULL}
|
||||
};
|
||||
|
||||
static uint32_t scene_act;
|
||||
static uint32_t rnd_act;
|
||||
|
||||
/**********************
|
||||
* MACROS
|
||||
**********************/
|
||||
|
||||
/**********************
|
||||
* GLOBAL FUNCTIONS
|
||||
**********************/
|
||||
|
||||
void lv_demo_benchmark(void)
|
||||
{
|
||||
scene_act = 0;
|
||||
|
||||
lv_obj_t * scr = lv_screen_active();
|
||||
lv_obj_remove_style_all(scr);
|
||||
lv_obj_set_style_bg_opa(scr, LV_OPA_COVER, 0);
|
||||
lv_obj_set_style_text_color(scr, lv_color_black(), 0);
|
||||
lv_obj_set_style_bg_color(scr, lv_palette_lighten(LV_PALETTE_GREY, 4), 0);
|
||||
lv_obj_set_style_pad_all(lv_screen_active(), 8, 0);
|
||||
lv_obj_set_style_pad_top(lv_screen_active(), 48, 0);
|
||||
lv_obj_set_style_pad_gap(lv_screen_active(), 8, 0);
|
||||
|
||||
lv_obj_t * title = lv_label_create(lv_layer_top());
|
||||
lv_obj_set_style_bg_opa(title, LV_OPA_COVER, 0);
|
||||
lv_obj_set_style_bg_color(title, lv_color_white(), 0);
|
||||
lv_obj_set_style_text_color(title, lv_color_black(), 0);
|
||||
lv_obj_set_width(title, lv_pct(100));
|
||||
|
||||
load_scene(scene_act);
|
||||
|
||||
lv_timer_create(next_scene_timer_cb, scenes[0].scene_time, NULL);
|
||||
|
||||
#if LV_USE_PERF_MONITOR
|
||||
lv_display_t * disp = lv_display_get_default();
|
||||
lv_subject_add_observer_obj(&disp->perf_sysmon_backend.subject, sysmon_perf_observer_cb, title, NULL);
|
||||
#if LV_USE_PERF_MONITOR_LOG_MODE
|
||||
lv_obj_add_flag(title, LV_OBJ_FLAG_HIDDEN);
|
||||
#endif
|
||||
#else
|
||||
lv_label_set_text(title, "LV_USE_PERF_MONITOR is not enabled");
|
||||
#endif
|
||||
}
|
||||
|
||||
/**********************
|
||||
* STATIC FUNCTIONS
|
||||
**********************/
|
||||
|
||||
static void load_scene(uint32_t scene)
|
||||
{
|
||||
lv_obj_t * scr = lv_screen_active();
|
||||
lv_obj_clean(scr);
|
||||
lv_obj_set_style_bg_color(scr, lv_palette_lighten(LV_PALETTE_GREY, 4), 0);
|
||||
lv_obj_set_style_text_color(scr, lv_color_black(), 0);
|
||||
lv_obj_set_style_pad_all(lv_screen_active(), 8, 0);
|
||||
lv_obj_set_style_pad_top(lv_screen_active(), 48, 0);
|
||||
lv_obj_set_style_pad_gap(lv_screen_active(), 8, 0);
|
||||
lv_obj_set_layout(scr, LV_LAYOUT_NONE);
|
||||
lv_obj_set_flex_align(lv_screen_active(), LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
|
||||
|
||||
lv_anim_delete(scr, scroll_anim_y_cb);
|
||||
lv_anim_delete(scr, shake_anim_y_cb);
|
||||
lv_anim_delete(scr, color_anim_cb);
|
||||
|
||||
lv_anim_delete(lv_layer_top(), color_anim_cb);
|
||||
lv_obj_set_style_bg_opa(lv_layer_top(), LV_OPA_TRANSP, 0);
|
||||
|
||||
rnd_reset();
|
||||
if(scenes[scene].create_cb) scenes[scene].create_cb();
|
||||
}
|
||||
|
||||
static void next_scene_timer_cb(lv_timer_t * timer)
|
||||
{
|
||||
LV_UNUSED(timer);
|
||||
|
||||
scene_act++;
|
||||
|
||||
load_scene(scene_act);
|
||||
if(scenes[scene_act].scene_time == 0) {
|
||||
lv_timer_delete(timer);
|
||||
summary_create();
|
||||
}
|
||||
else {
|
||||
lv_timer_set_period(timer, scenes[scene_act].scene_time);
|
||||
}
|
||||
}
|
||||
|
||||
#if LV_USE_PERF_MONITOR
|
||||
static void sysmon_perf_observer_cb(lv_observer_t * observer, lv_subject_t * subject)
|
||||
{
|
||||
const lv_sysmon_perf_info_t * info = lv_subject_get_pointer(subject);
|
||||
char scene_name[64];
|
||||
|
||||
if(scenes[scene_act].name[0] != '\0') {
|
||||
lv_snprintf(scene_name, sizeof(scene_name), "%s: ", scenes[scene_act].name);
|
||||
}
|
||||
else {
|
||||
scene_name[0] = '\0';
|
||||
}
|
||||
|
||||
#if !LV_USE_PERF_MONITOR_LOG_MODE
|
||||
lv_obj_t * label = lv_observer_get_target(observer);
|
||||
lv_label_set_text_fmt(label,
|
||||
"%s"
|
||||
"%" LV_PRIu32" FPS, %" LV_PRIu32 "%% CPU\n"
|
||||
"refr. %" LV_PRIu32" ms = %" LV_PRIu32 "ms render + %" LV_PRIu32" ms flush",
|
||||
scene_name,
|
||||
info->calculated.fps, info->calculated.cpu,
|
||||
info->calculated.render_avg_time + info->calculated.flush_avg_time,
|
||||
info->calculated.render_avg_time, info->calculated.flush_avg_time);
|
||||
#else
|
||||
LV_UNUSED(observer);
|
||||
#endif
|
||||
|
||||
/*Ignore the first call as it contains data from the previous scene*/
|
||||
if(scenes[scene_act].measurement_cnt != 0) {
|
||||
scenes[scene_act].cpu_avg_usage += info->calculated.cpu;
|
||||
scenes[scene_act].fps_avg += info->calculated.fps;
|
||||
scenes[scene_act].render_avg_time += info->calculated.render_avg_time;
|
||||
scenes[scene_act].flush_avg_time += info->calculated.flush_avg_time;
|
||||
}
|
||||
scenes[scene_act].measurement_cnt++;
|
||||
|
||||
}
|
||||
#endif
|
||||
|
||||
static void table_draw_task_event_cb(lv_event_t * e)
|
||||
{
|
||||
lv_draw_task_t * t = lv_event_get_draw_task(e);
|
||||
lv_draw_dsc_base_t * draw_dsc_base = t->draw_dsc;
|
||||
if(draw_dsc_base->part != LV_PART_ITEMS) return;
|
||||
|
||||
int32_t row = draw_dsc_base->id1;
|
||||
if(row == 0) {
|
||||
lv_draw_fill_dsc_t * draw_dsc_fill = lv_draw_task_get_fill_dsc(t);
|
||||
if(draw_dsc_fill) {
|
||||
draw_dsc_fill->color = lv_palette_darken(LV_PALETTE_BLUE_GREY, 4);
|
||||
}
|
||||
lv_draw_label_dsc_t * draw_dsc_label = lv_draw_task_get_label_dsc(t);
|
||||
if(draw_dsc_label) {
|
||||
draw_dsc_label->color = lv_color_white();
|
||||
}
|
||||
}
|
||||
else if(row == 1) {
|
||||
lv_draw_border_dsc_t * draw_dsc_border = lv_draw_task_get_border_dsc(t);
|
||||
if(draw_dsc_border) {
|
||||
draw_dsc_border->color = lv_palette_darken(LV_PALETTE_BLUE_GREY, 4);
|
||||
draw_dsc_border->width = 2;
|
||||
draw_dsc_border->side = LV_BORDER_SIDE_BOTTOM;
|
||||
}
|
||||
lv_draw_label_dsc_t * draw_dsc_label = lv_draw_task_get_label_dsc(t);
|
||||
if(draw_dsc_label) {
|
||||
draw_dsc_label->color = lv_palette_darken(LV_PALETTE_BLUE_GREY, 4);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
static void summary_create(void)
|
||||
{
|
||||
lv_obj_clean(lv_screen_active());
|
||||
lv_obj_set_style_pad_hor(lv_screen_active(), 0, 0);
|
||||
lv_obj_t * table = lv_table_create(lv_screen_active());
|
||||
lv_obj_set_width(table, lv_pct(100));
|
||||
lv_obj_set_style_max_height(table, lv_pct(100), 0);
|
||||
lv_obj_add_flag(table, LV_OBJ_FLAG_SEND_DRAW_TASK_EVENTS);
|
||||
lv_obj_set_style_text_color(table, lv_palette_darken(LV_PALETTE_BLUE_GREY, 2), LV_PART_ITEMS);
|
||||
lv_obj_set_style_border_color(table, lv_palette_darken(LV_PALETTE_BLUE_GREY, 2), LV_PART_ITEMS);
|
||||
lv_obj_add_event_cb(table, table_draw_task_event_cb, LV_EVENT_DRAW_TASK_ADDED, NULL);
|
||||
|
||||
lv_table_set_cell_value(table, 0, 0, "Name");
|
||||
lv_table_set_cell_value(table, 0, 1, "Avg. CPU");
|
||||
lv_table_set_cell_value(table, 0, 2, "Avg. FPS");
|
||||
lv_table_set_cell_value(table, 0, 3, "Avg. time (render + flush)");
|
||||
|
||||
/* csv log */
|
||||
LV_LOG("Benchmark Summary (%d.%d.%d %s)\r\n",
|
||||
LVGL_VERSION_MAJOR,
|
||||
LVGL_VERSION_MINOR,
|
||||
LVGL_VERSION_PATCH,
|
||||
LVGL_VERSION_INFO);
|
||||
LV_LOG("Name, Avg. CPU, Avg. FPS, Avg. time, render time, flush time\r\n");
|
||||
|
||||
lv_obj_update_layout(table);
|
||||
int32_t col_w = lv_obj_get_content_width(table) / 4;
|
||||
|
||||
lv_table_set_column_width(table, 0, col_w);
|
||||
lv_table_set_column_width(table, 1, col_w);
|
||||
lv_table_set_column_width(table, 2, col_w);
|
||||
lv_table_set_column_width(table, 3, col_w);
|
||||
|
||||
uint32_t i;
|
||||
int32_t total_avg_fps = 0;
|
||||
int32_t total_avg_cpu = 0;
|
||||
int32_t total_avg_render_time = 0;
|
||||
int32_t total_avg_flush_time = 0;
|
||||
int32_t valid_scene_cnt = 0;
|
||||
for(i = 0; scenes[i].create_cb; i++) {
|
||||
lv_table_set_cell_value(table, i + 2, 0, scenes[i].name);
|
||||
|
||||
/*the first measurement was ignored as it contains data from the previous scene*/
|
||||
if(scenes[i].measurement_cnt <= 1) {
|
||||
lv_table_set_cell_value(table, i + 2, 1, "N/A");
|
||||
lv_table_set_cell_value(table, i + 2, 2, "N/A");
|
||||
lv_table_set_cell_value(table, i + 2, 3, "N/A");
|
||||
}
|
||||
else {
|
||||
int32_t cnt = scenes[i].measurement_cnt - 1;
|
||||
lv_table_set_cell_value_fmt(table, i + 2, 1, "%"LV_PRIu32" %%", scenes[i].cpu_avg_usage / cnt);
|
||||
lv_table_set_cell_value_fmt(table, i + 2, 2, "%"LV_PRIu32" FPS", scenes[i].fps_avg / cnt);
|
||||
|
||||
uint32_t render_time = scenes[i].render_avg_time / cnt;
|
||||
uint32_t flush_time = scenes[i].flush_avg_time / cnt;
|
||||
lv_table_set_cell_value_fmt(table, i + 2, 3, "%"LV_PRIu32" ms (%"LV_PRIu32" + %"LV_PRIu32")",
|
||||
render_time + flush_time, render_time, flush_time);
|
||||
|
||||
/* csv log */
|
||||
LV_LOG("%s, %"LV_PRIu32"%%, %"LV_PRIu32", %"LV_PRIu32", %"LV_PRIu32", %"LV_PRIu32"\r\n",
|
||||
scenes[i].name,
|
||||
scenes[i].cpu_avg_usage / cnt,
|
||||
scenes[i].fps_avg / cnt,
|
||||
render_time + flush_time,
|
||||
render_time,
|
||||
flush_time);
|
||||
|
||||
valid_scene_cnt++;
|
||||
total_avg_cpu += scenes[i].cpu_avg_usage / cnt;
|
||||
total_avg_fps += scenes[i].fps_avg / cnt;
|
||||
total_avg_render_time += scenes[i].render_avg_time / cnt;
|
||||
total_avg_flush_time += scenes[i].flush_avg_time / cnt;
|
||||
}
|
||||
}
|
||||
|
||||
/*Add the average*/
|
||||
lv_table_set_cell_value(table, 1, 0, "All scenes avg.");
|
||||
if(valid_scene_cnt < 1) {
|
||||
lv_table_set_cell_value(table, 1, 1, "N/A");
|
||||
lv_table_set_cell_value(table, 1, 2, "N/A");
|
||||
lv_table_set_cell_value(table, 1, 3, "N/A");
|
||||
}
|
||||
else {
|
||||
lv_table_set_cell_value_fmt(table, 1, 1, "%"LV_PRIu32" %%", total_avg_cpu / valid_scene_cnt);
|
||||
lv_table_set_cell_value_fmt(table, 1, 2, "%"LV_PRIu32" FPS", total_avg_fps / valid_scene_cnt);
|
||||
|
||||
uint32_t render_time = total_avg_render_time / valid_scene_cnt;
|
||||
uint32_t flush_time = total_avg_flush_time / valid_scene_cnt;
|
||||
lv_table_set_cell_value_fmt(table, 1, 3, "%"LV_PRIu32" ms (%"LV_PRIu32" + %"LV_PRIu32")",
|
||||
render_time + flush_time, render_time, flush_time);
|
||||
/* csv log */
|
||||
LV_LOG("All scenes avg.,%"LV_PRIu32"%%, %"LV_PRIu32", %"LV_PRIu32", %"LV_PRIu32", %"LV_PRIu32"\r\n",
|
||||
total_avg_cpu / valid_scene_cnt,
|
||||
total_avg_fps / valid_scene_cnt,
|
||||
render_time + flush_time,
|
||||
render_time,
|
||||
flush_time);
|
||||
}
|
||||
}
|
||||
|
||||
/*----------------
|
||||
* SCENE HELPERS
|
||||
*----------------*/
|
||||
|
||||
static void color_anim_cb(void * var, int32_t v)
|
||||
{
|
||||
LV_UNUSED(v);
|
||||
lv_obj_set_style_bg_color(var, lv_color_hex3(lv_rand(0x00f, 0xff0)), 0);
|
||||
lv_obj_set_style_text_color(var, lv_color_hex3(lv_rand(0x00f, 0xff0)), 0);
|
||||
}
|
||||
|
||||
static void color_anim(lv_obj_t * obj)
|
||||
{
|
||||
lv_anim_t a;
|
||||
lv_anim_init(&a);
|
||||
lv_anim_set_exec_cb(&a, color_anim_cb);
|
||||
lv_anim_set_values(&a, 0, 100);
|
||||
lv_anim_set_duration(&a, 100); /*New value in each ms*/
|
||||
lv_anim_set_var(&a, obj);
|
||||
lv_anim_set_repeat_count(&a, LV_ANIM_REPEAT_INFINITE);
|
||||
lv_anim_start(&a);
|
||||
}
|
||||
|
||||
static void arc_anim_cb(void * var, int32_t v)
|
||||
{
|
||||
lv_arc_set_value(var, v);
|
||||
}
|
||||
|
||||
static void arc_anim(lv_obj_t * obj)
|
||||
{
|
||||
uint32_t t1 = rnd_next(1000, 3000);
|
||||
uint32_t t2 = rnd_next(1000, 3000);
|
||||
lv_anim_t a;
|
||||
lv_anim_init(&a);
|
||||
lv_anim_set_exec_cb(&a, arc_anim_cb);
|
||||
lv_anim_set_values(&a, 0, 100);
|
||||
lv_anim_set_duration(&a, t1);
|
||||
lv_anim_set_playback_duration(&a, t2);
|
||||
lv_anim_set_var(&a, obj);
|
||||
lv_anim_set_repeat_count(&a, LV_ANIM_REPEAT_INFINITE);
|
||||
lv_anim_start(&a);
|
||||
}
|
||||
|
||||
static void scroll_anim_y_cb(void * var, int32_t v)
|
||||
{
|
||||
lv_obj_scroll_to_y(var, v, LV_ANIM_OFF);
|
||||
}
|
||||
|
||||
static void scroll_anim(lv_obj_t * obj, int32_t y_max)
|
||||
{
|
||||
uint32_t t = lv_anim_speed(lv_display_get_dpi(NULL));
|
||||
|
||||
lv_anim_t a;
|
||||
lv_anim_init(&a);
|
||||
lv_anim_set_var(&a, obj);
|
||||
lv_anim_set_exec_cb(&a, scroll_anim_y_cb);
|
||||
lv_anim_set_values(&a, 0, y_max);
|
||||
lv_anim_set_duration(&a, t);
|
||||
lv_anim_set_playback_duration(&a, t);
|
||||
lv_anim_set_repeat_count(&a, LV_ANIM_REPEAT_INFINITE);
|
||||
lv_anim_start(&a);
|
||||
|
||||
}
|
||||
static void shake_anim_y_cb(void * var, int32_t v)
|
||||
{
|
||||
lv_obj_set_style_translate_y(var, v, 0);
|
||||
}
|
||||
|
||||
static void shake_anim(lv_obj_t * obj, int32_t y_max)
|
||||
{
|
||||
uint32_t t1 = rnd_next(300, 3000);
|
||||
uint32_t t2 = rnd_next(300, 3000);
|
||||
|
||||
lv_anim_t a;
|
||||
lv_anim_init(&a);
|
||||
lv_anim_set_var(&a, obj);
|
||||
lv_anim_set_exec_cb(&a, shake_anim_y_cb);
|
||||
lv_anim_set_values(&a, 0, y_max);
|
||||
lv_anim_set_duration(&a, t1);
|
||||
lv_anim_set_playback_duration(&a, t2);
|
||||
lv_anim_set_repeat_count(&a, LV_ANIM_REPEAT_INFINITE);
|
||||
lv_anim_start(&a);
|
||||
}
|
||||
|
||||
static lv_obj_t * card_create(void)
|
||||
{
|
||||
lv_obj_t * panel = lv_obj_create(lv_screen_active());
|
||||
lv_obj_set_size(panel, 270, 120);
|
||||
lv_obj_set_style_pad_all(panel, 8, 0);
|
||||
|
||||
LV_IMAGE_DECLARE(img_benchmark_avatar);
|
||||
lv_obj_t * child = lv_image_create(panel);
|
||||
lv_obj_align(child, LV_ALIGN_LEFT_MID, 0, 0);
|
||||
lv_image_set_src(child, &img_benchmark_avatar);
|
||||
|
||||
child = lv_label_create(panel);
|
||||
lv_label_set_text(child, "John Smith");
|
||||
lv_obj_set_style_text_font(child, &lv_font_montserrat_24, 0);
|
||||
lv_obj_set_pos(child, 100, 0);
|
||||
|
||||
child = lv_label_create(panel);
|
||||
lv_label_set_text(child, "A DIY enthusiast");
|
||||
lv_obj_set_style_text_font(child, &lv_font_montserrat_14, 0);
|
||||
lv_obj_set_pos(child, 100, 30);
|
||||
|
||||
child = lv_button_create(panel);
|
||||
lv_obj_set_pos(child, 100, 50);
|
||||
|
||||
child = lv_label_create(child);
|
||||
lv_label_set_text(child, "Connect");
|
||||
|
||||
return panel;
|
||||
}
|
||||
|
||||
static void rnd_reset(void)
|
||||
{
|
||||
rnd_act = 0;
|
||||
}
|
||||
|
||||
static int32_t rnd_next(int32_t min, int32_t max)
|
||||
{
|
||||
static const uint32_t rnd_map[] = {
|
||||
0xbd13204f, 0x67d8167f, 0x20211c99, 0xb0a7cc05,
|
||||
0x06d5c703, 0xeafb01a7, 0xd0473b5c, 0xc999aaa2,
|
||||
0x86f9d5d9, 0x294bdb29, 0x12a3c207, 0x78914d14,
|
||||
0x10a30006, 0x6134c7db, 0x194443af, 0x142d1099,
|
||||
0x376292d5, 0x20f433c5, 0x074d2a59, 0x4e74c293,
|
||||
0x072a0810, 0xdd0f136d, 0x5cca6dbc, 0x623bfdd8,
|
||||
0xb645eb2f, 0xbe50894a, 0xc9b56717, 0xe0f912c8,
|
||||
0x4f6b5e24, 0xfe44b128, 0xe12d57a8, 0x9b15c9cc,
|
||||
0xab2ae1d3, 0xb4dc5074, 0x67d457c8, 0x8e46b00c,
|
||||
0xa29a1871, 0xcee40332, 0x80f93aa1, 0x85286096,
|
||||
0x09bd6b49, 0x95072088, 0x2093924b, 0x6a27328f,
|
||||
0xa796079b, 0xc3b488bc, 0xe29bcce0, 0x07048a4c,
|
||||
0x7d81bd99, 0x27aacb30, 0x44fc7a0e, 0xa2382241,
|
||||
0x8357a17d, 0x97e9c9cc, 0xad10ff52, 0x9923fc5c,
|
||||
0x8f2c840a, 0x20356ba2, 0x7997a677, 0x9a7f1800,
|
||||
0x35c7562b, 0xd901fe51, 0x8f4e053d, 0xa5b94923,
|
||||
};
|
||||
|
||||
if(min == max) return min;
|
||||
|
||||
if(min > max) {
|
||||
int32_t t = min;
|
||||
min = max;
|
||||
max = t;
|
||||
}
|
||||
|
||||
int32_t d = max - min;
|
||||
int32_t r = (rnd_map[rnd_act] % d) + min;
|
||||
|
||||
rnd_act++;
|
||||
if(rnd_act >= sizeof(rnd_map) / sizeof(rnd_map[0])) rnd_act = 0;
|
||||
|
||||
return r;
|
||||
}
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,63 @@
|
||||
/**
|
||||
* @file lv_demo_benchmark.h
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef LV_DEMO_BENCHMARK_H
|
||||
#define LV_DEMO_BENCHMARK_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*********************
|
||||
* INCLUDES
|
||||
*********************/
|
||||
#include "../lv_demos.h"
|
||||
|
||||
#if LV_USE_DEMO_BENCHMARK
|
||||
|
||||
/*********************
|
||||
* DEFINES
|
||||
*********************/
|
||||
|
||||
/**********************
|
||||
* TYPEDEFS
|
||||
**********************/
|
||||
|
||||
/**********************
|
||||
* GLOBAL PROTOTYPES
|
||||
**********************/
|
||||
|
||||
/**
|
||||
* Run all benchmark scenes.
|
||||
*
|
||||
* On the summary end screen the values shall be interpreted according to the followings:
|
||||
* - CPU usage:
|
||||
* - If `LV_SYSMON_GET_IDLE` is not modified it's measured based on the time spent in
|
||||
* `lv_timer_handler`.
|
||||
* - If an (RT)OS is used `LV_SYSMON_GET_IDLE` can be changed to a custom function
|
||||
* which returns the idle percentage of idle task.
|
||||
*
|
||||
* - FPS: LVGL attempted to render this many times in a second. It's limited based on `LV_DEF_REFR_PERIOD`
|
||||
*
|
||||
* - Render time: LVGL spent this much time with rendering only. It's not aware of task yielding,
|
||||
* but simply the time difference between the start and end of the rendering is measured
|
||||
*
|
||||
* - Flush time: It's the sum of
|
||||
* - the time spent in the `flush_cb` and
|
||||
* - the time spent with waiting for flush ready.
|
||||
*/
|
||||
void lv_demo_benchmark(void);
|
||||
|
||||
/**********************
|
||||
* MACROS
|
||||
**********************/
|
||||
|
||||
#endif /*LV_USE_DEMO_BENCHMARK*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /* extern "C" */
|
||||
#endif
|
||||
|
||||
#endif /*LV_DEMO_BENCHMARK_H*/
|
||||
|
After Width: | Height: | Size: 783 KiB |
|
After Width: | Height: | Size: 281 KiB |
@@ -0,0 +1,38 @@
|
||||
/**
|
||||
* @file lv_demo_flex_layout.h
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef LV_DEMO_FLEX_LAYOUT_H
|
||||
#define LV_DEMO_FLEX_LAYOUT_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*********************
|
||||
* INCLUDES
|
||||
*********************/
|
||||
|
||||
/*********************
|
||||
* DEFINES
|
||||
*********************/
|
||||
|
||||
/**********************
|
||||
* TYPEDEFS
|
||||
**********************/
|
||||
|
||||
/**********************
|
||||
* GLOBAL PROTOTYPES
|
||||
**********************/
|
||||
void lv_demo_flex_layout(void);
|
||||
|
||||
/**********************
|
||||
* MACROS
|
||||
**********************/
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /*extern "C"*/
|
||||
#endif
|
||||
|
||||
#endif /*LV_DEMO_FLEX_LAYOUT_H*/
|
||||
@@ -0,0 +1,168 @@
|
||||
/**
|
||||
* @file lv_demo_flex_layout_ctrl_pad.h
|
||||
*
|
||||
*/
|
||||
|
||||
/*********************
|
||||
* INCLUDES
|
||||
*********************/
|
||||
|
||||
#include "lv_demo_flex_layout_main.h"
|
||||
|
||||
#if LV_USE_DEMO_FLEX_LAYOUT
|
||||
|
||||
/*********************
|
||||
* DEFINES
|
||||
*********************/
|
||||
|
||||
#define SPINBOX_UPDATE_STYLE_VALUE(item) \
|
||||
do { \
|
||||
lv_obj_t* sbox = ui->ctrl_pad.tab.layout.spinbox_##item; \
|
||||
int32_t val = lv_obj_get_style_##item(obj, LV_PART_MAIN); \
|
||||
lv_spinbox_set_value(sbox, val); \
|
||||
} while(0)
|
||||
|
||||
#define SPINBOX_EVENT_ATTACH(item) \
|
||||
lv_obj_add_event_cb(ui->ctrl_pad.tab.layout.spinbox_##item, ctrl_pad_spinbox_event_handler, LV_EVENT_VALUE_CHANGED, ui);
|
||||
|
||||
/**********************
|
||||
* TYPEDEFS
|
||||
**********************/
|
||||
|
||||
/**********************
|
||||
* STATIC PROTOTYPES
|
||||
**********************/
|
||||
|
||||
static void ctrl_pad_spinbox_event_handler(lv_event_t * e);
|
||||
static void ctrl_pad_checkbox_event_handler(lv_event_t * e);
|
||||
static void ctrl_pad_btn_event_attach(view_t * ui);
|
||||
|
||||
/**********************
|
||||
* STATIC VARIABLES
|
||||
**********************/
|
||||
|
||||
/**********************
|
||||
* MACROS
|
||||
**********************/
|
||||
|
||||
/**********************
|
||||
* GLOBAL FUNCTIONS
|
||||
**********************/
|
||||
|
||||
void ctrl_pad_attach(view_t * ui)
|
||||
{
|
||||
ctrl_pad_btn_event_attach(ui);
|
||||
flex_loader_attach(ui);
|
||||
|
||||
SPINBOX_EVENT_ATTACH(width);
|
||||
SPINBOX_EVENT_ATTACH(height);
|
||||
SPINBOX_EVENT_ATTACH(pad_top);
|
||||
SPINBOX_EVENT_ATTACH(pad_bottom);
|
||||
SPINBOX_EVENT_ATTACH(pad_left);
|
||||
SPINBOX_EVENT_ATTACH(pad_right);
|
||||
SPINBOX_EVENT_ATTACH(pad_column);
|
||||
SPINBOX_EVENT_ATTACH(pad_row);
|
||||
SPINBOX_EVENT_ATTACH(flex_grow);
|
||||
|
||||
lv_obj_add_event_cb(
|
||||
ui->ctrl_pad.tab.flex.checkbox_scrl,
|
||||
ctrl_pad_checkbox_event_handler,
|
||||
LV_EVENT_VALUE_CHANGED,
|
||||
ui
|
||||
);
|
||||
}
|
||||
|
||||
/**********************
|
||||
* STATIC FUNCTIONS
|
||||
**********************/
|
||||
|
||||
static void ctrl_pad_btn_remove_event_handler(lv_event_t * e)
|
||||
{
|
||||
view_t * ui = lv_event_get_user_data(e);
|
||||
if(ui->obj_cur) {
|
||||
if(ui->obj_cur == ui->root) {
|
||||
lv_obj_clean(ui->root);
|
||||
}
|
||||
else {
|
||||
lv_obj_delete(ui->obj_cur);
|
||||
ui->obj_cur = NULL;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void ctrl_pad_obj_update(lv_obj_t * obj, view_t * ui)
|
||||
{
|
||||
lv_obj_t * spinbox = ui->ctrl_pad.tab.layout.spinbox_width;
|
||||
int32_t value = lv_obj_get_width(obj);
|
||||
lv_spinbox_set_value(spinbox, value);
|
||||
|
||||
spinbox = ui->ctrl_pad.tab.layout.spinbox_height;
|
||||
value = lv_obj_get_height(obj);
|
||||
lv_spinbox_set_value(spinbox, value);
|
||||
|
||||
SPINBOX_UPDATE_STYLE_VALUE(pad_top);
|
||||
SPINBOX_UPDATE_STYLE_VALUE(pad_bottom);
|
||||
SPINBOX_UPDATE_STYLE_VALUE(pad_left);
|
||||
SPINBOX_UPDATE_STYLE_VALUE(pad_right);
|
||||
SPINBOX_UPDATE_STYLE_VALUE(pad_column);
|
||||
SPINBOX_UPDATE_STYLE_VALUE(pad_row);
|
||||
SPINBOX_UPDATE_STYLE_VALUE(flex_grow);
|
||||
|
||||
lv_obj_t * checkbox = ui->ctrl_pad.tab.flex.checkbox_scrl;
|
||||
if(lv_obj_has_flag(obj, LV_OBJ_FLAG_SCROLLABLE)) {
|
||||
lv_obj_add_state(checkbox, LV_STATE_CHECKED);
|
||||
}
|
||||
else {
|
||||
lv_obj_remove_state(checkbox, LV_STATE_CHECKED);
|
||||
}
|
||||
}
|
||||
|
||||
static void ctrl_pad_spinbox_event_handler(lv_event_t * e)
|
||||
{
|
||||
view_t * ui = lv_event_get_user_data(e);
|
||||
lv_obj_t * spinbox = lv_event_get_target(e);
|
||||
lv_style_prop_t prop = (lv_style_prop_t)(lv_uintptr_t)lv_obj_get_user_data(spinbox);
|
||||
|
||||
lv_style_value_t v = {
|
||||
.num = (int32_t)lv_spinbox_get_value(spinbox)
|
||||
};
|
||||
|
||||
if(ui->obj_cur) {
|
||||
lv_obj_set_local_style_prop(ui->obj_cur, prop, v, LV_PART_MAIN);
|
||||
}
|
||||
}
|
||||
|
||||
static void ctrl_pad_btn_add_event_handler(lv_event_t * e)
|
||||
{
|
||||
view_t * ui = lv_event_get_user_data(e);
|
||||
obj_child_node_create(ui->obj_cur, ui);
|
||||
}
|
||||
|
||||
static void ctrl_pad_checkbox_event_handler(lv_event_t * e)
|
||||
{
|
||||
view_t * ui = lv_event_get_user_data(e);
|
||||
if(ui->obj_cur) {
|
||||
bool checked = lv_obj_has_state(lv_event_get_target(e), LV_STATE_CHECKED);
|
||||
checked ? lv_obj_add_flag(ui->obj_cur, LV_OBJ_FLAG_SCROLLABLE) : lv_obj_remove_flag(ui->obj_cur,
|
||||
LV_OBJ_FLAG_SCROLLABLE);
|
||||
}
|
||||
}
|
||||
|
||||
static void ctrl_pad_btn_event_attach(view_t * ui)
|
||||
{
|
||||
lv_obj_add_event_cb(
|
||||
ui->ctrl_pad.btn.add,
|
||||
ctrl_pad_btn_add_event_handler,
|
||||
LV_EVENT_CLICKED,
|
||||
ui
|
||||
);
|
||||
|
||||
lv_obj_add_event_cb(
|
||||
ui->ctrl_pad.btn.remove,
|
||||
ctrl_pad_btn_remove_event_handler,
|
||||
LV_EVENT_CLICKED,
|
||||
ui
|
||||
);
|
||||
}
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,143 @@
|
||||
/**
|
||||
* @file lv_demo_flex_layout_flex_loader.c
|
||||
*
|
||||
*/
|
||||
|
||||
/*********************
|
||||
* INCLUDES
|
||||
*********************/
|
||||
|
||||
#include "lv_demo_flex_layout_main.h"
|
||||
|
||||
#if LV_USE_DEMO_FLEX_LAYOUT
|
||||
|
||||
/*********************
|
||||
* DEFINES
|
||||
*********************/
|
||||
|
||||
#define FLEX_ALIGN_EVENT_DEF(item) \
|
||||
static void flex_align_##item##_event_handler(lv_event_t* e) \
|
||||
{ \
|
||||
view_t* ui = lv_event_get_user_data(e); \
|
||||
lv_obj_t* ddlist = lv_event_get_target(e); \
|
||||
uint16_t selected = lv_dropdown_get_selected(ddlist); \
|
||||
if (ui->obj_cur) { \
|
||||
lv_obj_set_style_flex_##item##_place(ui->obj_cur, \
|
||||
flex_align_map[selected], 0); \
|
||||
} \
|
||||
}
|
||||
|
||||
#define FLEX_ALIGN_DDLIST_UPDATE_DEF(item) \
|
||||
do { \
|
||||
lv_flex_align_t flex_align = lv_obj_get_style_flex_##item##_place(obj, 0); \
|
||||
for (i = 0; i < ARRAY_SIZE(flex_align_map); i++) { \
|
||||
if (flex_align == flex_align_map[i]) { \
|
||||
lv_dropdown_set_selected(ui->ctrl_pad.tab.align.ddlist_align_##item, \
|
||||
i); \
|
||||
break; \
|
||||
} \
|
||||
} \
|
||||
} while(0)
|
||||
|
||||
#define FLEX_ALIGN_EVENT_ATTACH(item) \
|
||||
do { \
|
||||
lv_obj_add_event_cb(ui->ctrl_pad.tab.align.ddlist_align_##item, \
|
||||
flex_align_##item##_event_handler, \
|
||||
LV_EVENT_VALUE_CHANGED, \
|
||||
ui \
|
||||
); \
|
||||
} while(0)
|
||||
|
||||
/**********************
|
||||
* TYPEDEFS
|
||||
**********************/
|
||||
|
||||
/**********************
|
||||
* STATIC PROTOTYPES
|
||||
**********************/
|
||||
|
||||
static void flex_flow_event_handler(lv_event_t * e);
|
||||
|
||||
/**********************
|
||||
* STATIC VARIABLES
|
||||
**********************/
|
||||
|
||||
static const lv_flex_flow_t flex_flow_map[] = {
|
||||
LV_FLEX_FLOW_ROW,
|
||||
LV_FLEX_FLOW_COLUMN,
|
||||
LV_FLEX_FLOW_ROW_WRAP,
|
||||
LV_FLEX_FLOW_ROW_REVERSE,
|
||||
LV_FLEX_FLOW_ROW_WRAP_REVERSE,
|
||||
LV_FLEX_FLOW_COLUMN_WRAP,
|
||||
LV_FLEX_FLOW_COLUMN_REVERSE,
|
||||
LV_FLEX_FLOW_COLUMN_WRAP_REVERSE
|
||||
};
|
||||
|
||||
static const lv_flex_align_t flex_align_map[] = {
|
||||
LV_FLEX_ALIGN_START,
|
||||
LV_FLEX_ALIGN_END,
|
||||
LV_FLEX_ALIGN_CENTER,
|
||||
LV_FLEX_ALIGN_SPACE_EVENLY,
|
||||
LV_FLEX_ALIGN_SPACE_AROUND,
|
||||
LV_FLEX_ALIGN_SPACE_BETWEEN,
|
||||
};
|
||||
|
||||
/**********************
|
||||
* MACROS
|
||||
**********************/
|
||||
|
||||
FLEX_ALIGN_EVENT_DEF(main)
|
||||
FLEX_ALIGN_EVENT_DEF(cross)
|
||||
FLEX_ALIGN_EVENT_DEF(track)
|
||||
|
||||
/**********************
|
||||
* GLOBAL FUNCTIONS
|
||||
**********************/
|
||||
|
||||
void flex_loader_attach(view_t * ui)
|
||||
{
|
||||
lv_obj_add_event_cb(
|
||||
ui->ctrl_pad.tab.flex.ddlist_flow,
|
||||
flex_flow_event_handler,
|
||||
LV_EVENT_VALUE_CHANGED,
|
||||
ui
|
||||
);
|
||||
|
||||
FLEX_ALIGN_EVENT_ATTACH(main);
|
||||
FLEX_ALIGN_EVENT_ATTACH(cross);
|
||||
FLEX_ALIGN_EVENT_ATTACH(track);
|
||||
}
|
||||
|
||||
void flex_loader_obj_update(lv_obj_t * obj, view_t * ui)
|
||||
{
|
||||
lv_flex_flow_t flex_flow = lv_obj_get_style_flex_flow(obj, 0);
|
||||
uint32_t i;
|
||||
for(i = 0; i < ARRAY_SIZE(flex_flow_map); i++) {
|
||||
if(flex_flow == flex_flow_map[i]) {
|
||||
lv_dropdown_set_selected(ui->ctrl_pad.tab.flex.ddlist_flow, i);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
FLEX_ALIGN_DDLIST_UPDATE_DEF(main);
|
||||
FLEX_ALIGN_DDLIST_UPDATE_DEF(cross);
|
||||
FLEX_ALIGN_DDLIST_UPDATE_DEF(track);
|
||||
}
|
||||
|
||||
/**********************
|
||||
* STATIC FUNCTIONS
|
||||
**********************/
|
||||
|
||||
static void flex_flow_event_handler(lv_event_t * e)
|
||||
{
|
||||
view_t * ui = lv_event_get_user_data(e);
|
||||
lv_obj_t * ddlist = lv_event_get_target(e);
|
||||
uint16_t selected = lv_dropdown_get_selected(ddlist);
|
||||
|
||||
if(ui->obj_cur) {
|
||||
lv_obj_set_flex_flow(ui->obj_cur, flex_flow_map[selected]);
|
||||
lv_obj_scroll_to(ui->obj_cur, 0, 0, LV_ANIM_ON);
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,51 @@
|
||||
/**
|
||||
* @file lv_demo_flex_layout_main.c
|
||||
*
|
||||
*/
|
||||
|
||||
/*********************
|
||||
* INCLUDES
|
||||
*********************/
|
||||
|
||||
#include "lv_demo_flex_layout_main.h"
|
||||
#include "lv_demo_flex_layout.h"
|
||||
|
||||
#if LV_USE_DEMO_FLEX_LAYOUT
|
||||
|
||||
/*********************
|
||||
* DEFINES
|
||||
*********************/
|
||||
|
||||
/**********************
|
||||
* TYPEDEFS
|
||||
**********************/
|
||||
|
||||
/**********************
|
||||
* STATIC PROTOTYPES
|
||||
**********************/
|
||||
|
||||
/**********************
|
||||
* STATIC VARIABLES
|
||||
**********************/
|
||||
|
||||
static view_t view;
|
||||
|
||||
/**********************
|
||||
* MACROS
|
||||
**********************/
|
||||
|
||||
/**********************
|
||||
* GLOBAL FUNCTIONS
|
||||
**********************/
|
||||
|
||||
void lv_demo_flex_layout(void)
|
||||
{
|
||||
view_create(lv_screen_active(), &view);
|
||||
ctrl_pad_attach(&view);
|
||||
}
|
||||
|
||||
/**********************
|
||||
* STATIC FUNCTIONS
|
||||
**********************/
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,106 @@
|
||||
/**
|
||||
* @file lv_demo_flex_layout_main.h
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef LV_DEMO_FLEX_LAYOUT_MAIN_H
|
||||
#define LV_DEMO_FLEX_LAYOUT_MAIN_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*********************
|
||||
* INCLUDES
|
||||
*********************/
|
||||
|
||||
#include "../../lvgl.h"
|
||||
|
||||
/*********************
|
||||
* DEFINES
|
||||
*********************/
|
||||
|
||||
#ifndef ARRAY_SIZE
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof(arr[0]))
|
||||
#endif
|
||||
|
||||
/**********************
|
||||
* TYPEDEFS
|
||||
**********************/
|
||||
typedef struct {
|
||||
lv_obj_t * root;
|
||||
lv_obj_t * obj_cur;
|
||||
lv_style_t obj_def_style;
|
||||
lv_style_t obj_checked_style;
|
||||
|
||||
struct {
|
||||
lv_obj_t * cont;
|
||||
|
||||
struct {
|
||||
lv_obj_t * view;
|
||||
|
||||
struct {
|
||||
lv_obj_t * tab;
|
||||
lv_obj_t * ddlist_flow;
|
||||
lv_obj_t * checkbox_scrl;
|
||||
} flex;
|
||||
|
||||
struct {
|
||||
lv_obj_t * tab;
|
||||
lv_obj_t * ddlist_align_main;
|
||||
lv_obj_t * ddlist_align_cross;
|
||||
lv_obj_t * ddlist_align_track;
|
||||
} align;
|
||||
|
||||
struct {
|
||||
lv_obj_t * tab;
|
||||
lv_obj_t * group_width_and_height;
|
||||
lv_obj_t * spinbox_width;
|
||||
lv_obj_t * spinbox_height;
|
||||
lv_obj_t * group_width_and_height_min;
|
||||
lv_obj_t * spinbox_min_width;
|
||||
lv_obj_t * spinbox_min_height;
|
||||
lv_obj_t * group_width_and_height_max;
|
||||
lv_obj_t * spinbox_max_width;
|
||||
lv_obj_t * spinbox_max_height;
|
||||
lv_obj_t * spinbox_pad_top;
|
||||
lv_obj_t * spinbox_pad_bottom;
|
||||
lv_obj_t * spinbox_pad_left;
|
||||
lv_obj_t * spinbox_pad_right;
|
||||
lv_obj_t * spinbox_pad_column;
|
||||
lv_obj_t * spinbox_pad_row;
|
||||
lv_obj_t * spinbox_flex_grow;
|
||||
} layout;
|
||||
} tab;
|
||||
|
||||
struct {
|
||||
lv_obj_t * cont;
|
||||
lv_obj_t * add;
|
||||
lv_obj_t * remove;
|
||||
} btn;
|
||||
|
||||
} ctrl_pad;
|
||||
} view_t;
|
||||
|
||||
/**********************
|
||||
* GLOBAL PROTOTYPES
|
||||
**********************/
|
||||
|
||||
void view_create(lv_obj_t * par, view_t * ui);
|
||||
void view_ctrl_pad_create(lv_obj_t * par, view_t * ui);
|
||||
lv_obj_t * obj_child_node_create(lv_obj_t * par, view_t * ui);
|
||||
|
||||
void ctrl_pad_attach(view_t * ui);
|
||||
void ctrl_pad_obj_update(lv_obj_t * obj, view_t * ui);
|
||||
void flex_loader_obj_update(lv_obj_t * obj, view_t * ui);
|
||||
void flex_loader_attach(view_t * ui);
|
||||
|
||||
/**********************
|
||||
* MACROS
|
||||
**********************/
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /*extern "C"*/
|
||||
#endif
|
||||
|
||||
#endif /*LV_DEMO_FLEX_LAYOUT_MAIN_H*/
|
||||
@@ -0,0 +1,157 @@
|
||||
/**
|
||||
* @file lv_demo_flex_layout_view.c
|
||||
*
|
||||
*/
|
||||
|
||||
/*********************
|
||||
* INCLUDES
|
||||
*********************/
|
||||
|
||||
#include "lv_demo_flex_layout_main.h"
|
||||
|
||||
#if LV_USE_DEMO_FLEX_LAYOUT
|
||||
|
||||
/*********************
|
||||
* DEFINES
|
||||
*********************/
|
||||
|
||||
/**********************
|
||||
* TYPEDEFS
|
||||
**********************/
|
||||
|
||||
/**********************
|
||||
* STATIC PROTOTYPES
|
||||
**********************/
|
||||
|
||||
static lv_obj_t * btn_create(lv_obj_t * par, const char * str, lv_color_t color);
|
||||
static void obj_child_node_def_style_init(lv_style_t * style);
|
||||
static void obj_child_node_checked_style_init(lv_style_t * style);
|
||||
|
||||
/**********************
|
||||
* STATIC VARIABLES
|
||||
**********************/
|
||||
|
||||
/**********************
|
||||
* MACROS
|
||||
**********************/
|
||||
|
||||
/**********************
|
||||
* GLOBAL FUNCTIONS
|
||||
**********************/
|
||||
|
||||
void view_create(lv_obj_t * par, view_t * ui)
|
||||
{
|
||||
/* layout */
|
||||
lv_obj_set_flex_flow(par, LV_FLEX_FLOW_ROW);
|
||||
lv_obj_set_flex_align(
|
||||
par,
|
||||
LV_FLEX_ALIGN_SPACE_AROUND,
|
||||
LV_FLEX_ALIGN_CENTER,
|
||||
LV_FLEX_ALIGN_SPACE_AROUND
|
||||
);
|
||||
|
||||
/* style */
|
||||
obj_child_node_def_style_init(&ui->obj_def_style);
|
||||
obj_child_node_checked_style_init(&ui->obj_checked_style);
|
||||
|
||||
/* root */
|
||||
ui->root = obj_child_node_create(par, ui);
|
||||
lv_obj_set_size(ui->root, lv_pct(50), lv_pct(80));
|
||||
|
||||
/* mian ctrl_pad */
|
||||
lv_obj_t * obj = lv_obj_create(par);
|
||||
lv_obj_set_size(obj, lv_pct(40), lv_pct(80));
|
||||
lv_obj_set_style_pad_all(obj, 0, 0);
|
||||
lv_obj_set_style_pad_gap(obj, 0, 0);
|
||||
lv_obj_set_style_radius(obj, 10, 0);
|
||||
lv_obj_set_style_clip_corner(obj, true, 0);
|
||||
lv_obj_set_style_border_width(obj, 0, 0);
|
||||
lv_obj_set_style_shadow_color(obj, lv_color_hex3(0xaaa), 0);
|
||||
lv_obj_set_style_shadow_width(obj, 20, 0);
|
||||
lv_obj_set_style_shadow_offset_y(obj, 2, 0);
|
||||
lv_obj_remove_flag(obj, LV_OBJ_FLAG_SCROLLABLE);
|
||||
lv_obj_set_flex_flow(obj, LV_FLEX_FLOW_COLUMN);
|
||||
lv_obj_set_flex_align(
|
||||
obj,
|
||||
LV_FLEX_ALIGN_CENTER,
|
||||
LV_FLEX_ALIGN_CENTER,
|
||||
LV_FLEX_ALIGN_CENTER
|
||||
);
|
||||
ui->ctrl_pad.cont = obj;
|
||||
|
||||
/* tabview */
|
||||
view_ctrl_pad_create(ui->ctrl_pad.cont, ui);
|
||||
|
||||
/* btn_cont */
|
||||
obj = lv_obj_create(ui->ctrl_pad.cont);
|
||||
lv_obj_remove_style_all(obj);
|
||||
lv_obj_set_style_border_width(obj, 2, 0);
|
||||
lv_obj_set_style_border_color(obj, lv_palette_lighten(LV_PALETTE_GREY, 2), 0);
|
||||
lv_obj_set_style_border_side(obj, LV_BORDER_SIDE_TOP, 0);
|
||||
lv_obj_set_size(obj, LV_PCT(100), LV_SIZE_CONTENT);
|
||||
lv_obj_set_style_pad_ver(obj, 16, 0);
|
||||
lv_obj_set_flex_flow(obj, LV_FLEX_FLOW_ROW);
|
||||
lv_obj_set_flex_align(
|
||||
obj,
|
||||
LV_FLEX_ALIGN_SPACE_AROUND,
|
||||
LV_FLEX_ALIGN_CENTER,
|
||||
LV_FLEX_ALIGN_CENTER
|
||||
);
|
||||
ui->ctrl_pad.btn.cont = obj;
|
||||
ui->ctrl_pad.btn.add = btn_create(obj, "Add", lv_palette_main(LV_PALETTE_BLUE_GREY));
|
||||
ui->ctrl_pad.btn.remove = btn_create(obj, "Remove", lv_palette_main(LV_PALETTE_RED));
|
||||
|
||||
lv_obj_send_event(ui->root, LV_EVENT_CLICKED, NULL); /*Make it active by default*/
|
||||
|
||||
/* fade effect */
|
||||
lv_obj_fade_in(ui->root, 600, 0);
|
||||
lv_obj_fade_in(ui->ctrl_pad.cont, 600, 300);
|
||||
}
|
||||
|
||||
/**********************
|
||||
* STATIC FUNCTIONS
|
||||
**********************/
|
||||
|
||||
static lv_obj_t * btn_create(lv_obj_t * par, const char * str, lv_color_t color)
|
||||
{
|
||||
lv_obj_t * btn = lv_button_create(par);
|
||||
lv_obj_set_width(btn, lv_pct(30));
|
||||
lv_obj_set_height(btn, 30);
|
||||
lv_obj_set_style_border_width(btn, 0, LV_PART_MAIN);
|
||||
lv_obj_set_style_bg_color(btn, color, LV_PART_MAIN);
|
||||
lv_obj_set_style_radius(btn, 5, LV_PART_MAIN);
|
||||
|
||||
lv_obj_t * label = lv_label_create(btn);
|
||||
lv_label_set_text(label, str);
|
||||
lv_obj_center(label);
|
||||
|
||||
return btn;
|
||||
}
|
||||
|
||||
static void obj_child_node_def_style_init(lv_style_t * style)
|
||||
{
|
||||
lv_style_init(style);
|
||||
lv_style_set_size(style, LV_PCT(45), LV_PCT(45));
|
||||
lv_style_set_flex_flow(style, LV_FLEX_FLOW_ROW);
|
||||
lv_style_set_layout(style, LV_LAYOUT_FLEX);
|
||||
lv_style_set_radius(style, 0);
|
||||
}
|
||||
|
||||
static void obj_child_node_checked_style_init(lv_style_t * style)
|
||||
{
|
||||
lv_style_init(style);
|
||||
lv_style_set_border_color(style, lv_palette_main(LV_PALETTE_BLUE));
|
||||
lv_style_set_shadow_color(style, lv_palette_main(LV_PALETTE_GREY));
|
||||
lv_style_set_shadow_width(style, 20);
|
||||
|
||||
static lv_style_transition_dsc_t tran;
|
||||
static const lv_style_prop_t prop[] = {
|
||||
LV_STYLE_SHADOW_OPA,
|
||||
LV_STYLE_BORDER_COLOR,
|
||||
LV_STYLE_PROP_INV
|
||||
};
|
||||
lv_style_transition_dsc_init(&tran, prop, lv_anim_path_ease_out, 300, 0, NULL);
|
||||
lv_style_set_transition(style, &tran);
|
||||
}
|
||||
|
||||
#endif
|
||||